public function ReaderTest::testGetSubstring in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/css-selector/Tests/Parser/ReaderTest.php \Symfony\Component\CssSelector\Tests\Parser\ReaderTest::testGetSubstring()
File
- vendor/
symfony/ css-selector/ Tests/ Parser/ ReaderTest.php, line 45
Class
Namespace
Symfony\Component\CssSelector\Tests\ParserCode
public function testGetSubstring() {
$reader = new Reader('hello');
$this
->assertEquals('he', $reader
->getSubstring(2));
$this
->assertEquals('el', $reader
->getSubstring(2, 1));
$this
->assignPosition($reader, 2);
$this
->assertEquals('ll', $reader
->getSubstring(2));
$this
->assertEquals('lo', $reader
->getSubstring(2, 1));
}