KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > dtf > MultipleTestRunner


1 /*
2  * JBoss, the OpenSource J2EE webOS
3  *
4  * Distributable under LGPL license.
5  * See terms of license at gnu.org.
6  */

7 package org.jboss.dtf;
8
9 import junit.framework.TestResult;
10 import junit.textui.TestRunner;
11
12 /**
13  * Used to allow running of MultipleTestCase class, since
14  * can not be done from default JUnit TestRunner.
15  *
16  * @author <a HREF="mailto:telrod@e2technologies.net">Tom Elrod</a>
17  */

18 public class MultipleTestRunner extends TestRunner
19 {
20    protected TestResult createTestResult()
21    {
22       return new MultipleTestResult();
23    }
24
25 }
Popular Tags