public void TestConvertNameWithMultipleConsecutiveDots() { string original = "test..doc"; string cleaned = m_converter.Convert(original); Assert.AreEqual("test.doc", cleaned); }
public void ConvertThrowsExceptionWhenValueIsNotAString() { _converter.Convert("-i", 0); }