ParagonIE\EasyDB\Tests\UpdateTest::testUpdateArgChangesThrowsException PHP Method

testUpdateArgChangesThrowsException() public method

    public function testUpdateArgChangesThrowsException(callable $cb)
    {
        $db = $this->EasyDBExpectedFromCallable($cb);
        $this->expectException(InvalidArgumentException::class);
        $db->update('irrelevant_but_valid_tablename', [[1]], ['TRUE' => true]);
    }