/** * @covers Intacct\Functions\Common\Delete::setKeys * @expectedException InvalidArgumentException * @expectedExceptionMessage Keys count must be greater than zero */ public function testNoKeys() { $keys = []; $delete = new Delete('unittest'); $delete->setObjectName('CLASS'); $delete->setKeys($keys); }