public void Dispose() { // Make sure we cleanup any created ini file, as it will influence other tests var location = IniConfig.Current.IniLocation; if (location != null && File.Exists(location)) { File.Delete(location); } // Remove the IniConfig drom the IniConfig-store IniConfig.Delete("Dapplo", "dapplo"); }