コード例 #1
0
ファイル: StrTest.php プロジェクト: objective-php/primitives
 /**
  * @dataProvider dataProviderForTestMatches
  */
 public function testMatches($subject, $pattern, $result)
 {
     $string = new Str($subject);
     $this->assertEquals($result, $string->matches($pattern));
 }