public void Oid_GeneratorConstructorTest()
 {
     Oid.Generator target = new Oid.Generator();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
 public void GenerateTest()
 {
     Oid.Generator target = new Oid.Generator(); // TODO: Initialize to an appropriate value
     Oid expected = null; // TODO: Initialize to an appropriate value
     Oid actual;
     actual = target.Generate();
     actual.Should().Be(expected);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }