Skip to content

Commit 4e59e67

Browse files
committed
Add a parameterless ctor
1 parent bf43151 commit 4e59e67

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/NUnitTestAdapter/NUnit3TestExecutor.cs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,12 @@ public sealed class NUnit3TestExecutor : NUnitTestAdapter, ITestExecutor, IDispo
8888

8989
#endregion
9090

91-
public NUnit3TestExecutor(bool isMTP = false)
91+
public NUnit3TestExecutor()
92+
: this(false)
93+
{
94+
}
95+
96+
internal NUnit3TestExecutor(bool isMTP)
9297
{
9398
IsMTP = isMTP;
9499
}

0 commit comments

Comments
 (0)