org.aspectj/tests/pureJava/ImportingStaticInnerInterfacesStars2_PR386.java
2002-12-16 18:51:06 +00:00

20 lines
853 B
Java

import org.aspectj.testing.*;
import ClassWithStaticInnerInterfaces.Inner1;
import ClassWithStaticInnerInterfaces.Inner1.*;
public class ImportingStaticInnerInterfacesStars2_PR386 {
public static void main(String[] args) {
Tester.checkEqual(ClassWithStaticInnerInterfaces.class.getName(),
"ClassWithStaticInnerInterfaces");
Tester.checkEqual(ClassWithStaticInnerInterfaces.Inner1.class.getName(),
"ClassWithStaticInnerInterfaces$Inner1");
Tester.checkEqual(ClassWithStaticInnerInterfaces.Inner1.Inner2.class.getName(),
"ClassWithStaticInnerInterfaces$Inner1$Inner2");
Tester.checkEqual(I1.class.getName(), "I1");
Tester.checkEqual(I2.class.getName(), "I2");
}
}
class I1 implements Inner1 {}
class I2 implements Inner2 {}