コード例 #1
0
ファイル: TextTest.php プロジェクト: puwenhan/Text
 public function testDetab()
 {
     $text = new Text("12\t56");
     $this->assertEquals("12  56", $text->detab());
 }