public void Test_ctor2()
        {
            var instance = new TSValue(DateTime.Now, 12345f);

            Assert.IsNotNull(instance);
        }
        public void Test_ctor()
        {
            var instance = new TSValue();

            Assert.IsNotNull(instance);
        }