summaryrefslogtreecommitdiff
path: root/lib/querypath/test/Tests/QueryPath/TestCase.php
blob: 7e212b0f7a06aa371c8372aba214ad67b1d40615 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
/**
 * @file
 *
 * The master test case.
 */

namespace QueryPath\Tests;

//require_once 'PHPUnit/Autoload.php';
//require_once __DIR__ . '/../../../src/qp.php';
require __DIR__ . '/../../../vendor/autoload.php';

class TestCase extends \PHPUnit_Framework_TestCase {
  const DATA_FILE =  'test/data.xml';
  public static function setUpBeforeClass(){
  }

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