您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213141516
  1. package test;
  2. import org.aspectj.testing.*;
  3. public class Test {
  4. public static void main(String[] args) {
  5. new Test().run();
  6. Tester.checkAllEvents();
  7. }
  8. public void run() {
  9. Tester.event("run");
  10. }
  11. static {
  12. Tester.expectEventsInString("before,after,run");
  13. }
  14. }