source: trunk/tests/PrefsTest.php @ 1

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

Initial import.

File size: 2.2 KB
Line 
1<?php
2/// FIXME: Tests not implemented.
3return;
4
5/**
6 * PHPUnit test case for Prefs
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 PrefsTest extends PHPUnit_TestCase {
16
17    var $Prefs;
18
19    function PrefsTest($name)
20    {
21        $this->PHPUnit_TestCase($name);
22    }
23
24    function setUp()
25    {
26        require dirname(__FILE__) . '/_config.inc.php';
27        require_once '../lib/Prefs.inc.php';
28        $this->Prefs =& new Prefs(PARAM);
29    }
30
31    function tearDown()
32    {
33        unset($this->Prefs);
34    }
35
36    function test_setdefault()
37    {
38        $result = $this->Prefs->setdefault(PARAM);
39        $expected = EXPECTED_VAL;
40        $this->assertEquals($expected, $result);
41    }
42
43    function test_setvalue()
44    {
45        $result = $this->Prefs->setvalue(PARAM);
46        $expected = EXPECTED_VAL;
47        $this->assertEquals($expected, $result);
48    }
49
50    function test_getvalue()
51    {
52        $result = $this->Prefs->getvalue(PARAM);
53        $expected = EXPECTED_VAL;
54        $this->assertEquals($expected, $result);
55    }
56
57    function test_exists()
58    {
59        $result = $this->Prefs->exists(PARAM);
60        $expected = EXPECTED_VAL;
61        $this->assertEquals($expected, $result);
62    }
63
64    function test_clearvalue()
65    {
66        $result = $this->Prefs->clearvalue(PARAM);
67        $expected = EXPECTED_VAL;
68        $this->assertEquals($expected, $result);
69    }
70
71    function test_retrieve()
72    {
73        $result = $this->Prefs->retrieve(PARAM);
74        $expected = EXPECTED_VAL;
75        $this->assertEquals($expected, $result);
76    }
77
78    function test_store()
79    {
80        $result = $this->Prefs->store(PARAM);
81        $expected = EXPECTED_VAL;
82        $this->assertEquals($expected, $result);
83    }
84
85    function test_cleanup()
86    {
87        $result = $this->Prefs->cleanup(PARAM);
88        $expected = EXPECTED_VAL;
89        $this->assertEquals($expected, $result);
90    }
91
92}
93// Running the test.
94$suite = new PHPUnit_TestSuite('PrefsTest');
95$result = PHPUnit::run($suite);
96echo $result->toString();
97?>
Note: See TracBrowser for help on using the repository browser.