ParagonIE\EasyDB\Tests\EscapeValueSetTest::testEscapeValueSetThrowsException PHP Method

testEscapeValueSetThrowsException() public method

public testEscapeValueSetThrowsException ( callable $cb, array $escapeThis, string $escapeThatAsType )
$cb callable
$escapeThis array
$escapeThatAsType string
    public function testEscapeValueSetThrowsException(callable $cb, array $escapeThis, string $escapeThatAsType)
    {
        $db = $this->EasyDBExpectedFromCallable($cb);
        $this->expectException(InvalidArgumentException::class);
        $db->escapeValueSet($escapeThis, $escapeThatAsType);
    }