Skip to content

Commit

Permalink
Add a parameterless ctor
Browse files Browse the repository at this point in the history
  • Loading branch information
Evangelink committed Feb 3, 2025
1 parent bf43151 commit 4e59e67
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/NUnitTestAdapter/NUnit3TestExecutor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,12 @@ public sealed class NUnit3TestExecutor : NUnitTestAdapter, ITestExecutor, IDispo

#endregion

public NUnit3TestExecutor(bool isMTP = false)
public NUnit3TestExecutor()
: this(false)
{
}

internal NUnit3TestExecutor(bool isMTP)
{
IsMTP = isMTP;
}
Expand Down

0 comments on commit 4e59e67

Please sign in to comment.