public void ToJulianTest()
        {
            DateTime dt       = new DateTime(); // TODO: Initialize to an appropriate value
            double   expected = 0F;             // TODO: Initialize to an appropriate value
            double   actual;

            actual = DateExtensionMethods.ToJulian(dt);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void ToValidShippingDateTest()
        {
            DateTime date     = new DateTime(); // TODO: Initialize to an appropriate value
            DateTime expected = new DateTime(); // TODO: Initialize to an appropriate value
            DateTime actual;

            actual = DateExtensionMethods.ToValidShippingDate(date);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void StartOfDayTest()
        {
            DateTime dt       = new DateTime(); // TODO: Initialize to an appropriate value
            DateTime expected = new DateTime(); // TODO: Initialize to an appropriate value
            DateTime actual;

            actual = DateExtensionMethods.StartOfDay(dt);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void ToStringTest1()
        {
            Nullable <DateTime> dt = new Nullable <DateTime>(); // TODO: Initialize to an appropriate value
            string expected        = string.Empty;              // TODO: Initialize to an appropriate value
            string actual;

            actual = DateExtensionMethods.ToString(dt);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }