001: /*
002: * @(#)IMetaDataReaderUTestI.java
003: *
004: * Copyright (C) 2002-2003 Matt Albrecht
005: * groboclown@users.sourceforge.net
006: * http://groboutils.sourceforge.net
007: *
008: * Permission is hereby granted, free of charge, to any person obtaining a
009: * copy of this software and associated documentation files (the "Software"),
010: * to deal in the Software without restriction, including without limitation
011: * the rights to use, copy, modify, merge, publish, distribute, sublicense,
012: * and/or sell copies of the Software, and to permit persons to whom the
013: * Software is furnished to do so, subject to the following conditions:
014: *
015: * The above copyright notice and this permission notice shall be included in
016: * all copies or substantial portions of the Software.
017: *
018: * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
019: * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
020: * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
021: * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
022: * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
023: * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
024: * DEALINGS IN THE SOFTWARE.
025: */
026:
027: package net.sourceforge.groboutils.codecoverage.v2.datastore;
028:
029: import net.sourceforge.groboutils.autodoc.v1.AutoDoc;
030: import net.sourceforge.groboutils.junit.v1.iftc.ImplFactory;
031: import net.sourceforge.groboutils.junit.v1.iftc.InterfaceTestCase;
032: import net.sourceforge.groboutils.junit.v1.iftc.InterfaceTestSuite;
033:
034: /**
035: * Tests the IMetaDataReader interface.
036: *
037: * @author Matt Albrecht <a href="mailto:groboclown@users.sourceforge.net">groboclown@users.sourceforge.net</a>
038: * @version $Date: 2004/04/15 05:48:28 $
039: * @since December 28, 2002
040: */
041: public class IMetaDataReaderUTestI extends InterfaceTestCase {
042: //-------------------------------------------------------------------------
043: // Standard JUnit Class-specific declarations
044:
045: private static final Class THIS_CLASS = IMetaDataReaderUTestI.class;
046: private static final AutoDoc DOC = new AutoDoc(THIS_CLASS);
047:
048: public IMetaDataReaderUTestI(String name, ImplFactory f) {
049: super (name, IMetaDataReader.class, f);
050: }
051:
052: public IMetaDataReader createIMetaDataReader() {
053: return (IMetaDataReader) createImplObject();
054: }
055:
056: //-------------------------------------------------------------------------
057: // Tests
058:
059: public void testNeedMore() {
060: IMetaDataReader mdr = createIMetaDataReader();
061: }
062:
063: //-------------------------------------------------------------------------
064: // Standard JUnit declarations
065:
066: public static InterfaceTestSuite suite() {
067: InterfaceTestSuite suite = new InterfaceTestSuite(THIS_CLASS);
068:
069: return suite;
070: }
071:
072: public static void main(String[] args) {
073: String[] name = { THIS_CLASS.getName() };
074:
075: // junit.textui.TestRunner.main( name );
076: // junit.swingui.TestRunner.main( name );
077:
078: junit.textui.TestRunner.main(name);
079: }
080:
081: /**
082: *
083: * @exception Exception thrown under any exceptional condition.
084: */
085: protected void setUp() throws Exception {
086: super .setUp();
087:
088: // set ourself up
089: }
090:
091: /**
092: *
093: * @exception Exception thrown under any exceptional condition.
094: */
095: protected void tearDown() throws Exception {
096: // tear ourself down
097:
098: super.tearDown();
099: }
100: }
|