ObjectIdentifierTest.cs 868 B

1234567891011121314151617181920212223242526
  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. public class ObjectIdentifierTest : TestBase
  13. {
  14. /// <summary>
  15. ///A test for ObjectIdentifier Constructor
  16. ///</summary>
  17. [TestMethod()]
  18. public void ObjectIdentifierConstructorTest()
  19. {
  20. ulong[] identifiers = null; // TODO: Initialize to an appropriate value
  21. ObjectIdentifier target = new ObjectIdentifier(identifiers);
  22. Assert.Inconclusive("TODO: Implement code to verify target");
  23. }
  24. }
  25. }