nested_inheritance_interface testcase enhancement

Fixes unused variable reported by C# compiler and enhance test slightly
This commit is contained in:
William S Fulton 2019-07-09 19:32:08 +01:00
commit 20d96531e3
3 changed files with 12 additions and 0 deletions

View file

@ -12,6 +12,9 @@ public class nested_inheritance_interface_runme {
}
}
private static void takeIA(IASwigInterface ia) {
}
public static void main(String argv[]) {
Class[] BNInterfaces = B.N.class.getInterfaces();
String expectedInterfacesString = "[interface nested_inheritance_interface.IASwigInterface]";
@ -24,5 +27,6 @@ public class nested_inheritance_interface_runme {
// overloaded methods check
B.N d = new B.N();
takeIA(d);
}
}