public function MatchObjectTest::testSetPropertiesFailsForNonexistentProperties in Bibliography Module 7.2
File
- lib/
msrc-authortool/ tests/ MatchObjectTest.php, line 27
Class
Code
public function testSetPropertiesFailsForNonexistentProperties() {
$this
->setExpectedException("\\InvalidArgumentException");
$obj = new TestMatchObject();
$obj->doesNotExist = 'abc';
}