1 // ****************************************************************
2 // Copyright 2007, Charlie Poole
3 // This is free software licensed under the NUnit license. You may
4 // obtain a copy of the license at http://nunit.org/?p=license&r=2.4
5 // ****************************************************************
6 
7 using System;
8 
9 namespace NUnit.Util
10 {
11 	/// <summary>
12 	/// The TestObserver interface is implemented by a class that
13 	/// subscribes to the events generated in loading and running
14 	/// tests and uses that information in some way.
15 	/// </summary>
16 	public interface TestObserver
17 	{
Subscribe( ITestEvents events )18 		void Subscribe( ITestEvents events );
19 	}
20 }
21