diff --git a/Examples/test-suite/csharp/explicitcall_runme.cs b/Examples/test-suite/csharp/explicitcall_runme.cs deleted file mode 100644 index 05c7a0912..000000000 --- a/Examples/test-suite/csharp/explicitcall_runme.cs +++ /dev/null @@ -1,73 +0,0 @@ - -using System; -using explicitcallNamespace; - -public class explicitcall_runme { - - public static void Main() { - - GrandChild gc = new GrandChild(); - if (gc.talkPerson() != "Person") - throw new Exception("Explicit Person"); - if (gc.talkChild() != "Child") - throw new Exception("Explicit Child"); - if (gc.talkBambino() != "GrandChild") - throw new Exception("Explicit GrandChild"); - - if (gc.talk() != "GrandChild") - throw new Exception("virtual GrandChild"); - - { - Person p = null; - p = new Mother(); - if (p.talk() != "Person") - throw new Exception("Mother"); - - p = new Daughter(); - if (p.talk() != "Person:Child") - throw new Exception("Daughter"); - - p = new GrandDaughter(); - if (p.talk() != "Person:Child:GrandChild") - throw new Exception("GrandDaughter"); - } - - { - TemplateString t = new TemplateString(); - if (t.barTemplateString(0) != "Template") - throw new Exception("Template"); - - TDerived td = new TDerived(); - - if (td.barTDerived() != "TDerived") - throw new Exception("TDerived TDerived()"); - if (td.barTemplateString() != "Template") - throw new Exception("TDerived Template()"); - - if (td.barTDerived(0) != "TDerived") - throw new Exception("TDerived TDerived(0)"); - if (td.barTemplateString(0) != "Template") - throw new Exception("TDerived Template(0)"); - } - } -} - -// Test classic usage of the %explicitcall - using base class method from derived class -class Mother : Person { - public override string talk() { - return talkPerson(); - } -} - -class Daughter : Child { - public override string talk() { - return talkPerson() + ":" + talkChild(); - } -} - -class GrandDaughter : GrandChild { - public override string talk() { - return talkPerson() + ":" + talkChild() + ":" + talkBambino(); - } -} - diff --git a/Examples/test-suite/java/explicitcall_runme.java b/Examples/test-suite/java/explicitcall_runme.java deleted file mode 100644 index 61f8ce345..000000000 --- a/Examples/test-suite/java/explicitcall_runme.java +++ /dev/null @@ -1,83 +0,0 @@ -// Mainly tests that directors are finalized correctly - -import explicitcall.*; - -public class explicitcall_runme { - - static { - try { - System.loadLibrary("explicitcall"); - } 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[]) { - - GrandChild gc = new GrandChild(); - if (!gc.talkPerson().equals("Person")) - throw new RuntimeException("Explicit Person"); - if (!gc.talkChild().equals("Child")) - throw new RuntimeException("Explicit Child"); - if (!gc.talkBambino().equals("GrandChild")) - throw new RuntimeException("Explicit GrandChild"); - - if (!gc.talk().equals("GrandChild")) - throw new RuntimeException("virtual GrandChild"); - - { - Person p = null; - p = new Mother(); - if (!p.talk().equals("Person")) - throw new RuntimeException("Mother"); - - p = new Daughter(); - if (!p.talk().equals("Person:Child")) - throw new RuntimeException("Daughter"); - - p = new GrandDaughter(); - if (!p.talk().equals("Person:Child:GrandChild")) - throw new RuntimeException("GrandDaughter"); - } - - { - TemplateString t = new TemplateString(); - if (!t.barTemplateString(0).equals("Template")) - throw new RuntimeException("Template"); - - TDerived td = new TDerived(); - - if (!td.barTDerived().equals("TDerived")) - throw new RuntimeException("TDerived TDerived()"); - if (!td.barTemplateString().equals("Template")) - throw new RuntimeException("TDerived Template()"); - - if (!td.barTDerived(0).equals("TDerived")) - throw new RuntimeException("TDerived TDerived(0)"); - if (!td.barTemplateString(0).equals("Template")) - throw new RuntimeException("TDerived Template(0)"); - } - } - -} - -// Test classic usage of the %explicitcall - using base class method from derived class -class Mother extends Person { - public String talk() { - return talkPerson(); - } -} - -class Daughter extends Child { - public String talk() { - return talkPerson() + ":" + talkChild(); - } -} - -class GrandDaughter extends GrandChild { - public String talk() { - return talkPerson() + ":" + talkChild() + ":" + talkBambino(); - } -} - diff --git a/Examples/test-suite/python/explicitcall_runme.py b/Examples/test-suite/python/explicitcall_runme.py deleted file mode 100644 index 2ae1ac969..000000000 --- a/Examples/test-suite/python/explicitcall_runme.py +++ /dev/null @@ -1,57 +0,0 @@ -from explicitcall import * - - -# Test classic usage of the %explicitcall - using base class method from derived class -class Mother(Person): - def talk(self): - return Person.talkPerson(self) - -class Daughter(Child): - def talk(self): - return Person.talkPerson(self) + ":" + Child.talkChild(self) - -class GrandDaughter(GrandChild): - def talk(self): - return Person.talkPerson(self) + ":" + Child.talkChild(self) + ":" + GrandChild.talkBambino(self) - - -gc = GrandChild() -if (gc.talkPerson() != "Person"): - raise RuntimeError, "Explicit Person" -if (gc.talkChild() != "Child"): - raise RuntimeError, "Explicit Child" -if (gc.talkBambino() != "GrandChild"): - raise RuntimeError, "Explicit GrandChild" - -if (gc.talk() != "GrandChild"): - raise RuntimeError, "virtual GrandChild" - - -p = Mother() -if (p.talk() != "Person"): - raise RuntimeError, "Mother" - -p = Daughter() -if (p.talk() != "Person:Child"): - raise RuntimeError, "Daughter" - -p = GrandDaughter() -if (p.talk() != "Person:Child:GrandChild"): - raise RuntimeError, "GrandDaughter" - -t = TemplateString() -if (t.barTemplateString(0) != "Template"): - raise RuntimeError, "Template" - -td = TDerived() - -if (td.barTDerived() != "TDerived"): - raise RuntimeError, "TDerived TDerived()" -if (td.barTemplateString() != "Template"): - raise RuntimeError, "TDerived Template()" - -if (td.barTDerived(0) != "TDerived"): - raise RuntimeError, "TDerived TDerived(0)" -if (td.barTemplateString(0) != "Template"): - raise RuntimeError, "TDerived Template(0)" -