01: /*
02: * @(#)JUnitTestInfo.java
03: *
04: * Copyright (C) 2002-2003 Matt Albrecht
05: * groboclown@users.sourceforge.net
06: * http://groboutils.sourceforge.net
07: *
08: * Part of the GroboUtils package at:
09: * http://groboutils.sourceforge.net
10: *
11: * Permission is hereby granted, free of charge, to any person obtaining a
12: * copy of this software and associated documentation files (the "Software"),
13: * to deal in the Software without restriction, including without limitation
14: * the rights to use, copy, modify, merge, publish, distribute, sublicense,
15: * and/or sell copies of the Software, and to permit persons to whom the
16: * Software is furnished to do so, subject to the following conditions:
17: *
18: * The above copyright notice and this permission notice shall be included in
19: * all copies or substantial portions of the Software.
20: *
21: * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22: * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23: * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
24: * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25: * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
26: * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
27: * DEALINGS IN THE SOFTWARE.
28: */
29: package net.sourceforge.groboutils.autodoc.v1.testserver.junit;
30:
31: import net.sourceforge.groboutils.autodoc.v1.testserver.DefaultTestInfo;
32: import junit.framework.Test;
33: import junit.framework.TestSuite;
34: import junit.framework.TestCase;
35:
36: /**
37: * An implementation of TestInfo which is specific to JUnit.
38: *
39: * @author Matt Albrecht <a href="mailto:groboclown@users.sourceforge.net">groboclown@users.sourceforge.net</a>
40: * @since March 17, 2002
41: * @version $Date: 2003/02/10 22:52:14 $
42: */
43: public class JUnitTestInfo extends DefaultTestInfo {
44:
45: /**
46: * Constructor which defines a test-info object based on a Test instance.
47: *
48: * @param testObj the test for the TestInfo to describe.
49: */
50: public JUnitTestInfo(Object testObj) {
51: if (testObj == null) {
52: throw new IllegalArgumentException("no null arguments");
53: }
54: setSuite(getSuiteName(testObj));
55: setMethod(getMethodName(testObj));
56: }
57:
58: /**
59: * Discovers the name of the suite for the passed-in test object.
60: *
61: * @param testObj the test under inspection.
62: * @return the name of the suite.
63: */
64: protected String getSuiteName(Object testObj) {
65: String name;
66: if (testObj instanceof TestSuite) {
67: name = ((TestSuite) testObj).getName();
68: } else if (testObj instanceof Class) {
69: name = ((Class) testObj).getName();
70: } else {
71: name = testObj.getClass().getName();
72: }
73: return name;
74: }
75:
76: /**
77: * Discovers the name of the method for the passed-in test object.
78: *
79: * @param testObj the test under inspection.
80: * @return the name of the test's test method.
81: */
82: protected String getMethodName(Object testObj) {
83: String name;
84: if (testObj instanceof TestCase) {
85: name = ((TestCase) testObj).getName();
86: } else {
87: name = "run";
88: }
89: return name;
90: }
91: }
|