summaryrefslogtreecommitdiff
path: root/test/HTML5/TestDataHarness.php
blob: 0b903216b0e550957ef8ef31bdfa82600cd22cc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php

SimpleTest::ignore('HTML5_TestDataHarness');
abstract class HTML5_TestDataHarness extends HTML5_DataHarness
{
    protected $data;
    public function __construct() {
        parent::__construct();
        $this->data = new HTML5_TestData($this->filename);
    }
    public function getDescription($test) {
        return $test['data'];
    }
    public function getDataTests() {
        return $this->data->tests;
    }
}