1 2 3 4 5 6 7 8 9 10 11
import org.aspectj.testing.Tester; public class Driver { private static java.util.Vector v = new java.util.Vector(); public static void main(String[] args) { test(); } public static void test() { Tester.check("foo".equals("foo"), "foo equals foo"); } }