コード例 #1
0
 public void SpreadsheetReadWriteExceptionTest()
 {
     SpreadsheetReadWriteException e = new SpreadsheetReadWriteException("Hello");
     Assert.AreEqual("Hello", e.Message);
 }
コード例 #2
0
 public void SpreadsheetReadWriteExceptionConstructorTest()
 {
     string msg = string.Empty; // TODO: Initialize to an appropriate value
     SpreadsheetReadWriteException target = new SpreadsheetReadWriteException(msg);
     Assert.IsTrue(target != null);
 }