Example #1
0
        public void GetSimpleFileFolderName_Test()
        {
            string path = "D:\\";

            FoldersTreeView.GetFileFolderName(path);
        }
Example #2
0
        public void GetWithoutBackslashFileFolderName_Test()
        {
            string path = "D:";

            FoldersTreeView.GetFileFolderName(path);
        }
Example #3
0
        public void GetNullFileFolderName_Test()
        {
            string path = null;

            FoldersTreeView.GetFileFolderName(path);
        }