KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mmbase > storage > search > implementation > database > BasicSqlHandlerTestTest


1 package org.mmbase.storage.search.implementation.database;
2
3 import junit.framework.*;
4
5 /**
6  * JUnit tests.
7  *
8  * @author Rob van Maris
9  * @version $Revision: 1.3 $
10  */

11 public class BasicSqlHandlerTestTest extends TestCase {
12
13     public BasicSqlHandlerTestTest(java.lang.String JavaDoc testName) {
14         super(testName);
15     }
16
17     public static void main(java.lang.String JavaDoc[] args) {
18         junit.textui.TestRunner.run(suite());
19     }
20
21     /**
22      * Sets up before each test.
23      */

24     public void setUp() throws Exception JavaDoc {}
25
26     /**
27      * Tears down after each test.
28      */

29     public void tearDown() throws Exception JavaDoc {}
30
31     public static Test suite() {
32         TestSuite suite = new TestSuite(BasicSqlHandlerTestTest.class);
33
34         return suite;
35     }
36
37     /** Test of tearDown method, of class org.mmbase.storage.search.implementation.database.BasicSqlHandlerTest. */
38     public void testTearDown() {
39         System.out.println("testTearDown");
40
41         // Add your test code below by replacing the default call to fail.
42
fail("The test case is empty.");
43     }
44
45     /** Test of testToSqlString method, of class org.mmbase.storage.search.implementation.database.BasicSqlHandlerTest. */
46     public void testTestToSqlString() {
47         System.out.println("testTestToSqlString");
48
49         // Add your test code below by replacing the default call to fail.
50
fail("The test case is empty.");
51     }
52
53     /** Test of testToSql method, of class org.mmbase.storage.search.implementation.database.BasicSqlHandlerTest. */
54     public void testTestToSql() {
55         System.out.println("testTestToSql");
56
57         // Add your test code below by replacing the default call to fail.
58
fail("The test case is empty.");
59     }
60
61     /** Test of testAppendQueryBodyToSql method, of class org.mmbase.storage.search.implementation.database.BasicSqlHandlerTest. */
62     public void testTestAppendQueryBodyToSql() {
63         System.out.println("testTestAppendQueryBodyToSql");
64
65         // Add your test code below by replacing the default call to fail.
66
fail("The test case is empty.");
67     }
68
69     /** Test of testAppendConstraintToSql method, of class org.mmbase.storage.search.implementation.database.BasicSqlHandlerTest. */
70     public void testTestAppendConstraintToSql() {
71         System.out.println("testTestAppendConstraintToSql");
72
73         // Add your test code below by replacing the default call to fail.
74
fail("The test case is empty.");
75     }
76
77     /** Test of testGetSupportLevel method, of class org.mmbase.storage.search.implementation.database.BasicSqlHandlerTest. */
78     public void testTestGetSupportLevel() {
79         System.out.println("testTestGetSupportLevel");
80
81         // Add your test code below by replacing the default call to fail.
82
fail("The test case is empty.");
83     }
84
85     /** Test of testGetSupportLevel2 method, of class org.mmbase.storage.search.implementation.database.BasicSqlHandlerTest. */
86     public void testTestGetSupportLevel2() {
87         System.out.println("testTestGetSupportLevel2");
88
89         // Add your test code below by replacing the default call to fail.
90
fail("The test case is empty.");
91     }
92
93     /** Test of testGetAllowedValue method, of class org.mmbase.storage.search.implementation.database.BasicSqlHandlerTest. */
94     public void testTestGetAllowedValue() {
95         System.out.println("testTestGetAllowedValue");
96
97         // Add your test code below by replacing the default call to fail.
98
fail("The test case is empty.");
99     }
100
101     /** Test of testAppendCompositeConstraintToSql method, of class org.mmbase.storage.search.implementation.database.BasicSqlHandlerTest. */
102     public void testTestAppendCompositeConstraintToSql() {
103         System.out.println("testTestAppendCompositeConstraintToSql");
104
105         // Add your test code below by replacing the default call to fail.
106
fail("The test case is empty.");
107     }
108
109 }
110
Popular Tags