summaryrefslogtreecommitdiffstats
path: root/tests/new/introTypeMissing/Util.java
blob: 22e33eff2370d5c914c9b1cdd9f6a1831d604e93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import org.aspectj.testing.Tester; 

public class Util {
    public static void fail(String s) {
        //System.err.println("fail: " + s);
        Tester.check(false,s);
    }
    public static void signal(String s) {
        //System.err.println("signal: " + s);
        Tester.event(s);
    }
}