/**
  * @test
  * @dataProvider startsWithExamples
  */
 public function startsWithWorks($string, $search, $position, $expected)
 {
     $helper = new StringHelper();
     $result = $helper->startsWith($string, $search, $position);
     $this->assertSame($expected, $result);
 }