KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ditchnet > test > DitchBaseTestCase


1 /*
2  * The contents of this file are subject to the GNU Lesser General Public
3  * License Version 2.1 (the "License"); you may not use this file
4  * except in compliance with the License. You may obtain a copy of
5  * the License at http://www.gnu.org/copyleft/lesser.html
6  *
7  * Software distributed under the License is distributed on an "AS
8  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
9  * implied. See the License for the specific language governing
10  * rights and limitations under the License.
11  *
12  * Developer:
13  * Todd Ditchendorf, todd@ditchnet.org
14  *
15  */

16
17 package org.ditchnet.test;
18
19 import junit.framework.TestCase;
20
21
22 public abstract class DitchBaseTestCase extends TestCase {
23
24     public DitchBaseTestCase(String JavaDoc name) {
25         super(name);
26     }
27     
28     protected void dump(String JavaDoc message) {
29         System.out.println(message);
30     }
31     
32     protected void dump (String JavaDoc message0,String JavaDoc message1) {
33         System.out.println(message0);
34         System.out.println(message1);
35     }
36     
37 }
38
Popular Tags