You are here

public function ContributorObjectTest::testSetPropertiesFailsForNonexistentProperties in Bibliography Module 7.2

File

lib/msrc-authortool/tests/ContributorObjectTest.php, line 63

Class

ContributorObjectTest

Code

public function testSetPropertiesFailsForNonexistentProperties() {
  $this
    ->setExpectedException("\\InvalidArgumentException");
  $obj = new \Analyzer\ContributorObject();
  $obj->doesNotExist = 'abc';
}