summaryrefslogtreecommitdiff
path: root/test/HTML5/Parser/ScannerTest.php
blob: 5d85197fe3201c4768e40863698db6aa14ea5e03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
namespace HTML5\Parser;
require __DIR__ . '/../TestCase.php';

class ScannerTest extends TestCase {
  public function testNext() {
  }
  public function testCurrent() {
  }
  public function testPosition() {
  }
  public function testPeek() {
  }
  public function testUnconsume() {
  }
  public function testGetHex() {
  }
  public function testGetNumeric() {
  }
  public function testAsciiAlpha() {
  }
  public function testGetAsciiAlphaNum() {
  }
}