Exemplo n.º 1
0
        public void GetSimpleFileFolderName_Test()
        {
            string path = "D:\\";

            FoldersTreeView.GetFileFolderName(path);
        }
Exemplo n.º 2
0
        public void GetWithoutBackslashFileFolderName_Test()
        {
            string path = "D:";

            FoldersTreeView.GetFileFolderName(path);
        }
Exemplo n.º 3
0
        public void GetNullFileFolderName_Test()
        {
            string path = null;

            FoldersTreeView.GetFileFolderName(path);
        }