Example #1
0
        private static TimeUUIDType ConvertFrom(object o)
        {
            var type = new TimeUUIDType();

            type.SetValue(o);
            return(type);
        }
Example #2
0
        public void JavaBytes_To_Guid()
        {
            // arrange

            // act
            TimeUUIDType actual = new TimeUUIDType();

            actual.SetValue(javaByteOrder);

            // assert
            Assert.AreEqual(guid, (Guid)actual);
        }