~nunit-core/nunitv2/2.5

« back to all changes in this revision

Viewing changes to src/NUnitFramework/core/EventListener.cs

  • Committer: jnewkirk
  • Date: 2002-07-10 20:00:13 UTC
  • Revision ID: vcs-imports@canonical.com-20020710200013-j8us5mbi0usp7p02
initialĀ load

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
namespace Nunit.Core
 
2
{
 
3
        using System;
 
4
 
 
5
        /// <summary>
 
6
        /// Summary description for EventListener.
 
7
        /// </summary>
 
8
        public interface EventListener
 
9
        {
 
10
                void TestStarted(TestCase testCase);
 
11
                        
 
12
                void TestFinished(TestCaseResult result);
 
13
 
 
14
                void SuiteStarted(TestSuite suite);
 
15
 
 
16
                void SuiteFinished(TestSuiteResult result);
 
17
        }
 
18
}