Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?php
2
// Call Net_LDAP2_RootDSETest::main() if this source file is executed directly.
3
if (!defined("PHPUnit_MAIN_METHOD")) {
4
    define("PHPUnit_MAIN_METHOD", "Net_LDAP2_RootDSETest::main");
5
}
6
 
7
require_once "PHPUnit/Framework/TestCase.php";
8
require_once "PHPUnit/Framework/TestSuite.php";
9
 
10
require_once 'Net/LDAP2/RootDSE.php';
11
 
12
/**
13
 * Test class for Net_LDAP2_RootDSE.
14
 * Generated by PHPUnit_Util_Skeleton on 2007-10-09 at 10:47:05.
15
 */
16
class Net_LDAP2_RootDSETest extends PHPUnit_Framework_TestCase {
17
    /**
18
     * Runs the test methods of this class.
19
     *
20
     * @access public
21
     * @static
22
     */
23
    public static function main() {
24
        require_once "PHPUnit/TextUI/TestRunner.php";
25
 
26
        $suite  = new PHPUnit_Framework_TestSuite("Net_LDAP2_RootDSETest");
27
        $result = PHPUnit_TextUI_TestRunner::run($suite);
28
    }
29
 
30
    /**
31
     * Sets up the fixture, for example, open a network connection.
32
     * This method is called before a test is executed.
33
     *
34
     * @access protected
35
     */
36
    protected function setUp() {
37
        $this->markTestSkipped('Test not implemented yet.');
38
    }
39
 
40
    /**
41
     * Tears down the fixture, for example, close a network connection.
42
     * This method is called after a test is executed.
43
     *
44
     * @access protected
45
     */
46
    protected function tearDown() {
47
    }
48
 
49
    /**
50
     * @todo Implement testGetValue().
51
     */
52
    public function testGetValue() {
53
        // Remove the following line when you implement this test.
54
        $this->markTestIncomplete(
55
          "This test has not been implemented yet."
56
        );
57
    }
58
 
59
    /**
60
     * @todo Implement testGet_value().
61
     */
62
    public function testGet_value() {
63
        // Remove the following line when you implement this test.
64
        $this->markTestIncomplete(
65
          "This test has not been implemented yet."
66
        );
67
    }
68
 
69
    /**
70
     * @todo Implement testSupportedExtension().
71
     */
72
    public function testSupportedExtension() {
73
        // Remove the following line when you implement this test.
74
        $this->markTestIncomplete(
75
          "This test has not been implemented yet."
76
        );
77
    }
78
 
79
    /**
80
     * @todo Implement testSupported_extension().
81
     */
82
    public function testSupported_extension() {
83
        // Remove the following line when you implement this test.
84
        $this->markTestIncomplete(
85
          "This test has not been implemented yet."
86
        );
87
    }
88
 
89
    /**
90
     * @todo Implement testSupportedVersion().
91
     */
92
    public function testSupportedVersion() {
93
        // Remove the following line when you implement this test.
94
        $this->markTestIncomplete(
95
          "This test has not been implemented yet."
96
        );
97
    }
98
 
99
    /**
100
     * @todo Implement testSupported_version().
101
     */
102
    public function testSupported_version() {
103
        // Remove the following line when you implement this test.
104
        $this->markTestIncomplete(
105
          "This test has not been implemented yet."
106
        );
107
    }
108
 
109
    /**
110
     * @todo Implement testSupportedControl().
111
     */
112
    public function testSupportedControl() {
113
        // Remove the following line when you implement this test.
114
        $this->markTestIncomplete(
115
          "This test has not been implemented yet."
116
        );
117
    }
118
 
119
    /**
120
     * @todo Implement testSupported_control().
121
     */
122
    public function testSupported_control() {
123
        // Remove the following line when you implement this test.
124
        $this->markTestIncomplete(
125
          "This test has not been implemented yet."
126
        );
127
    }
128
 
129
    /**
130
     * @todo Implement testSupportedSASLMechanism().
131
     */
132
    public function testSupportedSASLMechanism() {
133
        // Remove the following line when you implement this test.
134
        $this->markTestIncomplete(
135
          "This test has not been implemented yet."
136
        );
137
    }
138
 
139
    /**
140
     * @todo Implement testSupported_sasl_mechanism().
141
     */
142
    public function testSupported_sasl_mechanism() {
143
        // Remove the following line when you implement this test.
144
        $this->markTestIncomplete(
145
          "This test has not been implemented yet."
146
        );
147
    }
148
 
149
    /**
150
     * @todo Implement test_checkAttr().
151
     */
152
    public function test_checkAttr() {
153
        // Remove the following line when you implement this test.
154
        $this->markTestIncomplete(
155
          "This test has not been implemented yet."
156
        );
157
    }
158
}
159
 
160
// Call Net_LDAP2_RootDSETest::main() if this source file is executed directly.
161
if (PHPUnit_MAIN_METHOD == "Net_LDAP2_RootDSETest::main") {
162
    Net_LDAP2_RootDSETest::main();
163
}
164
?>