summaryrefslogtreecommitdiff
path: root/test/HTML5/TestCase.php
blob: 7e984987cb837cd28c25d623a755f49fb9b001a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
namespace HTML5\Tests;

class TestCase extends \PHPUnit_Framework_TestCase {
  const DOC_OPEN = '<!DOCTYPE html><html><head><title>test</title></head><body>';
  const DOC_CLOSE = '</body></html>';

  public function testFoo() {
    // Placeholder. Why is PHPUnit emitting warnings about no tests?
  }

  public function getInstance(array $options = array())
  {
      return new \HTML5($options);
  }

  protected function wrap($fragment) {
    return self::DOC_OPEN . $fragment . self::DOC_CLOSE;
  }

}