001: /*
002: * @(#)JUnitTestResultEUTest.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.junit.v1;
028:
029: //import net.sourceforge.groboutils.testing.junitlog.v1.*;
030: import junit.framework.Test;
031: import junit.framework.TestCase;
032: import junit.framework.TestSuite;
033: import junit.framework.TestResult;
034:
035: import java.io.IOException;
036: import java.lang.reflect.Method;
037:
038: /**
039: * Tests the functionality of the JUnit TestResult class for conformance to
040: * expected behaviors.
041: *
042: * @author Matt Albrecht <a href="mailto:groboclown@users.sourceforge.net">groboclown@users.sourceforge.net</a>
043: * @since March 1, 2002
044: * @version $Date: 2003/02/10 22:52:21 $
045: */
046: public class JUnitTestResultEUTest extends TestCase {
047: //-------------------------------------------------------------------------
048: // Standard JUnit Class-specific declarations
049:
050: private static final Class THIS_CLASS = JUnitTestResultEUTest.class;
051:
052: // private static final IJUnitDocumentor LOG = (new JUnitLog(THIS_CLASS)).getDocumentor();
053:
054: public JUnitTestResultEUTest(String name) {
055: super (name);
056: }
057:
058: //-------------------------------------------------------------------------
059: // Tests
060:
061: public void testSetupErrorCount() {
062: TestResult tr = new TestResult();
063: assertEquals("Should have no errors now.", 0, tr.errorCount());
064: }
065:
066: public void testSetupFailureCount() {
067: TestResult tr = new TestResult();
068: assertEquals("Should have no failures now.", 0, tr
069: .failureCount());
070: }
071:
072: public void testSetupRunCount() {
073: TestResult tr = new TestResult();
074: assertEquals("Should have no tests now.", 0, tr.runCount());
075: }
076:
077: //-------------------------------------------------------------------------
078: // Standard JUnit declarations
079:
080: public static Test suite() {
081: TestSuite suite = new TestSuite(THIS_CLASS);
082:
083: return suite;
084: }
085:
086: public static void main(String[] args) {
087: String[] name = { THIS_CLASS.getName() };
088:
089: // junit.textui.TestRunner.main( name );
090: // junit.swingui.TestRunner.main( name );
091:
092: junit.textui.TestRunner.main(name);
093: }
094:
095: /**
096: *
097: * @exception Exception thrown under any exceptional condition.
098: */
099: protected void setUp() throws Exception {
100: super .setUp();
101:
102: // set ourself up
103: }
104:
105: /**
106: *
107: * @exception Exception thrown under any exceptional condition.
108: */
109: protected void tearDown() throws Exception {
110: // tear ourself down
111:
112: super.tearDown();
113: }
114: }
|