source: tags/2.1.5/tests/PrefsTest.php @ 377

Last change on this file since 377 was 377, checked in by quinn, 14 years ago

Releasing trunk as stable version 2.1.5

File size: 3.1 KB
Line 
1<?php
2/// FIXME: Tests not implemented.
3return;
4
5/**
6 * The Strangecode Codebase - a general application development framework for PHP
7 * For details visit the project site: <http://trac.strangecode.com/codebase/>
8 * Copyright 2001-2010 Strangecode, LLC
9 *
10 * This file is part of The Strangecode Codebase.
11 *
12 * The Strangecode Codebase is free software: you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License as published by the
14 * Free Software Foundation, either version 3 of the License, or (at your option)
15 * any later version.
16 *
17 * The Strangecode Codebase is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
20 * details.
21 *
22 * You should have received a copy of the GNU General Public License along with
23 * The Strangecode Codebase. If not, see <http://www.gnu.org/licenses/>.
24 */
25
26/**
27 * PHPUnit test case for codebase/lib/Prefs.inc.php
28 *
29 * The method skeletons below need to be filled in with
30 * real data so that the tests will run correctly. Replace
31 * all EXPECTED_VAL and PARAM strings with real data.
32 *
33 * Created with PHPUnit_Skeleton on 2005-08-09
34 */
35require_once 'PHPUnit.php';
36class PrefsTest extends PHPUnit_TestCase {
37
38    var $Prefs;
39
40    function PrefsTest($name)
41    {
42        $this->PHPUnit_TestCase($name);
43    }
44
45    function setUp()
46    {
47        require dirname(__FILE__) . '/_config.inc.php';
48        require_once '../lib/Prefs.inc.php';
49        $this->Prefs =& new Prefs(PARAM);
50    }
51
52    function tearDown()
53    {
54        unset($this->Prefs);
55    }
56
57    function test_setdefault()
58    {
59        $result = $this->Prefs->setdefault(PARAM);
60        $expected = EXPECTED_VAL;
61        $this->assertEquals($expected, $result);
62    }
63
64    function test_setvalue()
65    {
66        $result = $this->Prefs->setvalue(PARAM);
67        $expected = EXPECTED_VAL;
68        $this->assertEquals($expected, $result);
69    }
70
71    function test_getue()
72    {
73        $result = $this->Prefs->getue(PARAM);
74        $expected = EXPECTED_VAL;
75        $this->assertEquals($expected, $result);
76    }
77
78    function test_exists()
79    {
80        $result = $this->Prefs->exists(PARAM);
81        $expected = EXPECTED_VAL;
82        $this->assertEquals($expected, $result);
83    }
84
85    function test_clearvalue()
86    {
87        $result = $this->Prefs->clearvalue(PARAM);
88        $expected = EXPECTED_VAL;
89        $this->assertEquals($expected, $result);
90    }
91
92    function test_retrieve()
93    {
94        $result = $this->Prefs->retrieve(PARAM);
95        $expected = EXPECTED_VAL;
96        $this->assertEquals($expected, $result);
97    }
98
99    function test_store()
100    {
101        $result = $this->Prefs->store(PARAM);
102        $expected = EXPECTED_VAL;
103        $this->assertEquals($expected, $result);
104    }
105
106    function test_cleanup()
107    {
108        $result = $this->Prefs->cleanup(PARAM);
109        $expected = EXPECTED_VAL;
110        $this->assertEquals($expected, $result);
111    }
112
113}
114// Running the test.
115$suite = new PHPUnit_TestSuite('PrefsTest');
116$result = PHPUnit::run($suite);
117echo $result->toString();
118?>
Note: See TracBrowser for help on using the repository browser.