コード例 #1
0
        public void FormattedTimeTest()
        {
            TimeSpan ts       = new TimeSpan(0, 1, 2, 3, 44);
            string   expected = "01:02:03.044";
            string   actual;

            actual = Timing.FormattedTime(ts);
            Assert.AreEqual(expected, actual);
        }