Beispiel #1
0
        public void TestReformatPhoneNumber()
        {
            string S        = "00-44  48 5555 8361";
            string expected = "004-448-555-583-61";
            string actual   = Lessons.ReformatPhoneNumber(S);

            Assert.AreEqual(expected, actual);
        }