/src/NUnit/util/Interfaces/ITestRunnerFactory.cs
# · C# · 33 lines · 10 code · 3 blank · 20 comment · 0 complexity · e57a62fb5c9293f200d8e7a834c367e2 MD5 · raw file
- // ****************************************************************
- // This is free software licensed under the NUnit license. You
- // may obtain a copy of the license as well as information regarding
- // copyright ownership at http://nunit.org.
- // ****************************************************************
-
- using System;
- using NUnit.Core;
-
- namespace NUnit.Util
- {
- /// <summary>
- /// A Test Runner factory can supply a suitable test runner for a given package
- /// </summary>
- public interface ITestRunnerFactory
- {
- /// <summary>
- /// Return a suitable runner for the package provided as an argument
- /// </summary>
- /// <param name="package">The test package to be loaded by the runner</param>
- /// <returns>A TestRunner</returns>
- TestRunner MakeTestRunner(TestPackage package);
-
- /// <summary>
- /// Return true if the provided runner is suitable for reuse in loading
- /// the test package provided. Otherwise, return false.
- /// </summary>
- /// <param name="package"></param>
- /// <param name="runner"></param>
- /// <returns>True if the runner may be reused</returns>
- bool CanReuse(TestRunner runner, TestPackage package);
- }
- }