-
-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e0ad2ae
commit 582348c
Showing
2 changed files
with
10 additions
and
12 deletions.
There are no files selected for viewing
11 changes: 5 additions & 6 deletions
11
src/ApprovalTests/Reporters/TestFrameworks/NUnit3Reporter.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,10 @@ | ||
namespace ApprovalTests.Reporters.TestFrameworks; | ||
|
||
public class NUnit3Reporter : AssertReporter | ||
public class NUnit3Reporter() : | ||
AssertReporter( | ||
"NUnit.Framework.Assert, nunit.framework", | ||
"AreEqual", | ||
NUnitStackTraceParser.Attribute) | ||
{ | ||
public readonly static NUnit3Reporter INSTANCE = new(); | ||
|
||
public NUnit3Reporter() | ||
: base("NUnit.Framework.Assert, nunit.framework", "AreEqual", NUnitStackTraceParser.Attribute) | ||
{ | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters