You are here

public function ScannerTest::testGetHex in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/masterminds/html5/test/HTML5/Parser/ScannerTest.php \Masterminds\HTML5\Tests\Parser\ScannerTest::testGetHex()

File

vendor/masterminds/html5/test/HTML5/Parser/ScannerTest.php, line 88
Test the Scanner. This requires the InputStream tests are all good.

Class

ScannerTest

Namespace

Masterminds\HTML5\Tests\Parser

Code

public function testGetHex() {
  $s = new Scanner(new StringInputStream("ab13ck45DE*"));
  $this
    ->assertEquals('ab13c', $s
    ->getHex());
  $s
    ->next();
  $this
    ->assertEquals('45DE', $s
    ->getHex());
}