summaryrefslogtreecommitdiff
path: root/test/HTML5
diff options
context:
space:
mode:
authorMatt Farina <[email protected]>2013-04-10 10:33:37 -0400
committerMatt Farina <[email protected]>2013-04-10 10:33:37 -0400
commit703bfebdb9ac177f108e2e86af92b2f59cdc8ab8 (patch)
tree19ba6c302094a7f553f03238f21cdf4b58bf8fd4 /test/HTML5
parent1c8f501203b60ef5aa3cb4fac84d0fe6e2d657e1 (diff)
parentbac5a6454a23aa3edc7701328196393eec643bf7 (diff)
Merge branch 'master' of github.com:technosophos/HTML5-PHP
Diffstat (limited to 'test/HTML5')
-rw-r--r--test/HTML5/Parser/ScannerTest.php24
-rw-r--r--test/HTML5/Parser/TokenizerTest.php6
2 files changed, 30 insertions, 0 deletions
diff --git a/test/HTML5/Parser/ScannerTest.php b/test/HTML5/Parser/ScannerTest.php
new file mode 100644
index 0000000..5d85197
--- /dev/null
+++ b/test/HTML5/Parser/ScannerTest.php
@@ -0,0 +1,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() {
+ }
+}
diff --git a/test/HTML5/Parser/TokenizerTest.php b/test/HTML5/Parser/TokenizerTest.php
new file mode 100644
index 0000000..9b0f929
--- /dev/null
+++ b/test/HTML5/Parser/TokenizerTest.php
@@ -0,0 +1,6 @@
+<?php
+namespace HTML5\Parser;
+require __DIR__ . '/../TestCase.php';
+
+class TokenizerTest extends TestCase {
+}