MongoDB.Driver.TestOid.TestDecode C# (CSharp) Method

TestDecode() private method

private TestDecode ( ) : void
return void
        public void TestDecode()
        {
            string hex = "4a7067c30a57000000008ecb";
            Oid oid = new Oid(hex);

            Assert.AreEqual("\"" + hex + "\"", oid.ToString());
        }