From f26ab4f86e577fd6c55bce410272eab2e0030eed Mon Sep 17 00:00:00 2001 From: William S Fulton Date: Thu, 10 Aug 2006 21:29:43 +0000 Subject: [PATCH] runtime test to match the java one git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@9236 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- .../csharp/director_protected_runme.cs | 72 +++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 Examples/test-suite/csharp/director_protected_runme.cs diff --git a/Examples/test-suite/csharp/director_protected_runme.cs b/Examples/test-suite/csharp/director_protected_runme.cs new file mode 100644 index 000000000..ee4697b0e --- /dev/null +++ b/Examples/test-suite/csharp/director_protected_runme.cs @@ -0,0 +1,72 @@ +using System; + +namespace director_protectedNamespace { + +public class runme +{ + static void Main() + { + runme r = new runme(); + r.run(); + } + + void run() + { + Bar b = new Bar(); + Foo f = b.create(); + FooBar fb = new FooBar(); + FooBar2 fb2 = new FooBar2(); + + String s; + s = fb.used(); + if ( s != ("Foo::pang();Bar::pong();Foo::pong();FooBar::ping();")) + throw new Exception("bad FooBar::used" + " - " + s); + + s = fb2.used(); + if ( s != ("FooBar2::pang();Bar::pong();Foo::pong();FooBar2::ping();")) + throw new Exception("bad FooBar2::used"); + + s = b.pong(); + if ( s != ("Bar::pong();Foo::pong();Bar::ping();")) + throw new Exception("bad Bar::pong"); + + s = f.pong(); + if ( s != ("Bar::pong();Foo::pong();Bar::ping();")) + throw new Exception("bad Foo::pong"); + + s = fb.pong(); + if ( s != ("Bar::pong();Foo::pong();FooBar::ping();")) + throw new Exception("bad FooBar::pong"); + } +} + +class FooBar : Bar +{ + public FooBar() : base() + { + } + + protected override String ping() + { + return "FooBar::ping();"; + } +} + +class FooBar2 : Bar +{ + public FooBar2() : base() + { + } + + protected override String ping() + { + return "FooBar2::ping();"; + } + + protected override String pang() + { + return "FooBar2::pang();"; + } +} + +}