public void Add(string path)
        {
            Paths.Add(_stringFormatter.ShortFileString(path));

            // It's all?
        }
示例#2
0
        public void NullStringTest()
        {
            string path = null;

            Assert.Throws <NullReferenceException>(() => _stringFormatter.ShortFileString(path));
        }