You are here

public function ReaderTest::testToEnd in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/css-selector/Tests/Parser/ReaderTest.php \Symfony\Component\CssSelector\Tests\Parser\ReaderTest::testToEnd()

File

vendor/symfony/css-selector/Tests/Parser/ReaderTest.php, line 88

Class

ReaderTest

Namespace

Symfony\Component\CssSelector\Tests\Parser

Code

public function testToEnd() {
  $reader = new Reader('hello');
  $reader
    ->moveToEnd();
  $this
    ->assertTrue($reader
    ->isEOF());
}