Bläddra i källkod

Ignore bunch of placeholder tests.

drieseng 9 år sedan
förälder
incheckning
959ec3240f
40 ändrade filer med 225 tillägg och 160 borttagningar
  1. 5 3
      src/Renci.SshNet.Tests/Classes/Compression/ZlibStreamTest.cs
  2. 4 0
      src/Renci.SshNet.Tests/Classes/ForwardedPortRemoteTest.cs
  3. 6 6
      src/Renci.SshNet.Tests/Classes/Messages/Authentication/BannerMessageTest.cs
  4. 5 3
      src/Renci.SshNet.Tests/Classes/Messages/Authentication/FailureMessageTest.cs
  5. 9 6
      src/Renci.SshNet.Tests/Classes/Messages/Authentication/RequestMessagePublicKeyTest.cs
  6. 6 6
      src/Renci.SshNet.Tests/Classes/Messages/Authentication/SuccessMessageTest.cs
  7. 5 3
      src/Renci.SshNet.Tests/Classes/Messages/Connection/ChannelCloseMessageTest.cs
  8. 5 3
      src/Renci.SshNet.Tests/Classes/Messages/Connection/ChannelEofMessageTest.cs
  9. 5 3
      src/Renci.SshNet.Tests/Classes/Messages/Connection/ChannelExtendedDataMessageTest.cs
  10. 5 3
      src/Renci.SshNet.Tests/Classes/Messages/Connection/ChannelFailureMessageTest.cs
  11. 5 3
      src/Renci.SshNet.Tests/Classes/Messages/Connection/ChannelOpenConfirmationMessageTest.cs
  12. 5 3
      src/Renci.SshNet.Tests/Classes/Messages/Connection/ChannelOpenFailureMessageTest.cs
  13. 5 3
      src/Renci.SshNet.Tests/Classes/Messages/Connection/ChannelRequest/EndOfWriteRequestInfoTest.cs
  14. 5 3
      src/Renci.SshNet.Tests/Classes/Messages/Connection/ChannelRequest/KeepAliveRequestInfoTest.cs
  15. 5 3
      src/Renci.SshNet.Tests/Classes/Messages/Connection/ChannelSuccessMessageTest.cs
  16. 5 3
      src/Renci.SshNet.Tests/Classes/Messages/Connection/ChannelWindowAdjustMessageTest.cs
  17. 5 3
      src/Renci.SshNet.Tests/Classes/Messages/Connection/GlobalRequestMessageTest.cs
  18. 3 3
      src/Renci.SshNet.Tests/Classes/Messages/Connection/RequestFailureMessageTest.cs
  19. 5 3
      src/Renci.SshNet.Tests/Classes/Messages/Connection/RequestSuccessMessageTest.cs
  20. 8 7
      src/Renci.SshNet.Tests/Classes/Messages/MessageAttributeTest.cs
  21. 4 6
      src/Renci.SshNet.Tests/Classes/Messages/MessageTest.cs
  22. 3 3
      src/Renci.SshNet.Tests/Classes/Messages/Transport/DebugMessageTest.cs
  23. 5 3
      src/Renci.SshNet.Tests/Classes/Messages/Transport/DisconnectMessageTest.cs
  24. 3 2
      src/Renci.SshNet.Tests/Classes/Messages/Transport/KeyExchangeDhGroupExchangeGroupTest.cs
  25. 3 2
      src/Renci.SshNet.Tests/Classes/Messages/Transport/KeyExchangeDhReplyMessageTest.cs
  26. 38 37
      src/Renci.SshNet.Tests/Classes/Messages/Transport/KeyExchangeInitMessageTest.cs
  27. 3 2
      src/Renci.SshNet.Tests/Classes/Messages/Transport/NewKeysMessageTest.cs
  28. 3 2
      src/Renci.SshNet.Tests/Classes/Messages/Transport/ServiceAcceptMessageTest.cs
  29. 3 2
      src/Renci.SshNet.Tests/Classes/Messages/Transport/ServiceRequestMessageTest.cs
  30. 3 2
      src/Renci.SshNet.Tests/Classes/Messages/Transport/UnimplementedMessageTest.cs
  31. 1 0
      src/Renci.SshNet.Tests/Classes/Security/CertificateHostAlgorithmTest.cs
  32. 3 2
      src/Renci.SshNet.Tests/Classes/Security/Cryptography/Ciphers/Paddings/PKCS5PaddingTest.cs
  33. 2 1
      src/Renci.SshNet.Tests/Classes/Security/Cryptography/Ciphers/Paddings/PKCS7PaddingTest.cs
  34. 19 10
      src/Renci.SshNet.Tests/Classes/Security/Cryptography/DsaKeyTest.cs
  35. 7 4
      src/Renci.SshNet.Tests/Classes/Security/KeyExchangeDiffieHellmanGroup1Sha1Test.cs
  36. 5 3
      src/Renci.SshNet.Tests/Classes/Security/KeyExchangeDiffieHellmanGroupExchangeSha256Test.cs
  37. 3 2
      src/Renci.SshNet.Tests/Classes/Sftp/SftpDownloadAsyncResultTest.cs
  38. 5 3
      src/Renci.SshNet.Tests/Classes/Sftp/SftpFileSystemInformationTest.cs
  39. 3 2
      src/Renci.SshNet.Tests/Classes/Sftp/SftpSynchronizeDirectoriesAsyncResultTest.cs
  40. 3 2
      src/Renci.SshNet.Tests/Classes/Sftp/SftpUploadAsyncResultTest.cs

+ 5 - 3
src/Renci.SshNet.Tests/Classes/Compression/ZlibStreamTest.cs

@@ -10,13 +10,14 @@ namespace Renci.SshNet.Tests.Classes.Compression
     ///This is a test class for ZlibStreamTest and is intended
     ///to contain all ZlibStreamTest Unit Tests
     ///</summary>
