示例#1
0
 /**
  * format() should return string if format is html
  */
 public function testFormat_returnsString_ifFormatIsText()
 {
     $symbol = new Underscore();
     $expected = '-';
     $actual = $symbol->format('text');
     $this->assertEquals($expected, $actual);
     return;
 }