public function FileInputStreamTest::testNext in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/masterminds/html5/test/HTML5/Parser/FileInputStreamTest.php \Masterminds\HTML5\Tests\Parser\FileInputStreamTest::testNext()
File
- vendor/
masterminds/ html5/ test/ HTML5/ Parser/ FileInputStreamTest.php, line 16
Class
Namespace
Masterminds\HTML5\Tests\ParserCode
public function testNext() {
$s = new FileInputStream(__DIR__ . '/FileInputStreamTest.html');
$s
->next();
$this
->assertEquals('!', $s
->current());
$s
->next();
$this
->assertEquals('d', $s
->current());
}