dlr 00/10/25 16:16:52
Modified: src/java/org/apache/velocity/test BaseTestCase.java
Log:
Now does nothing. May possibly go away.
Revision Changes Path
1.3 +1 -33
jakarta-velocity/src/java/org/apache/velocity/test/BaseTestCase.java
Index: BaseTestCase.java
===================================================================
RCS file:
/home/cvs/jakarta-velocity/src/java/org/apache/velocity/test/BaseTestCase.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- BaseTestCase.java 2000/10/22 22:08:31 1.2
+++ BaseTestCase.java 2000/10/25 23:16:51 1.3
@@ -63,40 +63,8 @@
* case implementations are used to automatate testing via JUnit.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Daniel Rall</a>
- * @version $Id: BaseTestCase.java,v 1.2 2000/10/22 22:08:31 dlr Exp $
+ * @version $Id: BaseTestCase.java,v 1.3 2000/10/25 23:16:51 dlr Exp $
*/
public abstract class BaseTestCase extends TestCase
{
- /**
- * The properties file name of the application.
- */
- private static final String PROPS_FILE_NAME = "velocity.properties";
-
- /**
- * Creates a new instance.
- */
- public BaseTestCase (String name)
- {
- super(name);
-
- try
- {
- Runtime.init(PROPS_FILE_NAME);
- }
- catch (Exception e)
- {
- fail(e.getMessage());
- }
- }
-
- /**
- * Get the containing <code>TestSuite</code>. This is always
- * <code>VelocityTestSuite</code>.
- *
- * @return The <code>TestSuite</code> to run.
- */
- public static junit.framework.Test suite ()
- {
- return new VelocityTestSuite();
- }
}