Skip to content

Instantly share code, notes, and snippets.

@einarwh
Created June 14, 2012 20:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save einarwh/2932796 to your computer and use it in GitHub Desktop.
Save einarwh/2932796 to your computer and use it in GitHub Desktop.
Represents the result of some number of tests.
namespace Mjunit
{
public interface ITestResult
{
string Name { get; }
TestOutcome Outcome { get; }
int NumberOfTests { get; }
int NumberOfTestsPassed { get; }
int NumberOfTestsFailed { get; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment