2
0

ObjectIdentifierTest.cs 913 B

123456789101112131415161718192021222324252627
  1. using Renci.SshNet.Common;
  2. using Microsoft.VisualStudio.TestTools.UnitTesting;
  3. using System;
  4. using Renci.SshNet.Tests.Common;
  5. namespace Renci.SshNet.Tests.Classes.Common
  6. {
  7. /// <summary>
  8. ///This is a test class for ObjectIdentifierTest and is intended
  9. ///to contain all ObjectIdentifierTest Unit Tests
  10. ///</summary>
  11. [TestClass()]
  12. [Ignore] // placeholder for actual test
  13. public class ObjectIdentifierTest : TestBase
  14. {
  15. /// <summary>
  16. ///A test for ObjectIdentifier Constructor
  17. ///</summary>
  18. [TestMethod()]
  19. public void ObjectIdentifierConstructorTest()
  20. {
  21. ulong[] identifiers = null; // TODO: Initialize to an appropriate value
  22. ObjectIdentifier target = new ObjectIdentifier(identifiers);
  23. Assert.Inconclusive("TODO: Implement code to verify target");
  24. }
  25. }
  26. }