aboutsummaryrefslogtreecommitdiffstats
path: root/tests/pureJava/Asserts.java
blob: 09ea01084b15594f154342bab4158fba88b28208 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import org.aspectj.testing.Tester;

public class Asserts {
    public static void main(String[] args) {
        Asserts.class.getClassLoader().setClassAssertionStatus("TestAsserts", true);
        TestAsserts.main(args);
    }
}

class TestAsserts {
    public static void main(String[] args) {
        //C c = new C();
        //C.m(9);
        int x = 0;
        assert x < 2;
        assert x <10 : 3;

        boolean pass = false;
        try { assert x > 2; }
        catch (AssertionError e) { pass = true; }
        finally { Tester.check(pass, "no expected assertion-1"); }

        pass = false;
        try { assert x >10 : 3; }
        catch (AssertionError e) { pass = true; }
        finally { Tester.check(pass, "no expected assertion-2"); }
    }

    static class C {
        static void m(int i ) {
            assert i < 10;
        }
    }
}