예제 #1
0
        public void SecondToStringReturnsExpectedStringForMinInt32()
        {
            const string expected = "";

            c.Second second = new c.Second(int.MinValue);

            Assert.AreEqual(expected, second.ToString());
        }
예제 #2
0
        public void SecondToStringReturnsExpectedString()
        {
            const string expected = "00:00:47";

            c.Second second = new c.Second(47);

            Assert.AreEqual(expected, second.ToString());
        }