001: /*
002: * @(#)IAnalysisMetaDataUTestI.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;
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 IAnalysisMetaData 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:27 $
039: * @since December 28, 2002
040: */
041: public class IAnalysisMetaDataUTestI extends InterfaceTestCase {
042: //-------------------------------------------------------------------------
043: // Standard JUnit Class-specific declarations
044:
045: private static final Class THIS_CLASS = IAnalysisMetaDataUTestI.class;
046: private static final AutoDoc DOC = new AutoDoc(THIS_CLASS);
047:
048: public IAnalysisMetaDataUTestI(String name, ImplFactory f) {
049: super (name, IAnalysisMetaData.class, f);
050: }
051:
052: public IAnalysisMetaData createIAnalysisMetaData() {
053: return (IAnalysisMetaData) createImplObject();
054: }
055:
056: //-------------------------------------------------------------------------
057: // Tests
058:
059: public void testGetCoveredFormattedText1() {
060: IAnalysisMetaData amd = createIAnalysisMetaData();
061: String s = amd.getCoveredFormattedText();
062: assertNotNull("Null covered text.", s);
063: assertTrue("Empty covered text.", s.length() > 0);
064: }
065:
066: public void testGetNotCoveredFormattedText1() {
067: IAnalysisMetaData amd = createIAnalysisMetaData();
068: String s = amd.getNotCoveredFormattedText();
069: assertNotNull("Null not-covered text.", s);
070: assertTrue("Empty not-covered text.", s.length() > 0);
071: }
072:
073: public void getInstructionWeight() {
074: IAnalysisMetaData amd = createIAnalysisMetaData();
075: byte w = amd.getInstructionWeight();
076:
077: // any value is acceptable.
078: }
079:
080: //-------------------------------------------------------------------------
081: // Standard JUnit declarations
082:
083: public static InterfaceTestSuite suite() {
084: InterfaceTestSuite suite = new InterfaceTestSuite(THIS_CLASS);
085:
086: return suite;
087: }
088:
089: public static void main(String[] args) {
090: String[] name = { THIS_CLASS.getName() };
091:
092: // junit.textui.TestRunner.main( name );
093: // junit.swingui.TestRunner.main( name );
094:
095: junit.textui.TestRunner.main(name);
096: }
097:
098: /**
099: *
100: * @exception Exception thrown under any exceptional condition.
101: */
102: protected void setUp() throws Exception {
103: super .setUp();
104:
105: // set ourself up
106: }
107:
108: /**
109: *
110: * @exception Exception thrown under any exceptional condition.
111: */
112: protected void tearDown() throws Exception {
113: // tear ourself down
114:
115: super.tearDown();
116: }
117: }
|