示例#1
0
 public void testExtSimpleImplementation4()
 {
     var x = new ExtSimpleImplementation();
     AssertEquals(x.FooInt(), 1);
 }
示例#2
0
 public void testExtSimpleImplementation2()
 {
     var x = new ExtSimpleImplementation();
     x.Foo();
     AssertTrue(true);
 }
示例#3
0
 public void testExtSimpleImplementation3()
 {
     IExtSimpleInterface x = new ExtSimpleImplementation();
     AssertEquals(x.FooInt(), 1);
 }
示例#4
0
 public void testExtSimpleImplementation1()
 {
     ISimpleInterface x = new ExtSimpleImplementation();
     x.Foo();
     AssertTrue(true);
 }