/**
  * @test
  * @dataProvider substringExamples
  */
 public function substringWorks($string, $start, $end, $expected)
 {
     $helper = new StringHelper();
     $result = $helper->substring($string, $start, $end);
     $this->assertSame($expected, $result);
 }