Esempio n. 1
0
 /**
  * getCharacter() and setCharacter() should get and set the character, respectively
  */
 public function testGetSetCharacter()
 {
     $character = new State\Character();
     $style = new Style();
     $style->setCharacter($character);
     $expected = $character;
     $actual = $style->getCharacter();
     $this->assertSame($expected, $actual);
     return;
 }