Add nested_inheritance_interface test
This commit is contained in:
parent
22c27cf216
commit
84e310402a
3 changed files with 44 additions and 0 deletions
|
|
@ -0,0 +1,28 @@
|
|||
import nested_inheritance_interface.*;
|
||||
import java.util.Arrays;
|
||||
|
||||
public class nested_inheritance_interface_runme {
|
||||
|
||||
static {
|
||||
try {
|
||||
System.loadLibrary("nested_inheritance_interface");
|
||||
} catch (UnsatisfiedLinkError e) {
|
||||
System.err.println("Native code library failed to load. See the chapter on Dynamic Linking Problems in the SWIG Java documentation for help.\n" + e);
|
||||
System.exit(1);
|
||||
}
|
||||
}
|
||||
|
||||
public static void main(String argv[]) {
|
||||
Class[] BNInterfaces = B.N.class.getInterfaces();
|
||||
String expectedInterfacesString = "[interface nested_inheritance_interface.IASwigInterface]";
|
||||
String actualInterfacesString = Arrays.toString(BNInterfaces);
|
||||
if (!expectedInterfacesString.equals(actualInterfacesString))
|
||||
throw new RuntimeException("Expected interfaces for " + B.N.class.getName() + ": \n" + expectedInterfacesString + "\n" + "Actual interfaces: \n" + actualInterfacesString);
|
||||
|
||||
if (!IASwigInterface.class.isInterface())
|
||||
throw new RuntimeException(IASwigInterface.class.getName() + " should be an interface but is not");
|
||||
|
||||
// overloaded methods check
|
||||
B.N d = new B.N();
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue