swig/Examples/test-suite/csharp/director_protected_runme.cs
William S Fulton f26ab4f86e 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
2006-08-10 21:29:43 +00:00

72 lines
1.3 KiB
C#

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();";
}
}
}