namespace Eulersharp.Output
{
///
/// This interface specifies methods for reporting the
/// result of a test case
///
public interface IResult
{
///
/// This method reports the result of a test case
///
/// the name of the test case
/// the result of the test case
void Result(string testCase, string result);
}
}