summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Butcher <[email protected]>2013-04-10 09:17:29 -0500
committerMatt Butcher <[email protected]>2013-04-10 09:17:29 -0500
commitbac5a6454a23aa3edc7701328196393eec643bf7 (patch)
treec506251cad1e59ec7d8ac87d13d949efa388f1d3
parent7c2267d3dccb77ac58a34ddbfa582d0009edf5ec (diff)
Stubs for scanner test.
-rw-r--r--test/HTML5/Parser/ScannerTest.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/HTML5/Parser/ScannerTest.php b/test/HTML5/Parser/ScannerTest.php
index fff5502..5d85197 100644
--- a/test/HTML5/Parser/ScannerTest.php
+++ b/test/HTML5/Parser/ScannerTest.php
@@ -3,4 +3,22 @@ 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() {
+ }
}