public void testFormatierungFalscheEingaben() { Formatierung f = new Formatierung(); var res = f.formatiere("##", "jhy"); Assert.AreEqual(String.Empty, res); }
public void testFormatierungLeereEingaben() { Formatierung f = new Formatierung(); var res = f.formatiere("", ""); Assert.AreEqual(String.Empty, res); }
public void testFormatierung() { Formatierung f = new Formatierung(); var res = f.formatiere("+49 (8024) [990-477]", "DE"); Assert.AreEqual("+49 8024 990477", res); }