using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; namespace Deltares.Dam.TestHelper { public class IOHelper { /// /// Removes the test working directory. The working directory grows! /// /// public static void RemoveTestWorkingDirectory(string testWorkingFolder) { if (Directory.Exists(testWorkingFolder)) { const bool recursive = true; Directory.Delete(testWorkingFolder, recursive); } } } }