Пример #1
0
        public void Validate_FromJavaMilliseconds(Int64 testValue)
        {
            DateTime timestamp        = DateConverter.FromEpochMilliseconds(testValue);
            Int64    javaMilliseconds = DateConverter.ToEpochMilliseconds(timestamp);

            Assert.IsTrue(javaMilliseconds == testValue);
        }