-    [TestClass()]
+    [TestClass]
     public class ZlibStreamTest : TestBase
     {
         /// <summary>
         ///A test for ZlibStream Constructor
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void ZlibStreamConstructorTest()
         {
             Stream stream = null; // TODO: Initialize to an appropriate value
@@ -28,7 +29,8 @@ namespace Renci.SshNet.Tests.Classes.Compression
         /// <summary>
         ///A test for Write
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void WriteTest()
         {
             Stream stream = null; // TODO: Initialize to an appropriate value

+ 4 - 0
src/Renci.SshNet.Tests/Classes/ForwardedPortRemoteTest.cs

@@ -76,6 +76,7 @@ namespace Renci.SshNet.Tests.Classes
         ///A test for Stop
         ///</summary>
         [TestMethod]
+        [Ignore] // placeholder
         public void StopTest()
         {
             uint boundPort = 0; // TODO: Initialize to an appropriate value
@@ -110,6 +111,7 @@ namespace Renci.SshNet.Tests.Classes
         ///A test for Dispose
         ///</summary>
         [TestMethod]
+        [Ignore] // placeholder
         public void DisposeTest()
         {
             uint boundPort = 0; // TODO: Initialize to an appropriate value
@@ -124,6 +126,7 @@ namespace Renci.SshNet.Tests.Classes
         ///A test for ForwardedPortRemote Constructor
         ///</summary>
         [TestMethod]
+        [Ignore] // placeholder
         public void ForwardedPortRemoteConstructorTest()
         {
             string boundHost = string.Empty; // TODO: Initialize to an appropriate value
@@ -138,6 +141,7 @@ namespace Renci.SshNet.Tests.Classes
         ///A test for ForwardedPortRemote Constructor
         ///</summary>
         [TestMethod]
+        [Ignore] // placeholder
         public void ForwardedPortRemoteConstructorTest1()
         {
             uint boundPort = 0; // TODO: Initialize to an appropriate value

+ 6 - 6
src/Renci.SshNet.Tests/Classes/Messages/Authentication/BannerMessageTest.cs

@@ -1,21 +1,21 @@
-using Renci.SshNet.Messages.Authentication;
-using Microsoft.VisualStudio.TestTools.UnitTesting;
-using System;
+using Microsoft.VisualStudio.TestTools.UnitTesting;
+using Renci.SshNet.Messages.Authentication;
 using Renci.SshNet.Tests.Common;
 
-namespace Renci.SshNet.Tests.Messages.Authentication
+namespace Renci.SshNet.Tests.Classes.Messages.Authentication
 {   
     /// <summary>
     ///This is a test class for BannerMessageTest and is intended
     ///to contain all BannerMessageTest Unit Tests
     ///</summary>
-    [TestClass()]
+    [TestClass]
     public class BannerMessageTest : TestBase
     {
         /// <summary>
         ///A test for BannerMessage Constructor
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void BannerMessageConstructorTest()
         {
             BannerMessage target = new BannerMessage();

+ 5 - 3
src/Renci.SshNet.Tests/Classes/Messages/Authentication/FailureMessageTest.cs

@@ -9,13 +9,14 @@ namespace Renci.SshNet.Tests.Messages.Authentication
     ///This is a test class for FailureMessageTest and is intended
     ///to contain all FailureMessageTest Unit Tests
     ///</summary>
-    [TestClass()]
+    [TestClass]
     public class FailureMessageTest : TestBase
     {
         /// <summary>
         ///A test for FailureMessage Constructor
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void FailureMessageConstructorTest()
         {
             FailureMessage target = new FailureMessage();
@@ -25,7 +26,8 @@ namespace Renci.SshNet.Tests.Messages.Authentication
         /// <summary>
         ///A test for AllowedAuthentications
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void AllowedAuthenticationsTest()
         {
             FailureMessage target = new FailureMessage(); // TODO: Initialize to an appropriate value

+ 9 - 6
src/Renci.SshNet.Tests/Classes/Messages/Authentication/RequestMessagePublicKeyTest.cs

@@ -16,7 +16,8 @@ namespace Renci.SshNet.Tests.Messages.Authentication
         /// <summary>
         ///A test for RequestMessagePublicKey Constructor
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void RequestMessagePublicKeyConstructorTest()
         {
             ServiceName serviceName = new ServiceName(); // TODO: Initialize to an appropriate value
@@ -30,7 +31,8 @@ namespace Renci.SshNet.Tests.Messages.Authentication
         /// <summary>
         ///A test for RequestMessagePublicKey Constructor
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void RequestMessagePublicKeyConstructorTest1()
         {
             ServiceName serviceName = new ServiceName(); // TODO: Initialize to an appropriate value
@@ -45,7 +47,8 @@ namespace Renci.SshNet.Tests.Messages.Authentication
         /// <summary>
         ///A test for MethodName
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void MethodNameTest()
         {
             ServiceName serviceName = new ServiceName(); // TODO: Initialize to an appropriate value
@@ -61,7 +64,8 @@ namespace Renci.SshNet.Tests.Messages.Authentication
         /// <summary>
         ///A test for Signature
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void SignatureTest()
         {
             ServiceName serviceName = new ServiceName(); // TODO: Initialize to an appropriate value
@@ -70,9 +74,8 @@ namespace Renci.SshNet.Tests.Messages.Authentication
             byte[] keyData = null; // TODO: Initialize to an appropriate value
             RequestMessagePublicKey target = new RequestMessagePublicKey(serviceName, username, keyAlgorithmName, keyData); // TODO: Initialize to an appropriate value
             byte[] expected = null; // TODO: Initialize to an appropriate value
-            byte[] actual;
             target.Signature = expected;
-            actual = target.Signature;
+            var actual = target.Signature;
             Assert.AreEqual(expected, actual);
             Assert.Inconclusive("Verify the correctness of this test method.");
         }

+ 6 - 6
src/Renci.SshNet.Tests/Classes/Messages/Authentication/SuccessMessageTest.cs

@@ -1,10 +1,9 @@
-using Renci.SshNet.Messages.Authentication;
-using Microsoft.VisualStudio.TestTools.UnitTesting;
-using System;
+using Microsoft.VisualStudio.TestTools.UnitTesting;
+using Renci.SshNet.Messages.Authentication;
 using Renci.SshNet.Tests.Common;
 
-namespace Renci.SshNet.Tests.Messages.Authentication
-{   
+namespace Renci.SshNet.Tests.Classes.Messages.Authentication
+{
     /// <summary>
     ///This is a test class for SuccessMessageTest and is intended
     ///to contain all SuccessMessageTest Unit Tests
@@ -15,7 +14,8 @@ namespace Renci.SshNet.Tests.Messages.Authentication
         /// <summary>
         ///A test for SuccessMessage Constructor
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void SuccessMessageConstructorTest()
         {
             SuccessMessage target = new SuccessMessage();

+ 5 - 3
src/Renci.SshNet.Tests/Classes/Messages/Connection/ChannelCloseMessageTest.cs

@@ -9,13 +9,14 @@ namespace Renci.SshNet.Tests.Classes.Messages.Connection
     ///This is a test class for ChannelCloseMessageTest and is intended
     ///to contain all ChannelCloseMessageTest Unit Tests
     ///</summary>
-    [TestClass()]
+    [TestClass]
     public class ChannelCloseMessageTest : TestBase
     {
         /// <summary>
         ///A test for ChannelCloseMessage Constructor
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void ChannelCloseMessageConstructorTest()
         {
             ChannelCloseMessage target = new ChannelCloseMessage();
@@ -25,7 +26,8 @@ namespace Renci.SshNet.Tests.Classes.Messages.Connection
         /// <summary>
         ///A test for ChannelCloseMessage Constructor
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void ChannelCloseMessageConstructorTest1()
         {
             uint localChannelNumber = 0; // TODO: Initialize to an appropriate value

+ 5 - 3
src/Renci.SshNet.Tests/Classes/Messages/Connection/ChannelEofMessageTest.cs

@@ -9,13 +9,14 @@ namespace Renci.SshNet.Tests.Classes.Messages.Connection
     ///This is a test class for ChannelEofMessageTest and is intended
     ///to contain all ChannelEofMessageTest Unit Tests
     ///</summary>
-    [TestClass()]
+    [TestClass]
     public class ChannelEofMessageTest : TestBase
     {
         /// <summary>
         ///A test for ChannelEofMessage Constructor
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void ChannelEofMessageConstructorTest()
         {
             ChannelEofMessage target = new ChannelEofMessage();
@@ -25,7 +26,8 @@ namespace Renci.SshNet.Tests.Classes.Messages.Connection
         /// <summary>
         ///A test for ChannelEofMessage Constructor
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void ChannelEofMessageConstructorTest1()
         {
             uint localChannelNumber = 0; // TODO: Initialize to an appropriate value

+ 5 - 3
src/Renci.SshNet.Tests/Classes/Messages/Connection/ChannelExtendedDataMessageTest.cs

@@ -9,13 +9,14 @@ namespace Renci.SshNet.Tests.Classes.Messages.Connection
     ///This is a test class for ChannelExtendedDataMessageTest and is intended
     ///to contain all ChannelExtendedDataMessageTest Unit Tests
     ///</summary>
-    [TestClass()]
+    [TestClass]
     public class ChannelExtendedDataMessageTest : TestBase
     {
         /// <summary>
         ///A test for ChannelExtendedDataMessage Constructor
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void ChannelExtendedDataMessageConstructorTest()
         {
             ChannelExtendedDataMessage target = new ChannelExtendedDataMessage();
@@ -25,7 +26,8 @@ namespace Renci.SshNet.Tests.Classes.Messages.Connection
         /// <summary>
         ///A test for ChannelExtendedDataMessage Constructor
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void ChannelExtendedDataMessageConstructorTest1()
         {
             uint localChannelNumber = 0; // TODO: Initialize to an appropriate value

+ 5 - 3
src/Renci.SshNet.Tests/Classes/Messages/Connection/ChannelFailureMessageTest.cs

@@ -9,13 +9,14 @@ namespace Renci.SshNet.Tests.Classes.Messages.Connection
     ///This is a test class for ChannelFailureMessageTest and is intended
     ///to contain all ChannelFailureMessageTest Unit Tests
     ///</summary>
-    [TestClass()]
+    [TestClass]
     public class ChannelFailureMessageTest : TestBase
     {
         /// <summary>
         ///A test for ChannelFailureMessage Constructor
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void ChannelFailureMessageConstructorTest()
         {
             ChannelFailureMessage target = new ChannelFailureMessage();
@@ -25,7 +26,8 @@ namespace Renci.SshNet.Tests.Classes.Messages.Connection
         /// <summary>
         ///A test for ChannelFailureMessage Constructor
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void ChannelFailureMessageConstructorTest1()
         {
             uint localChannelNumber = 0; // TODO: Initialize to an appropriate value

+ 5 - 3
src/Renci.SshNet.Tests/Classes/Messages/Connection/ChannelOpenConfirmationMessageTest.cs

@@ -9,13 +9,14 @@ namespace Renci.SshNet.Tests.Classes.Messages.Connection
     ///This is a test class for ChannelOpenConfirmationMessageTest and is intended
     ///to contain all ChannelOpenConfirmationMessageTest Unit Tests
     ///</summary>
-    [TestClass()]
+    [TestClass]
     public class ChannelOpenConfirmationMessageTest : TestBase
     {
         /// <summary>
         ///A test for ChannelOpenConfirmationMessage Constructor
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void ChannelOpenConfirmationMessageConstructorTest()
         {
             ChannelOpenConfirmationMessage target = new ChannelOpenConfirmationMessage();
@@ -25,7 +26,8 @@ namespace Renci.SshNet.Tests.Classes.Messages.Connection
         /// <summary>
         ///A test for ChannelOpenConfirmationMessage Constructor
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void ChannelOpenConfirmationMessageConstructorTest1()
         {
             uint localChannelNumber = 0; // TODO: Initialize to an appropriate value

+ 5 - 3
src/Renci.SshNet.Tests/Classes/Messages/Connection/ChannelOpenFailureMessageTest.cs

@@ -9,13 +9,14 @@ namespace Renci.SshNet.Tests.Classes.Messages.Connection
     ///This is a test class for ChannelOpenFailureMessageTest and is intended
     ///to contain all ChannelOpenFailureMessageTest Unit Tests
     ///</summary>
-    [TestClass()]
+    [TestClass]
     public class ChannelOpenFailureMessageTest : TestBase
     {
         /// <summary>
         ///A test for ChannelOpenFailureMessage Constructor
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void ChannelOpenFailureMessageConstructorTest()
         {
             ChannelOpenFailureMessage target = new ChannelOpenFailureMessage();
@@ -25,7 +26,8 @@ namespace Renci.SshNet.Tests.Classes.Messages.Connection
         /// <summary>
         ///A test for ChannelOpenFailureMessage Constructor
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void ChannelOpenFailureMessageConstructorTest1()
         {
             uint localChannelNumber = 0; // TODO: Initialize to an appropriate value

+ 5 - 3
src/Renci.SshNet.Tests/Classes/Messages/Connection/ChannelRequest/EndOfWriteRequestInfoTest.cs

@@ -9,13 +9,14 @@ namespace Renci.SshNet.Tests.Classes.Messages.Connection
     ///This is a test class for EndOfWriteRequestInfoTest and is intended
     ///to contain all EndOfWriteRequestInfoTest Unit Tests
     ///</summary>
-    [TestClass()]
+    [TestClass]
     public class EndOfWriteRequestInfoTest : TestBase
     {
         /// <summary>
         ///A test for EndOfWriteRequestInfo Constructor
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void EndOfWriteRequestInfoConstructorTest()
         {
             EndOfWriteRequestInfo target = new EndOfWriteRequestInfo();
@@ -25,7 +26,8 @@ namespace Renci.SshNet.Tests.Classes.Messages.Connection
         /// <summary>
         ///A test for RequestName
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void RequestNameTest()
         {
             EndOfWriteRequestInfo target = new EndOfWriteRequestInfo(); // TODO: Initialize to an appropriate value

+ 5 - 3
src/Renci.SshNet.Tests/Classes/Messages/Connection/ChannelRequest/KeepAliveRequestInfoTest.cs

@@ -9,13 +9,14 @@ namespace Renci.SshNet.Tests.Classes.Messages.Connection
     ///This is a test class for KeepAliveRequestInfoTest and is intended
     ///to contain all KeepAliveRequestInfoTest Unit Tests
     ///</summary>
-    [TestClass()]
+    [TestClass]
     public class KeepAliveRequestInfoTest : TestBase
     {
         /// <summary>
         ///A test for KeepAliveRequestInfo Constructor
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void KeepAliveRequestInfoConstructorTest()
         {
             KeepAliveRequestInfo target = new KeepAliveRequestInfo();
@@ -25,7 +26,8 @@ namespace Renci.SshNet.Tests.Classes.Messages.Connection
         /// <summary>
         ///A test for RequestName
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void RequestNameTest()
         {
             KeepAliveRequestInfo target = new KeepAliveRequestInfo(); // TODO: Initialize to an appropriate value

+ 5 - 3
src/Renci.SshNet.Tests/Classes/Messages/Connection/ChannelSuccessMessageTest.cs

@@ -9,13 +9,14 @@ namespace Renci.SshNet.Tests.Classes.Messages.Connection
     ///This is a test class for ChannelSuccessMessageTest and is intended
     ///to contain all ChannelSuccessMessageTest Unit Tests
     ///</summary>
-    [TestClass()]
+    [TestClass]
     public class ChannelSuccessMessageTest : TestBase
     {
         /// <summary>
         ///A test for ChannelSuccessMessage Constructor
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void ChannelSuccessMessageConstructorTest()
         {
             ChannelSuccessMessage target = new ChannelSuccessMessage();
@@ -25,7 +26,8 @@ namespace Renci.SshNet.Tests.Classes.Messages.Connection
         /// <summary>
         ///A test for ChannelSuccessMessage Constructor
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void ChannelSuccessMessageConstructorTest1()
         {
             uint localChannelNumber = 0; // TODO: Initialize to an appropriate value

+ 5 - 3
src/Renci.SshNet.Tests/Classes/Messages/Connection/ChannelWindowAdjustMessageTest.cs

@@ -9,13 +9,14 @@ namespace Renci.SshNet.Tests.Classes.Messages.Connection
     ///This is a test class for ChannelWindowAdjustMessageTest and is intended
     ///to contain all ChannelWindowAdjustMessageTest Unit Tests
     ///</summary>
-    [TestClass()]
+    [TestClass]
     public class ChannelWindowAdjustMessageTest : TestBase
     {
         /// <summary>
         ///A test for ChannelWindowAdjustMessage Constructor
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void ChannelWindowAdjustMessageConstructorTest()
         {
             ChannelWindowAdjustMessage target = new ChannelWindowAdjustMessage();
@@ -25,7 +26,8 @@ namespace Renci.SshNet.Tests.Classes.Messages.Connection
         /// <summary>
         ///A test for ChannelWindowAdjustMessage Constructor
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void ChannelWindowAdjustMessageConstructorTest1()
         {
             uint localChannelNumber = 0; // TODO: Initialize to an appropriate value

+ 5 - 3
src/Renci.SshNet.Tests/Classes/Messages/Connection/GlobalRequestMessageTest.cs

@@ -9,13 +9,14 @@ namespace Renci.SshNet.Tests.Classes.Messages.Connection
     ///This is a test class for GlobalRequestMessageTest and is intended
     ///to contain all GlobalRequestMessageTest Unit Tests
     ///</summary>
-    [TestClass()]
+    [TestClass]
     public class GlobalRequestMessageTest : TestBase
     {
         /// <summary>
         ///A test for GlobalRequestMessage Constructor
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void GlobalRequestMessageConstructorTest()
         {
             GlobalRequestMessage target = new GlobalRequestMessage();
@@ -25,7 +26,8 @@ namespace Renci.SshNet.Tests.Classes.Messages.Connection
         /// <summary>
         ///A test for GlobalRequestMessage Constructor
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void GlobalRequestMessageConstructorTest2()
         {
             GlobalRequestName requestName = new GlobalRequestName(); // TODO: Initialize to an appropriate value

+ 3 - 3
src/Renci.SshNet.Tests/Classes/Messages/Connection/RequestFailureMessageTest.cs

@@ -1,6 +1,5 @@
 using Renci.SshNet.Messages.Connection;
 using Microsoft.VisualStudio.TestTools.UnitTesting;
-using System;
 using Renci.SshNet.Tests.Common;
 
 namespace Renci.SshNet.Tests.Classes.Messages.Connection
@@ -9,13 +8,14 @@ namespace Renci.SshNet.Tests.Classes.Messages.Connection
     ///This is a test class for RequestFailureMessageTest and is intended
     ///to contain all RequestFailureMessageTest Unit Tests
     ///</summary>
-    [TestClass()]
+    [TestClass]
     public class RequestFailureMessageTest : TestBase
     {
         /// <summary>
         ///A test for RequestFailureMessage Constructor
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void RequestFailureMessageConstructorTest()
         {
             RequestFailureMessage target = new RequestFailureMessage();

+ 5 - 3
src/Renci.SshNet.Tests/Classes/Messages/Connection/RequestSuccessMessageTest.cs

@@ -9,13 +9,14 @@ namespace Renci.SshNet.Tests.Classes.Messages.Connection
     ///This is a test class for RequestSuccessMessageTest and is intended
     ///to contain all RequestSuccessMessageTest Unit Tests
     ///</summary>
-    [TestClass()]
+    [TestClass]
     public class RequestSuccessMessageTest : TestBase
     {
         /// <summary>
         ///A test for RequestSuccessMessage Constructor
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void RequestSuccessMessageConstructorTest()
         {
             RequestSuccessMessage target = new RequestSuccessMessage();
@@ -25,7 +26,8 @@ namespace Renci.SshNet.Tests.Classes.Messages.Connection
         /// <summary>
         ///A test for RequestSuccessMessage Constructor
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void RequestSuccessMessageConstructorTest1()
         {
             uint boundPort = 0; // TODO: Initialize to an appropriate value

+ 8 - 7
src/Renci.SshNet.Tests/Classes/Messages/MessageAttributeTest.cs

@@ -15,7 +15,8 @@ namespace Renci.SshNet.Tests.Classes.Messages
         /// <summary>
         ///A test for MessageAttribute Constructor
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void MessageAttributeConstructorTest()
         {
             string name = string.Empty; // TODO: Initialize to an appropriate value
@@ -27,16 +28,16 @@ namespace Renci.SshNet.Tests.Classes.Messages
         /// <summary>
         ///A test for Name
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void NameTest()
         {
             string name = string.Empty; // TODO: Initialize to an appropriate value
             byte number = 0; // TODO: Initialize to an appropriate value
             MessageAttribute target = new MessageAttribute(name, number); // TODO: Initialize to an appropriate value
             string expected = string.Empty; // TODO: Initialize to an appropriate value
-            string actual;
             target.Name = expected;
-            actual = target.Name;
+            var actual = target.Name;
             Assert.AreEqual(expected, actual);
             Assert.Inconclusive("Verify the correctness of this test method.");
         }
@@ -44,16 +45,16 @@ namespace Renci.SshNet.Tests.Classes.Messages
         /// <summary>
         ///A test for Number
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void NumberTest()
         {
             string name = string.Empty; // TODO: Initialize to an appropriate value
             byte number = 0; // TODO: Initialize to an appropriate value
             MessageAttribute target = new MessageAttribute(name, number); // TODO: Initialize to an appropriate value
             byte expected = 0; // TODO: Initialize to an appropriate value
-            byte actual;
             target.Number = expected;
-            actual = target.Number;
+            var actual = target.Number;
             Assert.AreEqual(expected, actual);
             Assert.Inconclusive("Verify the correctness of this test method.");
         }

+ 4 - 6
src/Renci.SshNet.Tests/Classes/Messages/MessageTest.cs

@@ -23,13 +23,12 @@ namespace Renci.SshNet.Tests.Classes.Messages
         /// <summary>
         ///A test for GetBytes
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
         public void GetBytesTest()
         {
             Message target = CreateMessage(); // TODO: Initialize to an appropriate value
             byte[] expected = null; // TODO: Initialize to an appropriate value
-            byte[] actual;
-            actual = target.GetBytes();
+            var actual = target.GetBytes();
             Assert.AreEqual(expected, actual);
             Assert.Inconclusive("Verify the correctness of this test method.");
         }
@@ -37,13 +36,12 @@ namespace Renci.SshNet.Tests.Classes.Messages
         /// <summary>
         ///A test for ToString
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
         public void ToStringTest()
         {
             Message target = CreateMessage(); // TODO: Initialize to an appropriate value
             string expected = string.Empty; // TODO: Initialize to an appropriate value
-            string actual;
-            actual = target.ToString();
+            var actual = target.ToString();
             Assert.AreEqual(expected, actual);
             Assert.Inconclusive("Verify the correctness of this test method.");
         }

+ 3 - 3
src/Renci.SshNet.Tests/Classes/Messages/Transport/DebugMessageTest.cs

@@ -1,6 +1,5 @@
 using Renci.SshNet.Messages.Transport;
 using Microsoft.VisualStudio.TestTools.UnitTesting;
-using System;
 using Renci.SshNet.Tests.Common;
 
 namespace Renci.SshNet.Tests.Classes.Messages.Transport
@@ -9,13 +8,14 @@ namespace Renci.SshNet.Tests.Classes.Messages.Transport
     ///This is a test class for DebugMessageTest and is intended
     ///to contain all DebugMessageTest Unit Tests
     ///</summary>
-    [TestClass()]
+    [TestClass]
     public class DebugMessageTest : TestBase
     {
         /// <summary>
         ///A test for DebugMessage Constructor
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void DebugMessageConstructorTest()
         {
             DebugMessage target = new DebugMessage();

+ 5 - 3
src/Renci.SshNet.Tests/Classes/Messages/Transport/DisconnectMessageTest.cs

@@ -9,13 +9,14 @@ namespace Renci.SshNet.Tests.Classes.Messages.Transport
     ///This is a test class for DisconnectMessageTest and is intended
     ///to contain all DisconnectMessageTest Unit Tests
     ///</summary>
-    [TestClass()]
+    [TestClass]
     public class DisconnectMessageTest : TestBase
     {
         /// <summary>
         ///A test for DisconnectMessage Constructor
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void DisconnectMessageConstructorTest()
         {
             DisconnectMessage target = new DisconnectMessage();
@@ -25,7 +26,8 @@ namespace Renci.SshNet.Tests.Classes.Messages.Transport
         /// <summary>
         ///A test for DisconnectMessage Constructor
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void DisconnectMessageConstructorTest1()
         {
             DisconnectReason reasonCode = new DisconnectReason(); // TODO: Initialize to an appropriate value

+ 3 - 2
src/Renci.SshNet.Tests/Classes/Messages/Transport/KeyExchangeDhGroupExchangeGroupTest.cs

@@ -9,13 +9,14 @@ namespace Renci.SshNet.Tests.Classes.Messages.Transport
     ///This is a test class for KeyExchangeDhGroupExchangeGroupTest and is intended
     ///to contain all KeyExchangeDhGroupExchangeGroupTest Unit Tests
     ///</summary>
-    [TestClass()]
+    [TestClass]
     public class KeyExchangeDhGroupExchangeGroupTest : TestBase
     {
         /// <summary>
         ///A test for KeyExchangeDhGroupExchangeGroup Constructor
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void KeyExchangeDhGroupExchangeGroupConstructorTest()
         {
             KeyExchangeDhGroupExchangeGroup target = new KeyExchangeDhGroupExchangeGroup();

+ 3 - 2
src/Renci.SshNet.Tests/Classes/Messages/Transport/KeyExchangeDhReplyMessageTest.cs

@@ -9,13 +9,14 @@ namespace Renci.SshNet.Tests.Classes.Messages.Transport
     ///This is a test class for KeyExchangeDhReplyMessageTest and is intended
     ///to contain all KeyExchangeDhReplyMessageTest Unit Tests
     ///</summary>
-    [TestClass()]
+    [TestClass]
     public class KeyExchangeDhReplyMessageTest : TestBase
     {
         /// <summary>
         ///A test for KeyExchangeDhReplyMessage Constructor
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void KeyExchangeDhReplyMessageConstructorTest()
         {
             KeyExchangeDhReplyMessage target = new KeyExchangeDhReplyMessage();

+ 38 - 37
src/Renci.SshNet.Tests/Classes/Messages/Transport/KeyExchangeInitMessageTest.cs

@@ -68,7 +68,8 @@ namespace Renci.SshNet.Tests.Classes.Messages.Transport
         /// <summary>
         ///A test for KeyExchangeInitMessage Constructor
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void KeyExchangeInitMessageConstructorTest()
         {
             KeyExchangeInitMessage target = new KeyExchangeInitMessage();
@@ -78,14 +79,14 @@ namespace Renci.SshNet.Tests.Classes.Messages.Transport
         /// <summary>
         ///A test for CompressionAlgorithmsClientToServer
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void CompressionAlgorithmsClientToServerTest()
         {
             KeyExchangeInitMessage target = new KeyExchangeInitMessage(); // TODO: Initialize to an appropriate value
             string[] expected = null; // TODO: Initialize to an appropriate value
-            string[] actual;
             target.CompressionAlgorithmsClientToServer = expected;
-            actual = target.CompressionAlgorithmsClientToServer;
+            var actual = target.CompressionAlgorithmsClientToServer;
             Assert.AreEqual(expected, actual);
             Assert.Inconclusive("Verify the correctness of this test method.");
         }
@@ -93,14 +94,14 @@ namespace Renci.SshNet.Tests.Classes.Messages.Transport
         /// <summary>
         ///A test for CompressionAlgorithmsServerToClient
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void CompressionAlgorithmsServerToClientTest()
         {
             KeyExchangeInitMessage target = new KeyExchangeInitMessage(); // TODO: Initialize to an appropriate value
             string[] expected = null; // TODO: Initialize to an appropriate value
-            string[] actual;
             target.CompressionAlgorithmsServerToClient = expected;
-            actual = target.CompressionAlgorithmsServerToClient;
+            var actual = target.CompressionAlgorithmsServerToClient;
             Assert.AreEqual(expected, actual);
             Assert.Inconclusive("Verify the correctness of this test method.");
         }
@@ -108,14 +109,14 @@ namespace Renci.SshNet.Tests.Classes.Messages.Transport
         /// <summary>
         ///A test for EncryptionAlgorithmsClientToServer
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void EncryptionAlgorithmsClientToServerTest()
         {
             KeyExchangeInitMessage target = new KeyExchangeInitMessage(); // TODO: Initialize to an appropriate value
             string[] expected = null; // TODO: Initialize to an appropriate value
-            string[] actual;
             target.EncryptionAlgorithmsClientToServer = expected;
-            actual = target.EncryptionAlgorithmsClientToServer;
+            var actual = target.EncryptionAlgorithmsClientToServer;
             Assert.AreEqual(expected, actual);
             Assert.Inconclusive("Verify the correctness of this test method.");
         }
@@ -123,14 +124,14 @@ namespace Renci.SshNet.Tests.Classes.Messages.Transport
         /// <summary>
         ///A test for EncryptionAlgorithmsServerToClient
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void EncryptionAlgorithmsServerToClientTest()
         {
             KeyExchangeInitMessage target = new KeyExchangeInitMessage(); // TODO: Initialize to an appropriate value
             string[] expected = null; // TODO: Initialize to an appropriate value
-            string[] actual;
             target.EncryptionAlgorithmsServerToClient = expected;
-            actual = target.EncryptionAlgorithmsServerToClient;
+            var actual = target.EncryptionAlgorithmsServerToClient;
             Assert.AreEqual(expected, actual);
             Assert.Inconclusive("Verify the correctness of this test method.");
         }
@@ -138,14 +139,14 @@ namespace Renci.SshNet.Tests.Classes.Messages.Transport
         /// <summary>
         ///A test for FirstKexPacketFollows
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void FirstKexPacketFollowsTest()
         {
             KeyExchangeInitMessage target = new KeyExchangeInitMessage(); // TODO: Initialize to an appropriate value
             bool expected = false; // TODO: Initialize to an appropriate value
-            bool actual;
             target.FirstKexPacketFollows = expected;
-            actual = target.FirstKexPacketFollows;
+            var actual = target.FirstKexPacketFollows;
             Assert.AreEqual(expected, actual);
             Assert.Inconclusive("Verify the correctness of this test method.");
         }
@@ -153,14 +154,14 @@ namespace Renci.SshNet.Tests.Classes.Messages.Transport
         /// <summary>
         ///A test for KeyExchangeAlgorithms
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void KeyExchangeAlgorithmsTest()
         {
             KeyExchangeInitMessage target = new KeyExchangeInitMessage(); // TODO: Initialize to an appropriate value
             string[] expected = null; // TODO: Initialize to an appropriate value
-            string[] actual;
             target.KeyExchangeAlgorithms = expected;
-            actual = target.KeyExchangeAlgorithms;
+            var actual = target.KeyExchangeAlgorithms;
             Assert.AreEqual(expected, actual);
             Assert.Inconclusive("Verify the correctness of this test method.");
         }
@@ -168,14 +169,14 @@ namespace Renci.SshNet.Tests.Classes.Messages.Transport
         /// <summary>
         ///A test for LanguagesClientToServer
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void LanguagesClientToServerTest()
         {
             KeyExchangeInitMessage target = new KeyExchangeInitMessage(); // TODO: Initialize to an appropriate value
             string[] expected = null; // TODO: Initialize to an appropriate value
-            string[] actual;
             target.LanguagesClientToServer = expected;
-            actual = target.LanguagesClientToServer;
+            var actual = target.LanguagesClientToServer;
             Assert.AreEqual(expected, actual);
             Assert.Inconclusive("Verify the correctness of this test method.");
         }
@@ -183,14 +184,14 @@ namespace Renci.SshNet.Tests.Classes.Messages.Transport
         /// <summary>
         ///A test for LanguagesServerToClient
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void LanguagesServerToClientTest()
         {
             KeyExchangeInitMessage target = new KeyExchangeInitMessage(); // TODO: Initialize to an appropriate value
             string[] expected = null; // TODO: Initialize to an appropriate value
-            string[] actual;
             target.LanguagesServerToClient = expected;
-            actual = target.LanguagesServerToClient;
+            var actual = target.LanguagesServerToClient;
             Assert.AreEqual(expected, actual);
             Assert.Inconclusive("Verify the correctness of this test method.");
         }
@@ -198,14 +199,14 @@ namespace Renci.SshNet.Tests.Classes.Messages.Transport
         /// <summary>
         ///A test for MacAlgorithmsClientToServer
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void MacAlgorithmsClientToServerTest()
         {
             KeyExchangeInitMessage target = new KeyExchangeInitMessage(); // TODO: Initialize to an appropriate value
             string[] expected = null; // TODO: Initialize to an appropriate value
-            string[] actual;
             target.MacAlgorithmsClientToServer = expected;
-            actual = target.MacAlgorithmsClientToServer;
+            var actual = target.MacAlgorithmsClientToServer;
             Assert.AreEqual(expected, actual);
             Assert.Inconclusive("Verify the correctness of this test method.");
         }
@@ -213,14 +214,14 @@ namespace Renci.SshNet.Tests.Classes.Messages.Transport
         /// <summary>
         ///A test for MacAlgorithmsServerToClient
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void MacAlgorithmsServerToClientTest()
         {
             KeyExchangeInitMessage target = new KeyExchangeInitMessage(); // TODO: Initialize to an appropriate value
             string[] expected = null; // TODO: Initialize to an appropriate value
-            string[] actual;
             target.MacAlgorithmsServerToClient = expected;
-            actual = target.MacAlgorithmsServerToClient;
+            var actual = target.MacAlgorithmsServerToClient;
             Assert.AreEqual(expected, actual);
             Assert.Inconclusive("Verify the correctness of this test method.");
         }
@@ -228,14 +229,14 @@ namespace Renci.SshNet.Tests.Classes.Messages.Transport
         /// <summary>
         ///A test for Reserved
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void ReservedTest()
         {
             KeyExchangeInitMessage target = new KeyExchangeInitMessage(); // TODO: Initialize to an appropriate value
             uint expected = 0; // TODO: Initialize to an appropriate value
-            uint actual;
             target.Reserved = expected;
-            actual = target.Reserved;
+            var actual = target.Reserved;
             Assert.AreEqual(expected, actual);
             Assert.Inconclusive("Verify the correctness of this test method.");
         }
@@ -243,14 +244,14 @@ namespace Renci.SshNet.Tests.Classes.Messages.Transport
         /// <summary>
         ///A test for ServerHostKeyAlgorithms
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void ServerHostKeyAlgorithmsTest()
         {
             KeyExchangeInitMessage target = new KeyExchangeInitMessage(); // TODO: Initialize to an appropriate value
             string[] expected = null; // TODO: Initialize to an appropriate value
-            string[] actual;
             target.ServerHostKeyAlgorithms = expected;
-            actual = target.ServerHostKeyAlgorithms;
+            var actual = target.ServerHostKeyAlgorithms;
             Assert.AreEqual(expected, actual);
             Assert.Inconclusive("Verify the correctness of this test method.");
         }

+ 3 - 2
src/Renci.SshNet.Tests/Classes/Messages/Transport/NewKeysMessageTest.cs

@@ -9,13 +9,14 @@ namespace Renci.SshNet.Tests.Classes.Messages.Transport
     ///This is a test class for NewKeysMessageTest and is intended
     ///to contain all NewKeysMessageTest Unit Tests
     ///</summary>
-    [TestClass()]
+    [TestClass]
     public class NewKeysMessageTest : TestBase
     {
         /// <summary>
         ///A test for NewKeysMessage Constructor
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void NewKeysMessageConstructorTest()
         {
             NewKeysMessage target = new NewKeysMessage();

+ 3 - 2
src/Renci.SshNet.Tests/Classes/Messages/Transport/ServiceAcceptMessageTest.cs

@@ -8,13 +8,14 @@ namespace Renci.SshNet.Tests.Classes.Messages.Transport
     ///This is a test class for ServiceAcceptMessageTest and is intended
     ///to contain all ServiceAcceptMessageTest Unit Tests
     ///</summary>
-    [TestClass()]
+    [TestClass]
     public class ServiceAcceptMessageTest
     {
         /// <summary>
         ///A test for ServiceAcceptMessage Constructor
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void ServiceAcceptMessageConstructorTest()
         {
             ServiceAcceptMessage target = new ServiceAcceptMessage();

+ 3 - 2
src/Renci.SshNet.Tests/Classes/Messages/Transport/ServiceRequestMessageTest.cs

@@ -9,13 +9,14 @@ namespace Renci.SshNet.Tests.Classes.Messages.Transport
     ///This is a test class for ServiceRequestMessageTest and is intended
     ///to contain all ServiceRequestMessageTest Unit Tests
     ///</summary>
-    [TestClass()]
+    [TestClass]
     public class ServiceRequestMessageTest
     {
         /// <summary>
         ///A test for ServiceRequestMessage Constructor
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void ServiceRequestMessageConstructorTest()
         {
             ServiceName serviceName = new ServiceName(); // TODO: Initialize to an appropriate value

+ 3 - 2
src/Renci.SshNet.Tests/Classes/Messages/Transport/UnimplementedMessageTest.cs

@@ -9,13 +9,14 @@ namespace Renci.SshNet.Tests.Classes.Messages.Transport
     ///This is a test class for UnimplementedMessageTest and is intended
     ///to contain all UnimplementedMessageTest Unit Tests
     ///</summary>
-    [TestClass()]
+    [TestClass]
     public class UnimplementedMessageTest : TestBase
     {
         /// <summary>
         ///A test for UnimplementedMessage Constructor
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void UnimplementedMessageConstructorTest()
         {
             UnimplementedMessage target = new UnimplementedMessage();

+ 1 - 0
src/Renci.SshNet.Tests/Classes/Security/CertificateHostAlgorithmTest.cs

@@ -15,6 +15,7 @@ namespace Renci.SshNet.Tests.Classes.Security
         ///A test for CertificateHostAlgorithm Constructor
         ///</summary>
         [TestMethod]
+        [Ignore] // placeholder
         public void CertificateHostAlgorithmConstructorTest()
         {
             string name = string.Empty; // TODO: Initialize to an appropriate value

+ 3 - 2
src/Renci.SshNet.Tests/Classes/Security/Cryptography/Ciphers/Paddings/PKCS5PaddingTest.cs

@@ -8,7 +8,7 @@ namespace Renci.SshNet.Tests.Classes.Security.Cryptography.Ciphers.Paddings
     ///This is a test class for PKCS5PaddingTest and is intended
     ///to contain all PKCS5PaddingTest Unit Tests
     ///</summary>
-    [TestClass()]
+    [TestClass]
     public class PKCS5PaddingTest : TestBase
     {
         /// <summary>
@@ -31,7 +31,8 @@ namespace Renci.SshNet.Tests.Classes.Security.Cryptography.Ciphers.Paddings
         /// <summary>
         ///A test for PKCS5Padding Constructor
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void PKCS5PaddingConstructorTest()
         {
             PKCS5Padding target = new PKCS5Padding();

+ 2 - 1
src/Renci.SshNet.Tests/Classes/Security/Cryptography/Ciphers/Paddings/PKCS7PaddingTest.cs

@@ -31,7 +31,8 @@ namespace Renci.SshNet.Tests.Classes.Security.Cryptography.Ciphers.Paddings
         /// <summary>
         ///A test for PKCS7Padding Constructor
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void PKCS7PaddingConstructorTest()
         {
             PKCS7Padding target = new PKCS7Padding();

+ 19 - 10
src/Renci.SshNet.Tests/Classes/Security/Cryptography/DsaKeyTest.cs

@@ -9,13 +9,14 @@ namespace Renci.SshNet.Tests.Classes.Security.Cryptography
     ///This is a test class for DsaKeyTest and is intended
     ///to contain all DsaKeyTest Unit Tests
     ///</summary>
-    [TestClass()]
+    [TestClass]
     public class DsaKeyTest : TestBase
     {
         /// <summary>
         ///A test for DsaKey Constructor
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder for actual test
         public void DsaKeyConstructorTest()
         {
             DsaKey target = new DsaKey();
@@ -37,7 +38,8 @@ namespace Renci.SshNet.Tests.Classes.Security.Cryptography
         /// <summary>
         ///A test for DsaKey Constructor
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder for actual test
         public void DsaKeyConstructorTest2()
         {
             BigInteger p = new BigInteger(); // TODO: Initialize to an appropriate value
@@ -52,7 +54,8 @@ namespace Renci.SshNet.Tests.Classes.Security.Cryptography
         /// <summary>
         ///A test for Dispose
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder for actual test
         public void DisposeTest()
         {
             DsaKey target = new DsaKey(); // TODO: Initialize to an appropriate value
@@ -63,7 +66,8 @@ namespace Renci.SshNet.Tests.Classes.Security.Cryptography
         /// <summary>
         ///A test for G
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder for actual test
         public void GTest()
         {
             DsaKey target = new DsaKey(); // TODO: Initialize to an appropriate value
@@ -75,7 +79,8 @@ namespace Renci.SshNet.Tests.Classes.Security.Cryptography
         /// <summary>
         ///A test for KeyLength
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder for actual test
         public void KeyLengthTest()
         {
             DsaKey target = new DsaKey(); // TODO: Initialize to an appropriate value
@@ -87,7 +92,8 @@ namespace Renci.SshNet.Tests.Classes.Security.Cryptography
         /// <summary>
         ///A test for P
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder for actual test
         public void PTest()
         {
             DsaKey target = new DsaKey(); // TODO: Initialize to an appropriate value
@@ -115,7 +121,8 @@ namespace Renci.SshNet.Tests.Classes.Security.Cryptography
         /// <summary>
         ///A test for Q
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder for actual test
         public void QTest()
         {
             DsaKey target = new DsaKey(); // TODO: Initialize to an appropriate value
@@ -127,7 +134,8 @@ namespace Renci.SshNet.Tests.Classes.Security.Cryptography
         /// <summary>
         ///A test for X
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder for actual test
         public void XTest()
         {
             DsaKey target = new DsaKey(); // TODO: Initialize to an appropriate value
@@ -139,7 +147,8 @@ namespace Renci.SshNet.Tests.Classes.Security.Cryptography
         /// <summary>
         ///A test for Y
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder for actual test
         public void YTest()
         {
             DsaKey target = new DsaKey(); // TODO: Initialize to an appropriate value

+ 7 - 4
src/Renci.SshNet.Tests/Classes/Security/KeyExchangeDiffieHellmanGroup1Sha1Test.cs

@@ -9,13 +9,14 @@ namespace Renci.SshNet.Tests.Classes.Security
     ///This is a test class for KeyExchangeDiffieHellmanGroup1Sha1Test and is intended
     ///to contain all KeyExchangeDiffieHellmanGroup1Sha1Test Unit Tests
     ///</summary>
-    [TestClass()]
+    [TestClass]
     public class KeyExchangeDiffieHellmanGroup1Sha1Test : TestBase
     {
         /// <summary>
         ///A test for KeyExchangeDiffieHellmanGroup1Sha1 Constructor
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder for actual test
         public void KeyExchangeDiffieHellmanGroup1Sha1ConstructorTest()
         {
             KeyExchangeDiffieHellmanGroup1Sha1 target = new KeyExchangeDiffieHellmanGroup1Sha1();
@@ -25,7 +26,8 @@ namespace Renci.SshNet.Tests.Classes.Security
         /// <summary>
         ///A test for GroupPrime
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder for actual test
         public void GroupPrimeTest()
         {
             KeyExchangeDiffieHellmanGroup1Sha1 target = new KeyExchangeDiffieHellmanGroup1Sha1(); // TODO: Initialize to an appropriate value
@@ -37,7 +39,8 @@ namespace Renci.SshNet.Tests.Classes.Security
         /// <summary>
         ///A test for Name
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder for actual test
         public void NameTest()
         {
             KeyExchangeDiffieHellmanGroup1Sha1 target = new KeyExchangeDiffieHellmanGroup1Sha1(); // TODO: Initialize to an appropriate value

+ 5 - 3
src/Renci.SshNet.Tests/Classes/Security/KeyExchangeDiffieHellmanGroupExchangeSha256Test.cs

@@ -9,13 +9,14 @@ namespace Renci.SshNet.Tests.Classes.Security
     ///This is a test class for KeyExchangeDiffieHellmanGroupExchangeSha256Test and is intended
     ///to contain all KeyExchangeDiffieHellmanGroupExchangeSha256Test Unit Tests
     ///</summary>
-    [TestClass()]
+    [TestClass]
     public class KeyExchangeDiffieHellmanGroupExchangeSha256Test : TestBase
     {
         /// <summary>
         ///A test for KeyExchangeDiffieHellmanGroupExchangeSha256 Constructor
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder for actual test
         public void KeyExchangeDiffieHellmanGroupExchangeSha256ConstructorTest()
         {
             KeyExchangeDiffieHellmanGroupExchangeSha256 target = new KeyExchangeDiffieHellmanGroupExchangeSha256();
@@ -51,7 +52,8 @@ namespace Renci.SshNet.Tests.Classes.Security
         /// <summary>
         ///A test for Name
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder for actual test
         public void NameTest()
         {
             KeyExchangeDiffieHellmanGroupExchangeSha256 target = new KeyExchangeDiffieHellmanGroupExchangeSha256(); // TODO: Initialize to an appropriate value

+ 3 - 2
src/Renci.SshNet.Tests/Classes/Sftp/SftpDownloadAsyncResultTest.cs

@@ -9,13 +9,14 @@ namespace Renci.SshNet.Tests.Classes.Sftp
     ///This is a test class for SftpDownloadAsyncResultTest and is intended
     ///to contain all SftpDownloadAsyncResultTest Unit Tests
     ///</summary>
-    [TestClass()]
+    [TestClass]
     public class SftpDownloadAsyncResultTest : TestBase
     {
         /// <summary>
         ///A test for SftpDownloadAsyncResult Constructor
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void SftpDownloadAsyncResultConstructorTest()
         {
             AsyncCallback asyncCallback = null; // TODO: Initialize to an appropriate value

+ 5 - 3
src/Renci.SshNet.Tests/Classes/Sftp/SftpFileSystemInformationTest.cs

@@ -8,13 +8,14 @@ namespace Renci.SshNet.Tests.Classes.Sftp
     ///This is a test class for SftpFileSytemInformationTest and is intended
     ///to contain all SftpFileSytemInformationTest Unit Tests
     ///</summary>
-    [TestClass()]
+    [TestClass]
     public class SftpFileSystemInformationTest : TestBase
     {
         /// <summary>
         ///A test for IsReadOnly
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void IsReadOnlyTest()
         {
             ulong bsize = 0; // TODO: Initialize to an appropriate value
@@ -37,7 +38,8 @@ namespace Renci.SshNet.Tests.Classes.Sftp
         /// <summary>
         ///A test for SupportsSetUid
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void SupportsSetUidTest()
         {
             ulong bsize = 0; // TODO: Initialize to an appropriate value

+ 3 - 2
src/Renci.SshNet.Tests/Classes/Sftp/SftpSynchronizeDirectoriesAsyncResultTest.cs

@@ -9,13 +9,14 @@ namespace Renci.SshNet.Tests.Classes.Sftp
     ///This is a test class for SftpSynchronizeDirectoriesAsyncResultTest and is intended
     ///to contain all SftpSynchronizeDirectoriesAsyncResultTest Unit Tests
     ///</summary>
-    [TestClass()]
+    [TestClass]
     public class SftpSynchronizeDirectoriesAsyncResultTest : TestBase
     {
         /// <summary>
         ///A test for SftpSynchronizeDirectoriesAsyncResult Constructor
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void SftpSynchronizeDirectoriesAsyncResultConstructorTest()
         {
             AsyncCallback asyncCallback = null; // TODO: Initialize to an appropriate value

+ 3 - 2
src/Renci.SshNet.Tests/Classes/Sftp/SftpUploadAsyncResultTest.cs

@@ -9,13 +9,14 @@ namespace Renci.SshNet.Tests.Classes.Sftp
     ///This is a test class for SftpUploadAsyncResultTest and is intended
     ///to contain all SftpUploadAsyncResultTest Unit Tests
     ///</summary>
-    [TestClass()]
+    [TestClass]
     public class SftpUploadAsyncResultTest : TestBase
     {
         /// <summary>
         ///A test for SftpUploadAsyncResult Constructor
         ///</summary>
-        [TestMethod()]
+        [TestMethod]
+        [Ignore] // placeholder
         public void SftpUploadAsyncResultConstructorTest()
         {
             AsyncCallback asyncCallback = null; // TODO: Initialize to an appropriate value