예제 #1
0
파일: TextTest.php 프로젝트: puwenhan/Text
 public function testDetab()
 {
     $text = new Text("12\t56");
     $this->assertEquals("12  56", $text->detab());
 }