public function ScannerTest::testPosition in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/masterminds/html5/test/HTML5/Parser/ScannerTest.php \Masterminds\HTML5\Tests\Parser\ScannerTest::testPosition()
File
- vendor/
masterminds/ html5/ test/ HTML5/ Parser/ ScannerTest.php, line 33 - Test the Scanner. This requires the InputStream tests are all good.
Class
Namespace
Masterminds\HTML5\Tests\ParserCode
public function testPosition() {
$s = new Scanner(new StringInputStream("abc"));
$this
->assertEquals(0, $s
->position());
$s
->next();
$this
->assertEquals(1, $s
->position());
}