ParagonIE\EasyDB\Tests\InsertManyTest::testInsertManyArgTableThrowsException PHP Method

testInsertManyArgTableThrowsException() public method

    public function testInsertManyArgTableThrowsException(callable $cb)
    {
        $db = $this->EasyDBExpectedFromCallable($cb);
        $this->expectException(InvalidArgumentException::class);
        $db->insertMany('', [['foo' => 1], ['foo' => 2]]);
    }