Skip to content

Instantly share code, notes, and snippets.

@droyad
Created January 14, 2013 03:35
Show Gist options
  • Save droyad/4527604 to your computer and use it in GitHub Desktop.
Save droyad/4527604 to your computer and use it in GitHub Desktop.
Support for NUnit's TestCase attribute
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