예제 #1
0
파일: StyleTest.php 프로젝트: jstewmc/rtf
 /**
  * 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;
 }