/**
  * @test
  * @dataProvider pregMatchExamples
  */
 public function pregMatchWorks($string, $pattern, $expected)
 {
     $helper = new StringHelper();
     $result = $helper->pregMatch($string, $pattern);
     $this->assertSame($expected, $result);
 }