public function StringInputStreamTest::testNext in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/masterminds/html5/test/HTML5/Parser/StringInputStreamTest.php \Masterminds\HTML5\Tests\Parser\StringInputStreamTest::testNext()
File
- vendor/
masterminds/ html5/ test/ HTML5/ Parser/ StringInputStreamTest.php, line 19
Class
Namespace
Masterminds\HTML5\Tests\ParserCode
public function testNext() {
$s = new StringInputStream("abc");
$s
->next();
$this
->assertEquals('b', $s
->current());
$s
->next();
$this
->assertEquals('c', $s
->current());
}