public void MetodoInstanciaTest()
        {
            //arrange
            ClaseC claseC = new ClaseC();

            //Act+Assert
            Assert.ThrowsException <MiException>(() => claseC.MetodoInstancia());
        }
예제 #2
0
 static void Main(string[] args)
 {
     ClaseC c = new ClaseC();
 }