Browse Source

generics

tags/V1_6_12M1
aclement 13 years ago
parent
commit
4315578eb6
1 changed files with 2 additions and 4 deletions
  1. 2
    4
      testing/newsrc/org/aspectj/testing/AjcTest.java

+ 2
- 4
testing/newsrc/org/aspectj/testing/AjcTest.java View File

@@ -12,7 +12,6 @@
package org.aspectj.testing;

import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;

import org.aspectj.tools.ajc.AjcTestCase;
@@ -44,7 +43,7 @@ public class AjcTest {
}
}

private List testSteps = new ArrayList();
private List<ITestStep> testSteps = new ArrayList<ITestStep>();
private String dir;
private String pr;
@@ -65,8 +64,7 @@ public class AjcTest {
if (!canRunOnThisVM()) return false;
try {
System.out.print("TEST: " + getTitle() + "\t");
for (Iterator iter = testSteps.iterator(); iter.hasNext();) {
ITestStep step = (ITestStep) iter.next();
for (ITestStep step: testSteps) {
step.setBaseDir(getDir());
System.out.print(".");
step.execute(testCase);

Loading…
Cancel
Save