Example #1
0
 public function testDoesNotStartWithAtOffset()
 {
     $input = new Input('asdf', 1);
     $this->assertFalse($input->startsWith('_sdf'));
     $this->assertFalse($input->startsWith('sdf_'));
     $this->assertFalse($input->startsWith('df_'));
 }