Ejemplo n.º 1
0
        public void GetPathToFileGivesCorrectPath()
        {
            const string testPath = "other/more/stuff/test/mock/file.txt";
            const string expected = "other/more/stuff/test/mock/";

            var result = NDirectory.GetPathParentDir(testPath);

            Assert.AreEqual(expected, result);
        }