001: /*
002: * @(#)DirMetaDataWriterUTest.java
003: *
004: * Copyright (C) 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 java.io.File;
030: import java.io.IOException;
031:
032: import junit.framework.Test;
033: import junit.framework.TestCase;
034: import net.sourceforge.groboutils.autodoc.v1.AutoDoc;
035: import net.sourceforge.groboutils.junit.v1.iftc.CxFactory;
036: import net.sourceforge.groboutils.junit.v1.iftc.InterfaceTestSuite;
037:
038: /**
039: * Tests the DirMetaDataWriter class.
040: *
041: * @author Matt Albrecht <a href="mailto:groboclown@users.sourceforge.net">groboclown@users.sourceforge.net</a>
042: * @version $Date: 2004/04/15 05:48:28 $
043: * @since January 22, 2003
044: */
045: public class DirMetaDataWriterUTest extends TestCase {
046: //-------------------------------------------------------------------------
047: // Standard JUnit Class-specific declarations
048:
049: private static final Class THIS_CLASS = DirMetaDataWriterUTest.class;
050: private static final AutoDoc DOC = new AutoDoc(THIS_CLASS);
051:
052: public DirMetaDataWriterUTest(String name) {
053: super (name);
054: }
055:
056: //-------------------------------------------------------------------------
057: // Tests
058:
059: public void testNeedMore() {
060: }
061:
062: //-------------------------------------------------------------------------
063: // Helpers
064:
065: //-------------------------------------------------------------------------
066: // Standard JUnit declarations
067:
068: public static Test suite() {
069: InterfaceTestSuite suite = IMetaDataWriterUTestI.suite();
070: suite.addTestSuite(THIS_CLASS);
071: suite.addFactory(new CxFactory("A") {
072: public Object createImplObject() throws IOException {
073: return new DirMetaDataWriter(new File("."));
074: }
075: });
076:
077: return suite;
078: }
079:
080: public static void main(String[] args) {
081: String[] name = { THIS_CLASS.getName() };
082:
083: // junit.textui.TestRunner.main( name );
084: // junit.swingui.TestRunner.main( name );
085:
086: junit.textui.TestRunner.main(name);
087: }
088:
089: /**
090: *
091: * @exception Exception thrown under any exceptional condition.
092: */
093: protected void setUp() throws Exception {
094: super .setUp();
095:
096: // set ourself up
097: }
098:
099: /**
100: *
101: * @exception Exception thrown under any exceptional condition.
102: */
103: protected void tearDown() throws Exception {
104: // tear ourself down
105:
106: super.tearDown();
107: }
108: }
|