예제 #1
0
파일: BaseTest.php 프로젝트: nottavi/Faker
 public function testNumerifyReturnsStringWithQuestionMarksReplacedByLetters()
 {
     $this->assertRegExp('/foo[a-z]Ba[a-z]r/', BaseProvider::lexify('foo?Ba?r'));
 }
예제 #2
0
파일: BaseTest.php 프로젝트: ruudk/Faker
 public static function lexify($string)
 {
     return parent::lexify($string);
 }