Пример #1
0
 public void TearDown()
 {
     _unitUnderTest = null;
 }
Пример #2
0
 public void TestConstructorEmlParseExceptionMsgInnerExc()
 {
     string msg = "Error";
     Exception innerExc = new Exception();
     EmlParseException testEmlParseException = new EmlParseException(msg, innerExc);
     Assert.IsNotNull(testEmlParseException, "Constructor of type, EmlParseException failed to create instance.");
 }
Пример #3
0
 public void SetUp()
 {
     string msg = null;
     _unitUnderTest = new EmlParseException(msg);
 }