예제 #1
0
파일: TextTest.php 프로젝트: puwenhan/Text
 public function testIndexOf()
 {
     $text = new Text("0123456789");
     $this->assertEquals(3, $text->indexOf('3'));
 }