public void AddSimplePath_Test() { string path = "D:\\"; FileListView fileListView = new FileListView(); fileListView.AddFilesView(path); }
public void AddNullPath_Test() { string path = null; FileListView fileListView = new FileListView(); fileListView.AddFilesView(path); }