Skip to content
This repository has been archived by the owner on May 17, 2021. It is now read-only.

Commit

Permalink
Code cleanup.
Browse files Browse the repository at this point in the history
  • Loading branch information
kharnagy committed Jul 2, 2015
1 parent 6d92593 commit cc61acb
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 31 deletions.
17 changes: 2 additions & 15 deletions NUnitActionEditor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@

namespace Inedo.BuildMasterExtensions.NUnit
{
/// <summary>
/// Custom editor for the NUnit action.
/// </summary>
internal sealed class NUnitActionEditor : ActionEditorBase
{
private SourceControlFileFolderPicker txtExePath;
Expand All @@ -21,21 +18,11 @@ internal sealed class NUnitActionEditor : ActionEditorBase
private ValidatingTextBox txtCustomXmlOutputPath;
private CheckBox chkTreatInconclusiveTestsAsFailure;

/// <summary>
/// Initializes a new instance of the <see cref="NUnitActionEditor"/> class.
/// </summary>
public NUnitActionEditor()
public override bool DisplaySourceDirectory
{
get { return true; }
}

/// <summary>
/// Gets a value indicating whether a textbox to edit the source directory should be displayed.
/// </summary>
/// <value>
/// <c>true</c> if a textbox to edit the source directory should be displayed; otherwise, <c>false</c>.
/// </value>
public override bool DisplaySourceDirectory { get { return true; } }

protected override void CreateChildControls()
{
Tables.Deployables_Extended deployable = null;
Expand Down
3 changes: 0 additions & 3 deletions NUnitAppAction.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,6 @@ namespace Inedo.BuildMasterExtensions.NUnit
[RequiresInterface(typeof(IFileOperationsExecuter))]
public sealed class NUnitAppAction : UnitTestActionBase
{
/// <summary>
/// Initializes a new instance of the <see cref="NUnitAppAction"/> class.
/// </summary>
public NUnitAppAction()
{
this.TreatInconclusiveAsFailure = true;
Expand Down
13 changes: 0 additions & 13 deletions NUnitConfigurer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,6 @@ namespace Inedo.BuildMasterExtensions.NUnit
{
public sealed class NUnitConfigurer : ExtensionConfigurerBase
{
/// <summary>
/// Initializes a new instance of the <see cref="NUnitConfigurer"/> class.
/// </summary>
public NUnitConfigurer()
{
}

/// <summary>
/// Gets or sets the path to nunit-console.exe.
/// </summary>
Expand All @@ -24,12 +17,6 @@ public NUnitConfigurer()
+ @"""C:\Program Files (x86)\NUnit 2.X.X\bin\nunit-console.exe")]
public string NUnitConsoleExePath { get; set; }

/// <summary>
/// Returns a <see cref="System.String" /> that represents this instance.
/// </summary>
/// <returns>
/// A <see cref="System.String" /> that represents this instance.
/// </returns>
public override string ToString()
{
return string.Empty;
Expand Down

0 comments on commit cc61acb

Please sign in to comment.