You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Driver.java 233B

1234567891011
  1. import pkg.*;
  2. import org.aspectj.testing.Tester;
  3. public class Driver {
  4. public static void main(String[] args) { test(); }
  5. public static void test() {
  6. Obj obj = new Obj();
  7. Tester.checkEqual(obj.m(), 3, "obj.m()");
  8. }
  9. }