summaryrefslogtreecommitdiff
path: root/test/HTML5/TestCase.php
diff options
context:
space:
mode:
Diffstat (limited to 'test/HTML5/TestCase.php')
-rw-r--r--test/HTML5/TestCase.php12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/HTML5/TestCase.php b/test/HTML5/TestCase.php
new file mode 100644
index 0000000..b5c18e0
--- /dev/null
+++ b/test/HTML5/TestCase.php
@@ -0,0 +1,12 @@
+<?php
+namespace HTML5\Tests;
+
+require_once 'PHPUnit/Autoload.php';
+require_once __DIR__ . '/../../vendor/autoload.php';
+
+class TestCase extends \PHPUnit_Framework_TestCase {
+
+ public function testFoo() {
+ // Placeholder. Why is PHPUnit emitting warnings about no tests?
+ }
+}