namespace Eulersharp.Output
{
///
/// This interface specifies the methods for reporting a proof
/// for a specific test case
///
public interface IProof
{
///
/// This method reports the proof for a specific test case
///
/// the name of the test case
/// the proof (if found)
void Proof(string testCase, string proof);
}
}