Example #1
0
 /**
  * run() should make characters visible if parameter is not zero
  */
 public function testRun_doesNotShow_ifParameterIsZero()
 {
     $style = new \Jstewmc\Rtf\Style();
     $element = new V();
     $element->setParameter('0');
     $element->setStyle($style);
     $element->run();
     $this->assertFalse($element->getStyle()->getCharacter()->getIsVisible());
     return;
 }