Created
January 14, 2013 03:35
-
-
Save droyad/4527604 to your computer and use it in GitHub Desktop.
Support for NUnit's TestCase 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
public class NUnitTestCaseStackTraceParser : AttributeStackTraceParser | |
{ | |
protected override string GetAttributeType() | |
{ | |
return typeof(TestCaseAttribute).FullName; | |
} | |
public override string ForTestingFramework | |
{ | |
get { return "NUnit"; } | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment