KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > blandware > atleap > persistence > core > LookupDAOTest


1 /*
2  * Copyright 2004 Blandware (http://www.blandware.com)
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */

16 package com.blandware.atleap.persistence.core;
17
18 /**
19  * <p>This class is used to test current implementation of LookupDAO interface</p>
20  * <p><a HREF="LookupDAOTest.java.htm"><i>View Source</i></a></p>
21  *
22  * @author Matt Raible <a HREF="mailto:matt@raibledesigns.com">&lt;matt@raibledesigns.com&gt;</a>
23  * @version $Revision: 1.3 $ $Date: 2005/11/06 13:00:55 $
24  * @see com.blandware.atleap.persistence.core.LookupDAO
25  */

26 public class LookupDAOTest extends BaseDAOTestCase {
27     private LookupDAO lookupDAO = null;
28
29     protected void setUp() throws Exception JavaDoc {
30         lookupDAO = (LookupDAO) ctx.getBean("lookupDAO");
31     }
32
33     protected void tearDown() {
34         lookupDAO = null;
35     }
36
37     /**
38      * Silly method - just does nothing, but JUnit will not fail on this class
39      */

40     public void testNothing() {
41     }
42
43     public static void main(String JavaDoc[] args) {
44         junit.textui.TestRunner.run(LookupDAOTest.class);
45     }
46 }
47
Popular Tags