001: /*
002: * @(#)CacheDirChannelLoggerIUTest.java
003: *
004: * Copyright (C) 2004 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.logger;
028:
029: import java.io.File;
030:
031: import junit.framework.Test;
032: import junit.framework.TestSuite;
033: import net.sourceforge.groboutils.autodoc.v1.AutoDoc;
034: import net.sourceforge.groboutils.codecoverage.v2.ant.AntTestA;
035:
036: /**
037: * Tests the CacheDirChannelLogger class.
038: *
039: * @author Matt Albrecht <a href="mailto:groboclown@users.sourceforge.net">groboclown@users.sourceforge.net</a>
040: * @version $Date: 2004/04/21 02:11:13 $
041: * @since March 22, 2004
042: */
043: public class CacheDirChannelLoggerIUTest extends AntTestA {
044: //-------------------------------------------------------------------------
045: // Standard JUnit Class-specific declarations
046:
047: private static final Class THIS_CLASS = CacheDirChannelLoggerIUTest.class;
048: private static final AutoDoc DOC = new AutoDoc(THIS_CLASS);
049:
050: public CacheDirChannelLoggerIUTest(String name) {
051: super (name);
052: }
053:
054: //-------------------------------------------------------------------------
055: // Tests
056:
057: //...........................
058: // Tests that pass
059:
060: // test bug 902884
061: public void testBug1() {
062: DOC.getIT().testsIssue(902884);
063: try {
064: executeTarget("bug-1");
065: } finally {
066: System.out.println(getFullLog());
067: }
068: }
069:
070: //...........................
071: // Tests that fail
072:
073: //-------------------------------------------------------------------------
074: // Helpers
075:
076: protected File getCoverageDir() {
077: return new File(getProjectDir(), "instrument" + File.separator
078: + "coverage");
079: }
080:
081: //-------------------------------------------------------------------------
082: // Standard JUnit declarations
083:
084: public static Test suite() {
085: TestSuite suite = new TestSuite(THIS_CLASS);
086:
087: return suite;
088: }
089:
090: public static void main(String[] args) {
091: String[] name = { THIS_CLASS.getName() };
092:
093: // junit.textui.TestRunner.main( name );
094: // junit.swingui.TestRunner.main( name );
095:
096: junit.textui.TestRunner.main(name);
097: }
098:
099: /**
100: *
101: * @exception Exception thrown under any exceptional condition.
102: */
103: protected void setUp() throws Exception {
104: super .setUp();
105:
106: // set ourself up
107: configureProject("cachelogger.xml");
108: }
109:
110: /**
111: *
112: * @exception Exception thrown under any exceptional condition.
113: */
114: protected void tearDown() throws Exception {
115: // tear ourself down
116: executeTarget("test-teardown");
117:
118: super.tearDown();
119: }
120: }
|