summaryrefslogtreecommitdiff
path: root/test/SimpleTest/HTML5/DataHarness.php
diff options
context:
space:
mode:
Diffstat (limited to 'test/SimpleTest/HTML5/DataHarness.php')
-rw-r--r--test/SimpleTest/HTML5/DataHarness.php48
1 files changed, 0 insertions, 48 deletions
diff --git a/test/SimpleTest/HTML5/DataHarness.php b/test/SimpleTest/HTML5/DataHarness.php
deleted file mode 100644
index 844b1fc..0000000
--- a/test/SimpleTest/HTML5/DataHarness.php
+++ /dev/null
@@ -1,48 +0,0 @@
-<?php
-
-/**
- * Modified test-case supertype for running tests that are not
- * test method based, but based off of test data that resides in
- * files.
- */
-SimpleTest::ignore('HTML5_DataHarness');
-abstract class HTML5_DataHarness extends UnitTestCase
-{
- /**
- * Filled in by HTML5_TestData::generateTestCases()
- */
- protected $filename;
- private $tests;
- /**
- * Invoked by the runner, it is the function responsible for executing
- * the test and delivering results.
- * @param $test Some easily usable representation of the test
- */
- abstract public function invoke($test);
- /**
- * Returns a list of tests that can be executed. The list members will
- * be passed to invoke(). Return an iterator if you don't want to load
- * all test into memory
- */
- abstract public function getDataTests();
- /**
- * Returns a description of the test
- */
- abstract public function getDescription($test);
- public function getTests() {
- $this->tests = $this->getDataTests();
- // 1-indexed, to be consistent with Python
- $ret = array();
- for ($i = 1; $i <= count($this->tests); $i++) {
- $ret[] = "test_$i";
- }
- return $ret;
- }
- /**
- * Emulates our test functions
- */
- public function __call($name, $args) {
- list($test, $i) = explode("_", $name);
- $this->invoke($this->tests[$i-1]);
- }
-}