Exemple #1
0
 /**
  * format() should return string if format is html
  */
 public function testFormat_returnsString_ifFormatIsText()
 {
     $word = new Tab();
     $expected = "\t";
     $actual = $word->format('text');
     $this->assertEquals($expected, $actual);
     return;
 }