1 package org.apache.turbine; 2 3 18 19 import junit.framework.Test; 20 import junit.framework.TestSuite; 21 22 import org.apache.turbine.test.BaseTurbineTest; 23 24 30 31 public class TestTurbine 32 extends BaseTurbineTest 33 { 34 public TestTurbine(String name) 35 throws Exception  36 { 37 super(name, "conf/test/TurbineResources.properties"); 38 } 39 40 public static Test suite() 41 { 42 return new TestSuite(TestTurbine.class); 43 } 44 45 public void testTurbine() 46 { 47 } 48 } 49 50 | Popular Tags |