Merge pull request #3040 from xmcclure/debugger-step-recursive
[mono.git] / mcs / nunit24 / NUnitCore / interfaces / Extensibility / IFrameworkRegistry.cs
1 // ****************************************************************\r
2 // Copyright 2007, Charlie Poole\r
3 // This is free software licensed under the NUnit license. You may\r
4 // obtain a copy of the license at http://nunit.org/?p=license&r=2.4\r
5 // ****************************************************************\r
6 using System;\r
7 \r
8 namespace NUnit.Core.Extensibility\r
9 {\r
10         /// <summary>\r
11         /// The IFrameworkRegistry allows extensions to register new\r
12         /// frameworks or emulations of other frameworks.\r
13         /// </summary>\r
14         public interface IFrameworkRegistry\r
15         {\r
16                 /// <summary>\r
17                 /// Register a framework\r
18                 /// </summary>\r
19                 /// <param name="frameworkName">The name of the framework</param>\r
20                 /// <param name="assemblyName">The name of the assembly that the tests reference</param>\r
21                 void Register( string frameworkName, string assemblyName );\r
22         }\r
23 }\r