test/tools/javac/defaultMethods/Assertions.java

changeset 0
959103a6100f
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/test/tools/javac/defaultMethods/Assertions.java	Wed Apr 27 01:34:52 2016 +0800
     1.3 @@ -0,0 +1,102 @@
     1.4 +/*
     1.5 + * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
     1.6 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.7 + *
     1.8 + * This code is free software; you can redistribute it and/or modify it
     1.9 + * under the terms of the GNU General Public License version 2 only, as
    1.10 + * published by the Free Software Foundation.
    1.11 + *
    1.12 + * This code is distributed in the hope that it will be useful, but WITHOUT
    1.13 + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    1.14 + * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    1.15 + * version 2 for more details (a copy is included in the LICENSE file that
    1.16 + * accompanied this code).
    1.17 + *
    1.18 + * You should have received a copy of the GNU General Public License version
    1.19 + * 2 along with this work; if not, write to the Free Software Foundation,
    1.20 + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    1.21 + *
    1.22 + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    1.23 + * or visit www.oracle.com if you need additional information or have any
    1.24 + * questions.
    1.25 + */
    1.26 +package test;
    1.27 +
    1.28 +import java.util.Arrays;
    1.29 +import java.util.HashSet;
    1.30 +import java.util.Set;
    1.31 +
    1.32 +/*
    1.33 + * @test
    1.34 + * @bug 8025141
    1.35 + * @summary Interfaces must not contain non-public fields, ensure $assertionsDisabled
    1.36 + *          is not generated into an interface
    1.37 + * @compile Assertions.java
    1.38 + * @run main/othervm -da test.Assertions
    1.39 + * @run main/othervm -ea:test.Assertions test.Assertions Inner
    1.40 + * @run main/othervm -ea:test.Outer test.Assertions Outer
    1.41 + * @run main/othervm -ea:test.Another test.Assertions Another.Inner
    1.42 + * @run main/othervm -ea:test... test.Assertions Inner Outer Another.Inner
    1.43 + */
    1.44 +
    1.45 +public class Assertions {
    1.46 +    interface Inner {
    1.47 +        default void testInner() {
    1.48 +            assert false;
    1.49 +        }
    1.50 +    }
    1.51 +
    1.52 +    static class InnerImpl implements Inner {}
    1.53 +
    1.54 +    static class OuterImpl implements Outer {}
    1.55 +
    1.56 +    static class AnotherInnerImpl implements Another.Inner {}
    1.57 +
    1.58 +    public static void main(String... args) {
    1.59 +        Set<String> shouldThrowAssert = new HashSet<String>(Arrays.asList(args));
    1.60 +        try {
    1.61 +            new InnerImpl().testInner();
    1.62 +            if (shouldThrowAssert.contains("Inner")) {
    1.63 +                throw new IllegalStateException("AssertionError expected, but not thrown.");
    1.64 +            }
    1.65 +        } catch (AssertionError e) {
    1.66 +            if (!shouldThrowAssert.contains("Inner")) {
    1.67 +                throw new IllegalStateException("AssertionError not expected, but thrown.");
    1.68 +            }
    1.69 +        }
    1.70 +        try {
    1.71 +            new OuterImpl().testOuter();
    1.72 +            if (shouldThrowAssert.contains("Outer")) {
    1.73 +                throw new IllegalStateException("AssertionError expected, but not thrown.");
    1.74 +            }
    1.75 +        } catch (AssertionError e) {
    1.76 +            if (!shouldThrowAssert.contains("Outer")) {
    1.77 +                throw new IllegalStateException("AssertionError not expected, but thrown.");
    1.78 +            }
    1.79 +        }
    1.80 +        try {
    1.81 +            new AnotherInnerImpl().testAnotherInner();
    1.82 +            if (shouldThrowAssert.contains("Another.Inner")) {
    1.83 +                throw new IllegalStateException("AssertionError expected, but not thrown.");
    1.84 +            }
    1.85 +        } catch (AssertionError e) {
    1.86 +            if (!shouldThrowAssert.contains("Another.Inner")) {
    1.87 +                throw new IllegalStateException("AssertionError not expected, but thrown.");
    1.88 +            }
    1.89 +        }
    1.90 +    }
    1.91 +}
    1.92 +
    1.93 +interface Outer {
    1.94 +    default void testOuter() {
    1.95 +        assert false;
    1.96 +    }
    1.97 +}
    1.98 +
    1.99 +@interface Another {
   1.100 +    interface Inner {
   1.101 +        default void testAnotherInner() {
   1.102 +            assert false;
   1.103 +        }
   1.104 +    }
   1.105 +}

mercurial