public void ImportExceptionConstructorTest()
 {
     string message = string.Empty; // TODO: Initialize to an appropriate value
     Exception inner = null; // TODO: Initialize to an appropriate value
     ImportException target = new ImportException(message, inner);
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
 public void ImportExceptionConstructorTest2()
 {
     ImportException target = new ImportException();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }