Make base class abstract to avoid no tests found errors when running all tests for...
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Wed, 28 Oct 2009 11:13:41 +0000 (11:13 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Wed, 28 Oct 2009 11:13:41 +0000 (11:13 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@830502 13f79535-47bb-0310-9956-ffa450edef68

test/org/apache/catalina/startup/TestTomcatBase.java

index 142881a..360c69f 100644 (file)
@@ -31,7 +31,7 @@ import junit.framework.TestCase;
  * Base test case that provides a Tomcat instance for each test - mainly so we
  * don't have to keep writing the cleanup code.
  */
-public class TestTomcatBase extends TestCase {
+public abstract class TestTomcatBase extends TestCase {
     private Tomcat tomcat;
     private File tempDir;
     private static int port = 8001;