コード例 #1
0
ファイル: TestInterface.cs プロジェクト: Xtremrules/dot42
 public void testDerivedExtSimpleImplementation2()
 {
     var x = new DerivedExtSimpleImplementation();
     AssertEquals(x.FooInt(), 3);
 }
コード例 #2
0
ファイル: TestInterface.cs プロジェクト: Xtremrules/dot42
 public void testDerivedExtSimpleImplementation1()
 {
     IExtSimpleInterface x = new DerivedExtSimpleImplementation();
     AssertEquals(x.FooInt(), 3);
 }