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