Nitra.ViewModels.TestSuiteVm.Remove C# (CSharp) Method

Remove() public method

public Remove ( ) : void
return void
    public void Remove()
    {
      var fullPath = TestFullPath(this.TestSuitePath);
      Solution.TestSuites.Remove(this);
      Solution.Save();
      if (Directory.Exists(fullPath))
        Directory.Delete(fullPath, true);
    }