Inheritance: SshException
コード例 #1
0
ファイル: ScpExceptionTest.cs プロジェクト: delfinof/ssh.net
 public void ScpExceptionConstructorTest2()
 {
     string message = string.Empty; // TODO: Initialize to an appropriate value
     Exception innerException = null; // TODO: Initialize to an appropriate value
     ScpException target = new ScpException(message, innerException);
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
コード例 #2
0
ファイル: ScpExceptionTest.cs プロジェクト: delfinof/ssh.net
 public void ScpExceptionConstructorTest()
 {
     ScpException target = new ScpException();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }