source: trunk/tests/NavTest.php @ 1

Last change on this file since 1 was 1, checked in by scdev, 19 years ago

Initial import.

File size: 2.7 KB
Line 
1<?php
2/// FIXME: Tests not implemented.
3return;
4
5/**
6 * PHPUnit test case for Nav
7 *
8 * The method skeletons below need to be filled in with
9 * real data so that the tests will run correctly. Replace
10 * all EXPECTED_VAL and PARAM strings with real data.
11 *
12 * Created with PHPUnit_Skeleton on 2005-08-09
13 */
14require_once 'PHPUnit.php';
15class NavTest extends PHPUnit_TestCase {
16
17    var $Nav;
18
19    function NavTest($name)
20    {
21        $this->PHPUnit_TestCase($name);
22    }
23
24    function setUp()
25    {
26        require dirname(__FILE__) . '/_config.inc.php';
27        require_once '../lib/Nav.inc.php';
28        $this->Nav =& new Nav(PARAM);
29    }
30
31    function tearDown()
32    {
33        unset($this->Nav);
34    }
35
36    function test_addpage()
37    {
38        $result = $this->Nav->addpage(PARAM);
39        $expected = EXPECTED_VAL;
40        $this->assertEquals($expected, $result);
41    }
42
43    function test_setfeature()
44    {
45        $result = $this->Nav->setfeature(PARAM);
46        $expected = EXPECTED_VAL;
47        $this->assertEquals($expected, $result);
48    }
49
50    function test_clearpath()
51    {
52        $result = $this->Nav->clearpath(PARAM);
53        $expected = EXPECTED_VAL;
54        $this->assertEquals($expected, $result);
55    }
56
57    function test_getfeature()
58    {
59        $result = $this->Nav->getfeature(PARAM);
60        $expected = EXPECTED_VAL;
61        $this->assertEquals($expected, $result);
62    }
63
64    function test_gettitle()
65    {
66        $result = $this->Nav->gettitle(PARAM);
67        $expected = EXPECTED_VAL;
68        $this->assertEquals($expected, $result);
69    }
70
71    function test_printtitle()
72    {
73        $result = $this->Nav->printtitle(PARAM);
74        $expected = EXPECTED_VAL;
75        $this->assertEquals($expected, $result);
76    }
77
78    function test_getpath()
79    {
80        $result = $this->Nav->getpath(PARAM);
81        $expected = EXPECTED_VAL;
82        $this->assertEquals($expected, $result);
83    }
84
85    function test_printpath()
86    {
87        $result = $this->Nav->printpath(PARAM);
88        $expected = EXPECTED_VAL;
89        $this->assertEquals($expected, $result);
90    }
91
92    function test_getbreadcrumbs()
93    {
94        $result = $this->Nav->getbreadcrumbs(PARAM);
95        $expected = EXPECTED_VAL;
96        $this->assertEquals($expected, $result);
97    }
98
99    function test_printbreadcrumbs()
100    {
101        $result = $this->Nav->printbreadcrumbs(PARAM);
102        $expected = EXPECTED_VAL;
103        $this->assertEquals($expected, $result);
104    }
105
106    function test_currentpage()
107    {
108        $result = $this->Nav->currentpage(PARAM);
109        $expected = EXPECTED_VAL;
110        $this->assertEquals($expected, $result);
111    }
112
113}
114// Running the test.
115$suite = new PHPUnit_TestSuite('NavTest');
116$result = PHPUnit::run($suite);
117echo $result->toString();
118?>
Note: See TracBrowser for help on using the repository browser.