diff options
Diffstat (limited to 'lib/querypath/test/Tests/QueryPath/TestCase.php')
-rw-r--r-- | lib/querypath/test/Tests/QueryPath/TestCase.php | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/lib/querypath/test/Tests/QueryPath/TestCase.php b/lib/querypath/test/Tests/QueryPath/TestCase.php new file mode 100644 index 0000000..7e212b0 --- /dev/null +++ b/lib/querypath/test/Tests/QueryPath/TestCase.php @@ -0,0 +1,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? + } +} |