import java.util.List;
import java.util.StringTokenizer;
-import junit.framework.TestCase;
-
import org.aspectj.bridge.IMessage;
import org.aspectj.bridge.ISourceLocation;
import org.aspectj.testing.util.TestUtil;
import org.aspectj.util.LangUtil;
+import junit.framework.TestCase;
+
/**
* A TestCase class that acts as the superclass for all test cases wishing to drive the ajc compiler.
* <p>
+ File.separator
+ "bcel-verifier.jar"
- + File.pathSeparator + ".." + File.separator + "lib" + File.separator + "asm" + File.separator + "asm-6.0_BETA.renamed.jar"
+ + File.pathSeparator + ".." + File.separator + "lib" + File.separator + "asm" + File.separator + "asm-6.0.renamed.jar"
// When the build machine executes the tests, it is using code built into jars rather than code build into
// bin directories. This means for the necessary types to be found we have to put these jars on the classpath:
/**
* Returns a string indicating what this <code>Message</code> will match.
*/
+ @Override
public String toString() {
StringBuffer buff = new StringBuffer();
buff.append("message ");
/**
* Returns the command that was executed to produce this result.
*/
+ @Override
public String toString() {
return command;
}
*
* @see junit.framework.TestCase#setUp()
*/
+ @Override
protected void setUp() throws Exception {
super.setUp();
ajc = new Ajc();
*
* @see junit.framework.TestCase#tearDown()
*/
+ @Override
protected void tearDown() throws Exception {
super.tearDown();
// ajc = null;