Small fiddling.

git-svn-id: https://samskivert.googlecode.com/svn/trunk@1973 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
mdb
2006-11-10 20:36:42 +00:00
parent 3996559f8e
commit f866ec283d
@@ -22,8 +22,10 @@ package com.samskivert.velocity;
import java.io.File; import java.io.File;
import java.io.InputStream; import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.PrintWriter; import java.io.PrintWriter;
import java.io.StringWriter; import java.io.StringWriter;
import java.util.Collection;
import java.util.Locale; import java.util.Locale;
import junit.framework.TestCase; import junit.framework.TestCase;
@@ -97,7 +99,7 @@ public abstract class VelocityTestCase extends TestCase
// parse the template // parse the template
if (!_engine.evaluate(new VelocityContext(), new StringWriter(), if (!_engine.evaluate(new VelocityContext(), new StringWriter(),
template, tempin)) { template, new InputStreamReader(tempin))) {
fail("Template parsing failed '" + template + "'."); fail("Template parsing failed '" + template + "'.");
} }
} }
@@ -165,7 +167,7 @@ public abstract class VelocityTestCase extends TestCase
* Returns an array of template paths which will be resolved on the * Returns an array of template paths which will be resolved on the
* classpath. * classpath.
*/ */
protected abstract String[] getTemplates (); protected abstract Collection<String> getTemplates ();
/** Accumulates logging to a buffer for later reporting. */ /** Accumulates logging to a buffer for later reporting. */
protected LogChute _logger = new LogChute() { protected LogChute _logger = new LogChute() {