public void GetSimpleFileFolderName_Test() { string path = "D:\\"; FoldersTreeView.GetFileFolderName(path); }
public void GetWithoutBackslashFileFolderName_Test() { string path = "D:"; FoldersTreeView.GetFileFolderName(path); }
public void GetNullFileFolderName_Test() { string path = null; FoldersTreeView.GetFileFolderName(path); }