public void TestStaticClassParentStaticMethod()
 {
     if (!DummyStaticObject.Method4().Equals("Method4"))
     {
         throw new Exception("Se esperaba el valor Method4");
     }
 }
예제 #2
0
 public void TestStaticClassPrivateStaticMethod()
 {
     if (!DummyStaticObject.Class2().Equals("DummyStaticObject"))
     {
         throw new Exception("Se esperaba el valor DummyStaticObject");
     }
 }