1 /*2 * JBoss, the OpenSource J2EE webOS3 *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, since14 * 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 TestRunner19 {20 protected TestResult createTestResult()21 {22 return new MultipleTestResult();23 }24 25 }