source: trunk/tests/SpellCheckTest.php @ 1

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

Initial import.

File size: 3.4 KB
Line 
1<?php
2/// FIXME: Tests not implemented.
3return;
4
5/**
6 * PHPUnit test case for SpellCheck
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 SpellCheckTest extends PHPUnit_TestCase {
16
17    var $SpellCheck;
18
19    function SpellCheckTest($name)
20    {
21        $this->PHPUnit_TestCase($name);
22    }
23
24    function setUp()
25    {
26        require dirname(__FILE__) . '/_config.inc.php';
27        require_once '../lib/SpellCheck.inc.php';
28        $this->SpellCheck =& new SpellCheck(PARAM);
29    }
30
31    function tearDown()
32    {
33        unset($this->SpellCheck);
34    }
35
36    function test_setparam()
37    {
38        $result = $this->SpellCheck->setparam(PARAM);
39        $expected = EXPECTED_VAL;
40        $this->assertEquals($expected, $result);
41    }
42
43    function test_getparam()
44    {
45        $result = $this->SpellCheck->getparam(PARAM);
46        $expected = EXPECTED_VAL;
47        $this->assertEquals($expected, $result);
48    }
49
50    function test_anyerrors()
51    {
52        $result = $this->SpellCheck->anyerrors(PARAM);
53        $expected = EXPECTED_VAL;
54        $this->assertEquals($expected, $result);
55    }
56
57    function test_reseterrorlist()
58    {
59        $result = $this->SpellCheck->reseterrorlist(PARAM);
60        $expected = EXPECTED_VAL;
61        $this->assertEquals($expected, $result);
62    }
63
64    function test_check()
65    {
66        $result = $this->SpellCheck->check(PARAM);
67        $expected = EXPECTED_VAL;
68        $this->assertEquals($expected, $result);
69    }
70
71    function test_suggest()
72    {
73        $result = $this->SpellCheck->suggest(PARAM);
74        $expected = EXPECTED_VAL;
75        $this->assertEquals($expected, $result);
76    }
77
78    function test_add()
79    {
80        $result = $this->SpellCheck->add(PARAM);
81        $expected = EXPECTED_VAL;
82        $this->assertEquals($expected, $result);
83    }
84
85    function test_save()
86    {
87        $result = $this->SpellCheck->save(PARAM);
88        $expected = EXPECTED_VAL;
89        $this->assertEquals($expected, $result);
90    }
91
92    function test_getstringsuggestions()
93    {
94        $result = $this->SpellCheck->getstringsuggestions(PARAM);
95        $expected = EXPECTED_VAL;
96        $this->assertEquals($expected, $result);
97    }
98
99    function test_checkstring()
100    {
101        $result = $this->SpellCheck->checkstring(PARAM);
102        $expected = EXPECTED_VAL;
103        $this->assertEquals($expected, $result);
104    }
105
106    function test_getstringhighlighted()
107    {
108        $result = $this->SpellCheck->getstringhighlighted(PARAM);
109        $expected = EXPECTED_VAL;
110        $this->assertEquals($expected, $result);
111    }
112
113    function test_printcorrectionform()
114    {
115        $result = $this->SpellCheck->printcorrectionform(PARAM);
116        $expected = EXPECTED_VAL;
117        $this->assertEquals($expected, $result);
118    }
119
120    function test_anyformcorrections()
121    {
122        $result = $this->SpellCheck->anyformcorrections(PARAM);
123        $expected = EXPECTED_VAL;
124        $this->assertEquals($expected, $result);
125    }
126
127    function test_applyformcorrections()
128    {
129        $result = $this->SpellCheck->applyformcorrections(PARAM);
130        $expected = EXPECTED_VAL;
131        $this->assertEquals($expected, $result);
132    }
133
134}
135// Running the test.
136$suite = new PHPUnit_TestSuite('SpellCheckTest');
137$result = PHPUnit::run($suite);
138echo $result->toString();
139?>
Note: See TracBrowser for help on using the repository browser.