001: /*
002: * @(#)DirClassMetaDataWriterUTest.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.IOException;
030:
031: import junit.framework.Test;
032: import junit.framework.TestCase;
033: import net.sourceforge.groboutils.autodoc.v1.AutoDoc;
034: import net.sourceforge.groboutils.codecoverage.v2.CCCreatorUtil;
035: import net.sourceforge.groboutils.codecoverage.v2.IAnalysisModule;
036: import net.sourceforge.groboutils.junit.v1.iftc.CxFactory;
037: import net.sourceforge.groboutils.junit.v1.iftc.InterfaceTestSuite;
038:
039: /**
040: * Tests the DirClassMetaDataWriter class.
041: *
042: * @author Matt Albrecht <a href="mailto:groboclown@users.sourceforge.net">groboclown@users.sourceforge.net</a>
043: * @version $Date: 2004/04/15 05:48:28 $
044: * @since January 22, 2003
045: */
046: public class DirClassMetaDataWriterUTest extends TestCase {
047: //-------------------------------------------------------------------------
048: // Standard JUnit Class-specific declarations
049:
050: private static final Class THIS_CLASS = DirClassMetaDataWriterUTest.class;
051: private static final AutoDoc DOC = new AutoDoc(THIS_CLASS);
052:
053: public DirClassMetaDataWriterUTest(String name) {
054: super (name);
055: }
056:
057: //-------------------------------------------------------------------------
058: // Tests
059:
060: public void testConstructor1() throws Exception {
061: try {
062: new DirClassMetaDataWriter(null, null);
063: } catch (IllegalArgumentException ex) {
064: // test exception
065: }
066: }
067:
068: public void testConstructor2() throws Exception {
069: try {
070: new DirClassMetaDataWriter(createIAnalysisModule("a", "u",
071: "text/plain"), null);
072: } catch (IllegalArgumentException ex) {
073: // test exception
074: }
075: }
076:
077: public void testConstructor3() throws Exception {
078: try {
079: new DirClassMetaDataWriter(null, createDirMetaDataIO());
080: } catch (IllegalArgumentException ex) {
081: // test exception
082: }
083: }
084:
085: //-------------------------------------------------------------------------
086: // Helpers
087:
088: protected static IAnalysisModule createIAnalysisModule(String name,
089: String unit, String mime) {
090: return CCCreatorUtil.createIAnalysisModule(name, unit, mime);
091: }
092:
093: protected static DirMetaDataIO createDirMetaDataIO()
094: throws IOException {
095: DirMetaDataIO dmd = new DirMetaDataIO(CCCreatorUtil
096: .createNewDirectory());
097: return dmd;
098: }
099:
100: //-------------------------------------------------------------------------
101: // Standard JUnit declarations
102:
103: public static Test suite() {
104: InterfaceTestSuite suite = IClassMetaDataWriterUTestI.suite();
105: suite.addTestSuite(THIS_CLASS);
106: suite.addFactory(new CxFactory("A") {
107: public Object createImplObject() throws IOException {
108: DirMetaDataIO dmd = createDirMetaDataIO();
109: dmd
110: .putAnalysisModuleSet(IClassMetaDataWriterUTestI.AMS);
111: return new DirClassMetaDataWriter(
112: IClassMetaDataWriterUTestI.AMS
113: .getAnalysisModuleAt((short) 0), dmd);
114: }
115: });
116:
117: return suite;
118: }
119:
120: public static void main(String[] args) {
121: String[] name = { THIS_CLASS.getName() };
122:
123: // junit.textui.TestRunner.main( name );
124: // junit.swingui.TestRunner.main( name );
125:
126: junit.textui.TestRunner.main(name);
127: }
128:
129: /**
130: *
131: * @exception Exception thrown under any exceptional condition.
132: */
133: protected void setUp() throws Exception {
134: super .setUp();
135:
136: // set ourself up
137: }
138:
139: /**
140: *
141: * @exception Exception thrown under any exceptional condition.
142: */
143: protected void tearDown() throws Exception {
144: // tear ourself down
145:
146: super.tearDown();
147: }
148: }
|