You are here

public function MatchObjectTest::testSetPropertiesWorksForExistingProperties in Bibliography Module 7.2

File

lib/msrc-authortool/tests/MatchObjectTest.php, line 17

Class

MatchObjectTest

Code

public function testSetPropertiesWorksForExistingProperties() {
  $obj = new TestMatchObject();
  $obj->name = "Bob";
  $this
    ->assertEquals("Bob", $obj->name);
}