Inheritance: SshException
Example #1
0
 public void ProxyExceptionConstructorTest2()
 {
     string message = string.Empty; // TODO: Initialize to an appropriate value
     Exception innerException = null; // TODO: Initialize to an appropriate value
     ProxyException target = new ProxyException(message, innerException);
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
Example #2
0
 public void ProxyExceptionConstructorTest()
 {
     ProxyException target = new ProxyException();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }