01: /*
02: * @(#)IMetaDataWriterUTestI.java
03: *
04: * Copyright (C) 2002-2003 Matt Albrecht
05: * groboclown@users.sourceforge.net
06: * http://groboutils.sourceforge.net
07: *
08: * Permission is hereby granted, free of charge, to any person obtaining a
09: * copy of this software and associated documentation files (the "Software"),
10: * to deal in the Software without restriction, including without limitation
11: * the rights to use, copy, modify, merge, publish, distribute, sublicense,
12: * and/or sell copies of the Software, and to permit persons to whom the
13: * Software is furnished to do so, subject to the following conditions:
14: *
15: * The above copyright notice and this permission notice shall be included in
16: * all copies or substantial portions of the Software.
17: *
18: * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19: * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20: * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21: * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22: * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
23: * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
24: * DEALINGS IN THE SOFTWARE.
25: */
26:
27: package net.sourceforge.groboutils.codecoverage.v2.datastore;
28:
29: import net.sourceforge.groboutils.autodoc.v1.AutoDoc;
30: import net.sourceforge.groboutils.junit.v1.iftc.ImplFactory;
31: import net.sourceforge.groboutils.junit.v1.iftc.InterfaceTestCase;
32: import net.sourceforge.groboutils.junit.v1.iftc.InterfaceTestSuite;
33:
34: /**
35: * Tests the IMetaDataWriter interface.
36: *
37: * @author Matt Albrecht <a href="mailto:groboclown@users.sourceforge.net">groboclown@users.sourceforge.net</a>
38: * @version $Date: 2004/04/15 05:48:28 $
39: * @since December 28, 2002
40: */
41: public class IMetaDataWriterUTestI extends InterfaceTestCase {
42: //-------------------------------------------------------------------------
43: // Standard JUnit Class-specific declarations
44:
45: private static final Class THIS_CLASS = IMetaDataWriterUTestI.class;
46: private static final AutoDoc DOC = new AutoDoc(THIS_CLASS);
47:
48: public IMetaDataWriterUTestI(String name, ImplFactory f) {
49: super (name, IMetaDataWriter.class, f);
50: }
51:
52: public IMetaDataWriter createIMetaDataWriter() {
53: return (IMetaDataWriter) createImplObject();
54: }
55:
56: //-------------------------------------------------------------------------
57: // Tests
58:
59: public void testNeedMore() {
60: }
61:
62: //-------------------------------------------------------------------------
63: // Standard JUnit declarations
64:
65: public static InterfaceTestSuite suite() {
66: InterfaceTestSuite suite = new InterfaceTestSuite(THIS_CLASS);
67:
68: return suite;
69: }
70:
71: public static void main(String[] args) {
72: String[] name = { THIS_CLASS.getName() };
73:
74: // junit.textui.TestRunner.main( name );
75: // junit.swingui.TestRunner.main( name );
76:
77: junit.textui.TestRunner.main(name);
78: }
79:
80: /**
81: *
82: * @exception Exception thrown under any exceptional condition.
83: */
84: protected void setUp() throws Exception {
85: super .setUp();
86:
87: // set ourself up
88: }
89:
90: /**
91: *
92: * @exception Exception thrown under any exceptional condition.
93: */
94: protected void tearDown() throws Exception {
95: // tear ourself down
96:
97: super.tearDown();
98: }
99: }
|