Пример #1
0
 public void TearDown()
 {
     _unitUnderTest = null;
 }
Пример #2
0
 public void TestConstructorFigureBaseVars()
 {
     FigureBase testFigureBase = new FigureBase();
     Assert.IsNotNull(testFigureBase, "Constructor of type, FigureBase failed to create instance.");
     Assert.Fail("Create or modify test(s).");
 }
Пример #3
0
 public void SetUp()
 {
     _unitUnderTest = new FigureBase();
 }