Beispiel #1
0
 /**
  * @dataProvider dataGetChars
  */
 public function testGetChars($srcBegin, $srcEnd, $dst, $dstBegin, $expected)
 {
     $dstReturn = $this->string->getCharsFromTo($srcBegin, $srcEnd, $dst, $dstBegin);
     $this->assertEquals($expected, (string) $dst);
     $this->assertEquals($expected, (string) $dstReturn);
 }