コード例 #1
0
ファイル: TextTest.php プロジェクト: puwenhan/Text
 public function testRtrim()
 {
     $text = new Text("\n foo\t\r\n");
     $this->assertEquals("\n foo", $text->rtrim());
     $text = new Text('/foo/');
     $this->assertEquals('/foo', $text->rtrim('/'));
 }