1 |
richard.p.wagner |
734 |
<?php |
2 |
|
|
|
3 |
|
|
include('../config.inc'); |
4 |
|
|
|
5 |
|
|
require_once(SIMPLE_TEST . 'unit_tester.php'); |
6 |
|
|
require_once(SIMPLE_TEST . 'reporter.php'); |
7 |
|
|
|
8 |
|
|
require_once(BACKEND.'vospace.php'); |
9 |
|
|
require_once('debug_funcs.php'); |
10 |
|
|
|
11 |
|
|
class TestVOSpace extends UnitTestCase { |
12 |
|
|
|
13 |
|
|
function setUp() { |
14 |
|
|
$this->vospace = new VOSpace(); |
15 |
|
|
} |
16 |
|
|
|
17 |
richard.p.wagner |
735 |
function testExistence() { |
18 |
richard.p.wagner |
734 |
$this->assertNotNull($this->vospace); |
19 |
|
|
} |
20 |
|
|
} |
21 |
|
|
|
22 |
|
|
|
23 |
|
|
$test = &new TestVOSpace(); |
24 |
|
|
$test->run(new HtmlReporter()); |
25 |
|
|
|
26 |
|
|
?> |