public void TestConvertNameWithMultipleConsecutiveDots()
        {
            string original = "test..doc";
            string cleaned  = m_converter.Convert(original);

            Assert.AreEqual("test.doc", cleaned);
        }
Esempio n. 2
0
 public void ConvertThrowsExceptionWhenValueIsNotAString()
 {
     _converter.Convert("-i", 0);
 }