fix for compilation against junit4 libs

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@1741 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
dolby-oss 2007-09-07 11:52:24 +00:00
parent 6ded4834aa
commit 10e631a752
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ public abstract class WalaTestCase extends TestCase {
* calls this, to create a test suite consisting of just this test. Useful
* when investigating a single failing test.
*/
protected static void justThisTest(Class<?> testClass) {
protected static void justThisTest(Class<? extends TestCase> testClass) {
TestSuite suite = new TestSuite(testClass.getName());
suite.addTestSuite(testClass);
junit.textui.TestRunner.run(suite);