public void TearDown() { _unitUnderTest = null; }
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."); }
public void SetUp() { string msg = null; _unitUnderTest = new EmlParseException(msg); }