Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

251,342

Downloads of v 3.17.0:

12,646

Last Update:

24 Jan 2024

Package Maintainer(s):

Software Author(s):

  • Charlie Poole
  • Rob Prouse

Tags:

nunit console runner test testing tdd

NUnit 3 Console Runner

  • 1
  • 2
  • 3

3.17.0 | Updated: 24 Jan 2024

Downloads:

251,342

Downloads of v 3.17.0:

12,646

Software Author(s):

  • Charlie Poole
  • Rob Prouse

NUnit 3 Console Runner 3.17.0

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Resulted in Flagged as a Note:

At least one file within this package has greater than 0 detections, but less than 5

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install NUnit 3 Console Runner, run the following command from the command line or from PowerShell:

>

To upgrade NUnit 3 Console Runner, run the following command from the command line or from PowerShell:

>

To uninstall NUnit 3 Console Runner, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade nunit-console-runner -y --source="'INTERNAL REPO URL'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade nunit-console-runner -y --source="'INTERNAL REPO URL'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install nunit-console-runner
  win_chocolatey:
    name: nunit-console-runner
    version: '3.17.0'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'nunit-console-runner' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '3.17.0'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller nunit-console-runner
{
    Name     = "nunit-console-runner"
    Version  = "3.17.0"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'nunit-console-runner':
  ensure   => '3.17.0',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved as a trusted package on 24 Jan 2024.

Description

This package includes the nunit3-console runner and test engine for version 3 of the NUnit unit-testing framework.


tools\LICENSE.txt
Copyright (c) 2021 Charlie Poole, Rob Prouse

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

tools\NOTICES.txt
NUnit 3.0 is based on earlier versions of NUnit, with Portions

Copyright (c) 2002-2014 Charlie Poole or 
Copyright (c) 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov or 
Copyright (c) 2000-2002 Philip A. Craig
tools\VERIFICATION.txt
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.

This package is published by the NUnit Project itself. Any binaries will be 
identical to other package types published by the project, in particular
the NUnit.ConsoleRunner and NUnit.Console NuGet packages.
tools\nunit.choco.addins
 
tools\nunit3-console.exe
md5: 116890BFFFC7B0CFF46A8CE100F38A21 | sha1: 2EB7AB146B6CD6EFDA62070634C94F04BE155713 | sha256: 41D3BFFA1D7C13D66ADC5E47457C1AEA608ABD2BD83CFC4C2A9BC1C03E0B9917 | sha512: DB3A6333FBEFAB00788E58E16A8BADB099D77704E8FD62A6F9792F8E91D6B37D013037CD25508C5414233EE7951CEAE5FF65D2F276C49CFAA4024377723401FB
tools\nunit3-console.exe.config
<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <!--
   The console runner runs under .NET 2.0 or higher. 
   The setting useLegacyV2RuntimeActivationPolicy only applies 
   under .NET 4.0 and permits use of mixed mode assemblies, 
   which would otherwise not load correctly.
  -->
  <startup useLegacyV2RuntimeActivationPolicy="true">
    <supportedRuntime version="v4.0.30319" />
    <supportedRuntime version="v2.0.50727" />
  </startup>
  <runtime>
    <!-- Ensure that test exceptions don't crash NUnit -->
    <legacyUnhandledExceptionPolicy enabled="1" />
    <!--
     Since legacyUnhandledExceptionPolicy keeps the console from being killed even though an NUnit framework
     test worker thread is killed, this is needed to prevent a hang. NUnit framework can only handle these
     exceptions when this config element is present. (Or if future versions of NUnit framework drop support
     for partial trust which would enable it to use [HandleProcessCorruptedStateExceptions].)
    -->
    <legacyCorruptedStateExceptionsPolicy enabled="true" />
    <!-- Run partial trust V2 assemblies in full trust under .NET 4.0 -->
    <loadFromRemoteSources enabled="true" />
    <!-- Enable reading source information from Portable and Embedded PDBs when running applications -->
    <!-- built against previous .NET Framework versions on .NET Framework 4.7.2 -->
    <AppContextSwitchOverrides value="Switch.System.Diagnostics.IgnorePortablePDBsInStackTraces=false" />
  </runtime>
</configuration>
tools\nunit.engine.api.dll
md5: 4ECAAE26D95FAC203B2D29626DF709B9 | sha1: 9FE82DFE7B08D415C0A712C8CDF7DBA67E730EB3 | sha256: E48566C95AAA4C92352C22F24E74D09EA912E42F84ED1D0EBE357EE31D1C6040 | sha512: 3BEE04A2C46AE888D3694638A4CA0A76B4B94EA6283FDA760AB665E1C666DCCA97AFFE4172ACB55C1818B6B5B14DF1525AC9ABE42BC46539B4C3D4CE0FCF8FFA
tools\nunit.engine.api.xml
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>nunit.engine.api</name>
    </assembly>
    <members>
        <member name="T:NUnit.Engine.NUnitEngineException">
            <summary>
            NUnitEngineException is thrown when the engine has been
            called with improper values or when a particular facility
            is not available.
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineException.#ctor(System.String)">
            <summary>
            Construct with a message
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineException.#ctor(System.String,System.Exception)">
            <summary>
            Construct with a message and inner exception
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Serialization constructor
            </summary>
        </member>
        <member name="T:NUnit.Engine.NUnitEngineNotFoundException">
            <summary>
            The exception that is thrown if a valid test engine is not found
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineNotFoundException.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:NUnit.Engine.NUnitEngineNotFoundException"/> class.
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineNotFoundException.#ctor(System.Version)">
            <summary>
            Initializes a new instance of the <see cref="T:NUnit.Engine.NUnitEngineNotFoundException"/> class.
            </summary>
            <param name="minVersion">The minimum version.</param>
        </member>
        <member name="T:NUnit.Engine.NUnitEngineUnloadException">
            <summary>
            NUnitEngineUnloadException is thrown when a test run has completed successfully
            but one or more errors were encountered when attempting to unload
            and shut down the test run cleanly.
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.String)">
            <summary>
            Construct with a message
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.String,System.Exception)">
            <summary>
            Construct with a message and inner exception
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.Collections.Generic.ICollection{System.Exception})">
            <summary>
            Construct with a message and a collection of exceptions.
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Serialization constructor.
            </summary>
        </member>
        <member name="P:NUnit.Engine.NUnitEngineUnloadException.AggregatedExceptions">
            <summary>
            Gets the collection of exceptions .
            </summary>
        </member>
        <member name="T:NUnit.Engine.Extensibility.ExtensionAttribute">
            <summary>
            The ExtensionAttribute is used to identify a class that is intended
            to serve as an extension.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.ExtensionAttribute.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:NUnit.Engine.Extensibility.ExtensionAttribute"/> class.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.Path">
            <summary>
            A unique string identifying the ExtensionPoint for which this Extension is 
            intended. This is an optional field provided NUnit is able to deduce the
            ExtensionPoint from the Type of the extension class.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.Description">
            <summary>
            An optional description of what the extension does.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.Enabled">
            <summary>
            Flag indicating whether the extension is enabled.
            </summary>
            <value><c>true</c> if enabled; otherwise, <c>false</c>.</value>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.EngineVersion">
            <summary>
            The minimum Engine version for which this extension is designed
            </summary>
        </member>
        <member name="T:NUnit.Engine.Extensibility.ExtensionPointAttribute">
            <summary>
            ExtensionPointAttribute is used at the assembly level to identify and
            document any ExtensionPoints supported by the assembly.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.ExtensionPointAttribute.#ctor(System.String,System.Type)">
            <summary>
            Construct an ExtensionPointAttribute
            </summary>
            <param name="path">A unique string identifying the extension point.</param>
            <param name="type">The required Type of any extension that is installed at this extension point.</param>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionPointAttribute.Path">
            <summary>
            The unique string identifying this ExtensionPoint. This identifier
            is typically formatted as a path using '/' and the set of extension 
            points is sometimes viewed as forming a tree.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionPointAttribute.Type">
            <summary>
            The required Type (usually an interface) of any extension that is 
            installed at this ExtensionPoint.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionPointAttribute.Description">
            <summary>
            An optional description of the purpose of the ExtensionPoint
            </summary>
        </member>
        <member name="T:NUnit.Engine.Extensibility.ExtensionPropertyAttribute">
            <summary>
            The ExtensionPropertyAttribute is used to specify named properties for an extension.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.ExtensionPropertyAttribute.#ctor(System.String,System.String)">
            <summary>
            Construct an ExtensionPropertyAttribute
            </summary>
            <param name="name">The name of the property</param>
            <param name="value">The property value</param>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionPropertyAttribute.Name">
            <summary>
            The name of the property.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionPropertyAttribute.Value">
            <summary>
            The property value
            </summary>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IDriverFactory">
            <summary>
            Interface implemented by a Type that knows how to create a driver for a test assembly.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IDriverFactory.IsSupportedTestFramework(System.Reflection.AssemblyName)">
            <summary>
            Gets a flag indicating whether a given AssemblyName
            represents a test framework supported by this factory.
            </summary>
            <param name="reference">An AssemblyName referring to the possible test framework.</param>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IDriverFactory.GetDriver(System.AppDomain,System.Reflection.AssemblyName)">
            <summary>
            Gets a driver for a given test assembly and a framework
            which the assembly is already known to reference.
            </summary>
            <param name="domain">The domain in which the assembly will be loaded</param>
            <param name="reference">An AssemblyName referring to the test framework.</param>
            <returns></returns>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IExtensionNode">
            <summary>
            The IExtensionNode interface is implemented by a class that represents a
            single extension being installed on a particular extension point.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.TypeName">
            <summary>
            Gets the full name of the Type of the extension object.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.Enabled">
            <summary>
            Gets a value indicating whether this <see cref="T:NUnit.Engine.Extensibility.IExtensionNode"/> is enabled.
            </summary>
            <value><c>true</c> if enabled; otherwise, <c>false</c>.</value>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.Path">
            <summary>
            Gets the unique string identifying the ExtensionPoint for which
            this Extension is intended. This identifier may be supplied by the attribute
            marking the extension or deduced by NUnit from the Type of the extension class.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.Description">
            <summary>
            Gets an optional description of what the extension does.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.TargetFramework">
            <summary>
            The TargetFramework of the extension assembly.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.PropertyNames">
            <summary>
            Gets a collection of the names of all this extension's properties
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IExtensionNode.GetValues(System.String)">
            <summary>
            Gets a collection of the values of a particular named property
            If none are present, returns an empty enumerator.
            </summary>
            <param name="name">The property name</param>
            <returns>A collection of values</returns>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.AssemblyPath">
            <summary>
            The path to the assembly implementing this extension.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.AssemblyVersion">
            <summary>
            The version of the assembly implementing this extension.
            </summary>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IExtensionPoint">
            <summary>
            An ExtensionPoint represents a single point in the TestEngine
            that may be extended by user addins and extensions.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionPoint.Path">
            <summary>
            Gets the unique path identifying this extension point.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionPoint.Description">
            <summary>
            Gets the description of this extension point. May be null.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionPoint.TypeName">
            <summary>
            Gets the FullName of the Type required for any extension to be installed at this extension point.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionPoint.Extensions">
            <summary>
            Gets an enumeration of IExtensionNodes for extensions installed on this extension point.
            </summary>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IFrameworkDriver">
            <summary>
            The IFrameworkDriver interface is implemented by a class that
            is able to use an external framework to explore or run tests
            under the engine.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IFrameworkDriver.ID">
            <summary>
            Gets and sets the unique identifier for this driver,
            used to ensure that test ids are unique across drivers.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.Load(System.String,System.Collections.Generic.IDictionary{System.String,System.Object})">
            <summary>
            Loads the tests in an assembly.
            </summary>
            <returns>An Xml string representing the loaded test</returns>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.CountTestCases(System.String)">
            <summary>
            Count the test cases that would be executed.
            </summary>
            <param name="filter">An XML string representing the TestFilter to use in counting the tests</param>
            <returns>The number of test cases counted</returns>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.Run(NUnit.Engine.ITestEventListener,System.String)">
            <summary>
            Executes the tests in an assembly.
            </summary>
            <param name="listener">An ITestEventHandler that receives progress notices</param>
            <param name="filter">A XML string representing the filter that controls which tests are executed</param>
            <returns>An Xml string representing the result</returns>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.Explore(System.String)">
            <summary>
            Returns information about the tests in an assembly.
            </summary>
            <param name="filter">An XML string representing the filter that controls which tests are included</param>
            <returns>An Xml string representing the tests</returns>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.StopRun(System.Boolean)">
            <summary>
            Cancel the ongoing test run. If no  test is running, the call is ignored.
            </summary>
            <param name="force">If true, cancel any ongoing test threads, otherwise wait for them to complete.</param>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IProject">
            <summary>
            Interface for the various project types that the engine can load.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IProject.ProjectPath">
            <summary>
            Gets the path to the file storing this project, if any.
            If the project has not been saved, this is null.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IProject.ActiveConfigName">
            <summary>
            Gets the active configuration, as defined
            by the particular project.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IProject.ConfigNames">
            <summary>
            Gets a list of the configs for this project
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IProject.GetTestPackage">
            <summary>
            Gets a test package for the primary or active
            configuration within the project. The package 
            includes all the assemblies and any settings
            specified in the project format.
            </summary>
            <returns>A TestPackage</returns>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IProject.GetTestPackage(System.String)">
            <summary>
            Gets a TestPackage for a specific configuration
            within the project. The package includes all the
            assemblies and any settings specified in the 
            project format.
            </summary>
            <param name="configName">The name of the config to use</param>
            <returns>A TestPackage for the named configuration.</returns>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IProjectLoader">
            <summary>
            The IProjectLoader interface is implemented by any class
            that knows how to load projects in a specific format.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IProjectLoader.CanLoadFrom(System.String)">
            <summary>
            Returns true if the file indicated is one that this
            loader knows how to load.
            </summary>
            <param name="path">The path of the project file</param>
            <returns>True if the loader knows how to load this file, otherwise false</returns>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IProjectLoader.LoadFrom(System.String)">
            <summary>
            Loads a project of a known format.
            </summary>
            <param name="path">The path of the project file</param>
            <returns>An IProject interface to the loaded project or null if the project cannot be loaded</returns>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IResultWriter">
            <summary>
            Common interface for objects that process and write out test results
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IResultWriter.CheckWritability(System.String)">
            <summary>
            Checks if the output path is writable. If the output is not
            writable, this method should throw an exception.
            </summary>
            <param name="outputPath"></param>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IResultWriter.WriteResultFile(System.Xml.XmlNode,System.String)">
            <summary>
            Writes result to the specified output path.
            </summary>
            <param name="resultNode">XmlNode for the result</param>
            <param name="outputPath">Path to which it should be written</param>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IResultWriter.WriteResultFile(System.Xml.XmlNode,System.IO.TextWriter)">
            <summary>
            Writes result to a TextWriter.
            </summary>
            <param name="resultNode">XmlNode for the result</param>
            <param name="writer">TextWriter to which it should be written</param>
        </member>
        <member name="T:NUnit.Engine.Extensibility.TypeExtensionPointAttribute">
            <summary>
            TypeExtensionPointAttribute is used to bind an extension point
            to a class or interface.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.#ctor(System.String)">
            <summary>
            Construct a TypeExtensionPointAttribute, specifying the path.
            </summary>
            <param name="path">A unique string identifying the extension point.</param>
        </member>
        <member name="M:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.#ctor">
            <summary>
            Construct an TypeExtensionPointAttribute, without specifying the path.
            The extension point will use a path constructed based on the interface
            or class to which the attribute is applied.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.Path">
            <summary>
            The unique string identifying this ExtensionPoint. This identifier
            is typically formatted as a path using '/' and the set of extension 
            points is sometimes viewed as forming a tree.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.Description">
            <summary>
            An optional description of the purpose of the ExtensionPoint
            </summary>
        </member>
        <member name="T:NUnit.Engine.IAvailableRuntimes">
            <summary>
            Interface that returns a list of available runtime frameworks.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IAvailableRuntimes.AvailableRuntimes">
            <summary>
            Gets a list of available runtime frameworks.
            </summary>
        </member>
        <member name="T:NUnit.Engine.IExtensionService">
            <summary>
            The IExtensionService interface allows a runner to manage extensions.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IExtensionService.ExtensionPoints">
            <summary>
            Gets an enumeration of all ExtensionPoints in the engine.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IExtensionService.Extensions">
            <summary>
            Gets an enumeration of all installed Extensions.
            </summary>
        </member>
        <member name="M:NUnit.Engine.IExtensionService.GetExtensionPoint(System.String)">
            <summary>
            Get an ExtensionPoint based on its unique identifying path.
            </summary>
        </member>
        <member name="M:NUnit.Engine.IExtensionService.GetExtensionNodes(System.String)">
            <summary>
            Get an enumeration of ExtensionNodes based on their identifying path.
            </summary>
        </member>
        <member name="M:NUnit.Engine.IExtensionService.EnableExtension(System.String,System.Boolean)">
            <summary>
            Enable or disable an extension
            </summary>
            <param name="typeName"></param>
            <param name="enabled"></param>
        </member>
        <member name="T:NUnit.Engine.ILogger">
            <summary>
            Interface for logging within the engine
            </summary>
        </member>
        <member name="M:NUnit.Engine.ILogger.Error(System.String)">
            <summary>
            Logs the specified message at the error level.
            </summary>
            <param name="message">The message.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Error(System.String,System.Object[])">
            <summary>
            Logs the specified message at the error level.
            </summary>
            <param name="format">The message.</param>
            <param name="args">The arguments.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Warning(System.String)">
            <summary>
            Logs the specified message at the warning level.
            </summary>
            <param name="message">The message.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Warning(System.String,System.Object[])">
            <summary>
            Logs the specified message at the warning level.
            </summary>
            <param name="format">The message.</param>
            <param name="args">The arguments.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Info(System.String)">
            <summary>
            Logs the specified message at the info level.
            </summary>
            <param name="message">The message.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Info(System.String,System.Object[])">
            <summary>
            Logs the specified message at the info level.
            </summary>
            <param name="format">The message.</param>
            <param name="args">The arguments.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Debug(System.String)">
            <summary>
            Logs the specified message at the debug level.
            </summary>
            <param name="message">The message.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Debug(System.String,System.Object[])">
            <summary>
            Logs the specified message at the debug level.
            </summary>
            <param name="format">The message.</param>
            <param name="args">The arguments.</param>
        </member>
        <member name="T:NUnit.Engine.ILogging">
            <summary>
            Interface to abstract getting loggers
            </summary>
        </member>
        <member name="M:NUnit.Engine.ILogging.GetLogger(System.String)">
            <summary>
            Gets the logger.
            </summary>
            <param name="name">The name of the logger to get.</param>
            <returns></returns>
        </member>
        <member name="T:NUnit.Engine.InternalTraceLevel">
            <summary>
            InternalTraceLevel is an enumeration controlling the
            level of detailed presented in the internal log.
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Default">
            <summary>
            Use the default settings as specified by the user.
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Off">
            <summary>
            Do not display any trace messages
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Error">
            <summary>
            Display Error messages only
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Warning">
            <summary>
            Display Warning level and higher messages
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Info">
            <summary>
            Display informational and higher messages
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Debug">
            <summary>
            Display debug messages and higher - i.e. all messages
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Verbose">
            <summary>
            Display debug messages and higher - i.e. all messages
            </summary>
        </member>
        <member name="T:NUnit.Engine.IRecentFiles">
            <summary>
            The IRecentFiles interface is used to isolate the app
            from various implementations of recent files.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRecentFiles.MaxFiles">
            <summary>
            The max number of files saved
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRecentFiles.Entries">
            <summary>
            Get a list of all the file entries
            </summary>
            <returns>The most recent file list</returns>
        </member>
        <member name="M:NUnit.Engine.IRecentFiles.SetMostRecent(System.String)">
            <summary>
            Set the most recent file name, reordering
            the saved names as needed and removing the oldest
            if the max number of files would be exceeded.
            The current CLR version is used to create the entry.
            </summary>
        </member>
        <member name="M:NUnit.Engine.IRecentFiles.Remove(System.String)">
            <summary>
            Remove a file from the list
            </summary>
            <param name="fileName">The name of the file to remove</param>
        </member>
        <member name="T:NUnit.Engine.IResultService">
            <summary>
            IResultWriterService provides result writers for a specified
            well-known format.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IResultService.Formats">
            <summary>
            Gets an array of the available formats
            </summary>
        </member>
        <member name="M:NUnit.Engine.IResultService.GetResultWriter(System.String,System.Object[])">
            <summary>
            Gets a ResultWriter for a given format and set of arguments.
            </summary>
            <param name="format">The name of the format to be used</param>
            <param name="args">A set of arguments to be used in constructing the writer or null if non arguments are needed</param>
            <returns>An IResultWriter</returns>
        </member>
        <member name="T:NUnit.Engine.IRuntimeFramework">
            <summary>
            Interface implemented by objects representing a runtime framework.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRuntimeFramework.Id">
            <summary>
            Gets the inique Id for this runtime, such as "net-4.5"
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRuntimeFramework.DisplayName">
            <summary>
            Gets the display name of the framework, such as ".NET 4.5"
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRuntimeFramework.FrameworkVersion">
            <summary>
            Gets the framework version: usually contains two components, Major
            and Minor, which match the corresponding CLR components, but not always.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRuntimeFramework.ClrVersion">
            <summary>
            Gets the Version of the CLR for this framework
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRuntimeFramework.Profile">
            <summary>
            Gets a string representing the particular profile installed,
            or null if there is no profile. Currently. the only defined 
            values are Full and Client.
            </summary>
        </member>
        <member name="T:NUnit.Engine.IRuntimeFrameworkService">
            <summary>
            Implemented by a type that provides information about the
            current and other available runtimes.
            </summary>
        </member>
        <member name="M:NUnit.Engine.IRuntimeFrameworkService.IsAvailable(System.String)">
            <summary>
            Returns true if the runtime framework represented by
            the string passed as an argument is available.
            </summary>
            <param name="framework">A string representing a framework, like 'net-4.0'</param>
            <returns>True if the framework is available, false if unavailable or nonexistent</returns>
        </member>
        <member name="M:NUnit.Engine.IRuntimeFrameworkService.SelectRuntimeFramework(NUnit.Engine.TestPackage)">
             <summary>
             Selects a target runtime framework for a TestPackage based on
             the settings in the package and the assemblies themselves.
             The package RuntimeFramework setting may be updated as a 
             result and the selected runtime is returned.
            
             Note that if a package has subpackages, the subpackages may run on a different
             framework to the top-level package. In future, this method should
             probably not return a simple string, and instead require runners
             to inspect the test package structure, to find all desired frameworks.
             </summary>
             <param name="package">A TestPackage</param>
             <returns>The selected RuntimeFramework</returns>
        </member>
        <member name="T:NUnit.Engine.ServiceStatus">
            <summary>
            Enumeration representing the status of a service
            </summary>
        </member>
        <member name="F:NUnit.Engine.ServiceStatus.Stopped">
            <summary>Service was never started or has been stopped</summary>
        </member>
        <member name="F:NUnit.Engine.ServiceStatus.Started">
            <summary>Started successfully</summary>
        </member>
        <member name="F:NUnit.Engine.ServiceStatus.Error">
            <summary>Service failed to start and is unavailable</summary>
        </member>
        <member name="T:NUnit.Engine.IService">
            <summary>
            The IService interface is implemented by all Services. Although it
            is extensible, it does not reside in the Extensibility namespace
            because it is so widely used by the engine.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IService.ServiceContext">
            <summary>
            The ServiceContext
            </summary>
        </member>
        <member name="P:NUnit.Engine.IService.Status">
            <summary>
            Gets the ServiceStatus of this service
            </summary>
        </member>
        <member name="M:NUnit.Engine.IService.StartService">
            <summary>
            Initialize the Service
            </summary>
        </member>
        <member name="M:NUnit.Engine.IService.StopService">
            <summary>
            Do any cleanup needed before terminating the service
            </summary>
        </member>
        <member name="T:NUnit.Engine.IServiceLocator">
            <summary>
            IServiceLocator allows clients to locate any NUnit services
            for which the interface is referenced. In normal use, this
            linits it to those services using interfaces defined in the 
            nunit.engine.api assembly.
            </summary>
        </member>
        <member name="M:NUnit.Engine.IServiceLocator.GetService``1">
            <summary>
            Return a specified type of service
            </summary>
        </member>
        <member name="M:NUnit.Engine.IServiceLocator.GetService(System.Type)">
            <summary>
            Return a specified type of service
            </summary>
        </member>
        <member name="T:NUnit.Engine.SettingsEventHandler">
            <summary>
            Event handler for settings changes
            </summary>
            <param name="sender">The sender.</param>
            <param name="args">The <see cref="T:NUnit.Engine.SettingsEventArgs"/> instance containing the event data.</param>
        </member>
        <member name="T:NUnit.Engine.SettingsEventArgs">
            <summary>
            Event argument for settings changes
            </summary>
        </member>
        <member name="M:NUnit.Engine.SettingsEventArgs.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:NUnit.Engine.SettingsEventArgs"/> class.
            </summary>
            <param name="settingName">Name of the setting that has changed.</param>
        </member>
        <member name="P:NUnit.Engine.SettingsEventArgs.SettingName">
            <summary>
            Gets the name of the setting that has changed
            </summary>
        </member>
        <member name="T:NUnit.Engine.ISettings">
            <summary>
            The ISettings interface is used to access all user
            settings and options.
            </summary>
        </member>
        <member name="E:NUnit.Engine.ISettings.Changed">
            <summary>
            Occurs when the settings are changed.
            </summary>
        </member>
        <member name="M:NUnit.Engine.ISettings.GetSetting(System.String)">
            <summary>
            Load a setting from the storage.
            </summary>
            <param name="settingName">Name of the setting to load</param>
            <returns>Value of the setting or null</returns>
        </member>
        <member name="M:NUnit.Engine.ISettings.GetSetting``1(System.String,``0)">
            <summary>
            Load a setting from the storage or return a default value
            </summary>
            <param name="settingName">Name of the setting to load</param>
            <param name="defaultValue">Value to return if the setting is missing</param>
            <returns>Value of the setting or the default value</returns>
        </member>
        <member name="M:NUnit.Engine.ISettings.RemoveSetting(System.String)">
            <summary>
            Remove a setting from the storage
            </summary>
            <param name="settingName">Name of the setting to remove</param>
        </member>
        <member name="M:NUnit.Engine.ISettings.RemoveGroup(System.String)">
            <summary>
            Remove an entire group of settings from the storage
            </summary>
            <param name="groupName">Name of the group to remove</param>
        </member>
        <member name="M:NUnit.Engine.ISettings.SaveSetting(System.String,System.Object)">
            <summary>
            Save a setting in the storage
            </summary>
            <param name="settingName">Name of the setting to save</param>
            <param name="settingValue">Value to be saved</param>
        </member>
        <member name="T:NUnit.Engine.ITestEngine">
            <summary>
            ITestEngine represents an instance of the test engine.
            Clients wanting to discover, explore or run tests start
            require an instance of the engine, which is generally
            acquired from the TestEngineActivator class.
            </summary>
        </member>
        <member name="P:NUnit.Engine.ITestEngine.Services">
            <summary>
            Gets the IServiceLocator interface, which gives access to
            certain services provided by the engine.
            </summary>
        </member>
        <member name="P:NUnit.Engine.ITestEngine.WorkDirectory">
            <summary>
            Gets and sets the directory path used by the engine for saving files.
            Some services may ignore changes to this path made after initialization.
            The default value is the current directory.
            </summary>
        </member>
        <member name="P:NUnit.Engine.ITestEngine.InternalTraceLevel">
            <summary>
            Gets and sets the InternalTraceLevel used by the engine. Changing this
            setting after initialization will have no effect. The default value
            is the value saved in the NUnit settings.
            </summary>
        </member>
        <member name="M:NUnit.Engine.ITestEngine.Initialize">
             <summary>
             Initialize the engine. This includes initializing mono addins,
             setting the trace level and creating the standard set of services
             used in the Engine.
            
             This interface is not normally called by user code. Programs linking
             only to the nunit.engine.api assembly are given a
             pre-initialized instance of TestEngine. Programs
             that link directly to nunit.engine usually do so
             in order to perform custom initialization.
             </summary>
        </member>
        <member name="M:NUnit.Engine.ITestEngine.GetRunner(NUnit.Engine.TestPackage)">
            <summary>
            Returns a test runner instance for use by clients in discovering,
            exploring and executing tests.
            </summary>
            <param name="package">The TestPackage for which the runner is intended.</param>
            <returns>An ITestRunner.</returns>
        </member>
        <member name="T:NUnit.Engine.ITestEventListener">
            <summary>
            The ITestListener interface is used to receive notices of significant
            events while a test is running. Its single method accepts an Xml string,
            which may represent any event generated by the test framework, the driver
            or any of the runners internal to the engine. Use of Xml means that
            any driver and framework may add additional events and the engine will
            simply pass them on through this interface.
            </summary>
        </member>
        <member name="M:NUnit.Engine.ITestEventListener.OnTestEvent(System.String)">
            <summary>
            Handle a progress report or other event.
            </summary>
            <param name="report">An XML progress report.</param>
        </member>
        <member name="T:NUnit.Engine.ITestFilterBuilder">
            <summary>
            Interface to a TestFilterBuilder, which is used to create TestFilters
            </summary>
        </member>
        <member name="M:NUnit.Engine.ITestFilterBuilder.AddTest(System.String)">
            <summary>
            Add a test to be selected
            </summary>
            <param name="fullName">The full name of the test, as created by NUnit</param>
        </member>
        <member name="M:NUnit.Engine.ITestFilterBuilder.SelectWhere(System.String)">
            <summary>
            Specify what is to be included by the filter using a where clause.
            </summary>
            <param name="whereClause">A where clause that will be parsed by NUnit to create the filter.</param>
        </member>
        <member name="M:NUnit.Engine.ITestFilterBuilder.GetFilter">
            <summary>
            Get a TestFilter constructed according to the criteria specified by the other calls.
            </summary>
            <returns>A TestFilter.</returns>
        </member>
        <member name="T:NUnit.Engine.ITestFilterService">
            <summary>
            The TestFilterService provides builders that can create TestFilters
            </summary>
        </member>
        <member name="M:NUnit.Engine.ITestFilterService.GetTestFilterBuilder">
            <summary>
            Get an uninitialized TestFilterBuilder
            </summary>
        </member>
        <member name="T:NUnit.Engine.ITestRun">
            <summary>
            The ITestRun class represents an ongoing test run.
            </summary>
        </member>
        <member name="P:NUnit.Engine.ITestRun.Result">
            <summary>
            Get the result of the test.
            </summary>
            <returns>An XmlNode representing the test run result</returns>
        </member>
        <member name="M:NUnit.Engine.ITestRun.Wait(System.Int32)">
            <summary>
            Blocks the current thread until the current test run completes
            or the timeout is reached
            </summary>
            <param name="timeout">A <see cref="T:System.Int32"/> that represents the number of milliseconds to wait or -1 milliseconds to wait indefinitely. </param>
            <returns>True if the run completed</returns>
        </member>
        <member name="T:NUnit.Engine.ITestRunner">
            <summary>
            Interface implemented by all test runners.
            </summary>
        </member>
        <member name="P:NUnit.Engine.ITestRunner.IsTestRunning">
            <summary>
            Get a flag indicating whether a test is running
            </summary>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.Load">
            <summary>
            Load a TestPackage for possible execution
            </summary>
            <returns>An XmlNode representing the loaded package.</returns>
            <remarks>
            This method is normally optional, since Explore and Run call
            it automatically when necessary. The method is kept in order
            to make it easier to convert older programs that use it.
            </remarks>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.Unload">
            <summary>
            Unload any loaded TestPackage. If none is loaded,
            the call is ignored.
            </summary>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.Reload">
            <summary>
            Reload the current TestPackage
            </summary>
            <returns>An XmlNode representing the loaded package.</returns>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.CountTestCases(NUnit.Engine.TestFilter)">
            <summary>
            Count the test cases that would be run under
            the specified filter.
            </summary>
            <param name="filter">A TestFilter</param>
            <returns>The count of test cases</returns>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.Run(NUnit.Engine.ITestEventListener,NUnit.Engine.TestFilter)">
            <summary>
            Run the tests in the loaded TestPackage and return a test result. The tests
            are run synchronously and the listener interface is notified as it progresses.
            </summary>
            <param name="listener">The listener that is notified as the run progresses</param>
            <param name="filter">A TestFilter used to select tests</param>
            <returns>An XmlNode giving the result of the test execution</returns>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.RunAsync(NUnit.Engine.ITestEventListener,NUnit.Engine.TestFilter)">
            <summary>
            Start a run of the tests in the loaded TestPackage. The tests are run
            asynchronously and the listener interface is notified as it progresses.
            </summary>
            <param name="listener">The listener that is notified as the run progresses</param>
            <param name="filter">A TestFilter used to select tests</param>
            <returns></returns>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.StopRun(System.Boolean)">
            <summary>
            Cancel the ongoing test run. If no  test is running, the call is ignored.
            </summary>
            <param name="force">If true, cancel any ongoing test threads, otherwise wait for them to complete.</param>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.Explore(NUnit.Engine.TestFilter)">
            <summary>
            Explore a loaded TestPackage and return information about the tests found.
            </summary>
            <param name="filter">The TestFilter to be used in selecting tests to explore.</param>
            <returns>An XmlNode representing the tests found.</returns>
        </member>
        <member name="T:NUnit.Engine.TestEngineActivator">
            <summary>
            TestEngineActivator creates an instance of the test engine and returns an ITestEngine interface.
            </summary>
        </member>
        <member name="M:NUnit.Engine.TestEngineActivator.CreateInstance(System.Boolean)">
            <summary>
            Create an instance of the test engine.
            </summary>
            <param name="unused">This parameter is no longer used but has not been removed to ensure API compatibility.</param>
            <exception cref="T:NUnit.Engine.NUnitEngineNotFoundException">Thrown when a test engine of the required minimum version is not found</exception>
            <returns>An <see cref="T:NUnit.Engine.ITestEngine"/></returns>
        </member>
        <member name="M:NUnit.Engine.TestEngineActivator.CreateInstance(System.Version,System.Boolean)">
            <summary>
            Create an instance of the test engine with a minimum version.
            </summary>
            <param name="minVersion">The minimum version of the engine to return inclusive.</param>
            <param name="unused">This parameter is no longer used but has not been removed to ensure API compatibility.</param>
            <exception cref="T:NUnit.Engine.NUnitEngineNotFoundException">Thrown when a test engine of the required minimum version is not found</exception>
            <returns>An <see cref="T:NUnit.Engine.ITestEngine"/></returns>
        </member>
        <member name="T:NUnit.Engine.TestFilter">
            <summary>
            Abstract base for all test filters. A filter is represented
            by an XmlNode with &lt;filter&gt; as its topmost element.
            In the console runner, filters serve only to carry this
            XML representation, as all filtering is done by the engine.
            </summary>
        </member>
        <member name="M:NUnit.Engine.TestFilter.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:NUnit.Engine.TestFilter"/> class.
            </summary>
            <param name="xmlText">The XML text that specifies the filter.</param>
        </member>
        <member name="F:NUnit.Engine.TestFilter.Empty">
            <summary>
            The empty filter - one that always passes.
            </summary>
        </member>
        <member name="P:NUnit.Engine.TestFilter.Text">
            <summary>
            Gets the XML representation of this filter as a string.
            </summary>
        </member>
        <member name="T:NUnit.Engine.TestPackage">
            <summary>
            TestPackage holds information about a set of test files to
            be loaded by a TestRunner. Each TestPackage represents
            tests for one or more test files. TestPackages may be named
            or anonymous, depending on the constructor used.
            
            Upon construction, a package is given an ID (string), which
            remains unchanged for the lifetime of the TestPackage instance.
            The package ID is passed to the test framework for use in generating
            test IDs.
            
            A runner that reloads test assemblies and wants the ids to remain stable
            should avoid creating a new package but should instead use the original
            package, changing settings as needed. This gives the best chance for the
            tests in the reloaded assembly to match those originally loaded.
            </summary>
        </member>
        <member name="M:NUnit.Engine.TestPackage.#ctor(System.String)">
            <summary>
            Construct a named TestPackage, specifying a file path for
            the assembly or project to be used.
            </summary>
            <param name="filePath">The file path.</param>
        </member>
        <member name="M:NUnit.Engine.TestPackage.#ctor(System.Collections.Generic.IList{System.String})">
            <summary>
            Construct an anonymous TestPackage that wraps test files.
            </summary>
            <param name="testFiles"></param>
        </member>
        <member name="P:NUnit.Engine.TestPackage.ID">
            <summary>
            Every test package gets a unique ID used to prefix test IDs within that package.
            </summary>
            <remarks>
            The generated ID is only unique for packages created within the same application domain.
            For that reason, NUnit pre-creates all test packages that will be needed.
            </remarks>
        </member>
        <member name="P:NUnit.Engine.TestPackage.Name">
            <summary>
            Gets the name of the package
            </summary>
        </member>
        <member name="P:NUnit.Engine.TestPackage.FullName">
            <summary>
            Gets the path to the file containing tests. It may be
            an assembly or a recognized project type.
            </summary>
        </member>
        <member name="P:NUnit.Engine.TestPackage.SubPackages">
            <summary>
            Gets the list of SubPackages contained in this package
            </summary>
        </member>
        <member name="P:NUnit.Engine.TestPackage.Settings">
            <summary>
            Gets the settings dictionary for this package.
            </summary>
        </member>
        <member name="M:NUnit.Engine.TestPackage.AddSubPackage(NUnit.Engine.TestPackage)">
            <summary>
            Add a subproject to the package.
            </summary>
            <param name="subPackage">The subpackage to be added</param>
        </member>
        <member name="M:NUnit.Engine.TestPackage.AddSetting(System.String,System.Object)">
            <summary>
            Add a setting to a package and all of its subpackages.
            </summary>
            <param name="name">The name of the setting</param>
            <param name="value">The value of the setting</param>
            <remarks>
            Once a package is created, subpackages may have been created
            as well. If you add a setting directly to the Settings dictionary
            of the package, the subpackages are not updated. This method is
            used when the settings are intended to be reflected to all the
            subpackages under the package.
            </remarks>
        </member>
        <member name="M:NUnit.Engine.TestPackage.GetSetting``1(System.String,``0)">
            <summary>
            Return the value of a setting or a default.
            </summary>
            <param name="name">The name of the setting</param>
            <param name="defaultSetting">The default value</param>
            <returns></returns>
        </member>
        <member name="T:NUnit.Engine.TestSelectionParserException">
            <summary>
            TestSelectionParserException is thrown when an error
            is found while parsing the selection expression.
            </summary>
        </member>
        <member name="M:NUnit.Engine.TestSelectionParserException.#ctor(System.String)">
            <summary>
            Construct with a message
            </summary>
        </member>
        <member name="M:NUnit.Engine.TestSelectionParserException.#ctor(System.String,System.Exception)">
            <summary>
            Construct with a message and inner exception
            </summary>
            <param name="message"></param>
            <param name="innerException"></param>
        </member>
        <member name="M:NUnit.Engine.TestSelectionParserException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Serialization constructor
            </summary>
        </member>
    </members>
</doc>
tools\nunit.engine.core.dll
md5: FD4B906005532E5CC0F411423E20DEDE | sha1: 9AE0C5E493190B0B52955FE683A435A2B764CB88 | sha256: AF723D71B00A600286A8DE52B713DF9F1A51DAD8B323A4FCAE5C6838337F73D7 | sha512: 9A77E62BD37DF1393274DE28E83EEB65450F16C5B64AE11E071878EF69E75F44097556CA140EC1A369ECE75FA8453D4EBB74F2E4554F8BCF98743F07539D1587
tools\nunit.engine.dll
md5: 191AAA825F0F326C85CA06A2C9AD7765 | sha1: FCA2FCFFC08AD4AB27F6AE0BAB3FBEF9C22E0A31 | sha256: B71DF6AC02D7C31620F71D7FF9C283EE5233D03F26B2A6C4BB513E378C8EF3CB | sha512: 4D1A40BC4C3542573860D1645E45A308384F23B52A9CFEEE832EE5E4E00368C251FA2F92761359B369488EC5368DCEBA2A2B262D107F58A215A01CF0F6C25CB0
tools\testcentric.engine.metadata.dll
tools\agents\net20\nunit-agent.exe
md5: E29EFC6D6BBBC010FD7B801D1DBDDE39 | sha1: 4B5EDC4CB8D5722FE1AAF5B8C001C488916D80CC | sha256: 7F6CEB5D5D8CD12A3F8C221DF5B8C5835D6A1B765519439F5DD870550299A5B3 | sha512: 48B05537EE090F9D3961CEBC2F77194A7D7E37E82EDD2FE7945ECC150039728E1AE7FF91D06706BBD0CC0E7A3D37F769ABB77D879747F38E2763E842F0B1E12B
tools\agents\net20\nunit-agent.exe.config
<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <!--
   Nunit-agent only runs under .NET 2.0 or higher. 
   The setting    useLegacyV2RuntimeActivationPolicy only applies 
   under .NET 4.0 and permits use of mixed mode assemblies, 
   which would otherwise not load correctly. 
  -->
  <startup useLegacyV2RuntimeActivationPolicy="true">
    <!--
     Nunit-agent is normally run by the console or gui
     runners and not independently. In normal usage, 
     the runner specifies which runtime should be used.
     
     Do NOT add any supportedRuntime elements here, 
     since they may prevent the runner from controlling 
     the runtime that is used!
    -->
  </startup>

  <runtime>
    <!-- Ensure that test exceptions don't crash NUnit -->
    <legacyUnhandledExceptionPolicy enabled="1" />

    <!--
     Since legacyUnhandledExceptionPolicy keeps the console from being killed even though an NUnit framework
     test worker thread is killed, this is needed to prevent a hang. NUnit framework can only handle these
     exceptions when this config element is present. (Or if future versions of NUnit framework drop support
     for partial trust which would enable it to use [HandleProcessCorruptedStateExceptions].)
    -->
    <legacyCorruptedStateExceptionsPolicy enabled="true" />

    <!-- Run partial trust V2 assemblies in full trust under .NET 4.0 -->
    <loadFromRemoteSources enabled="true" />

    <!-- Enable reading source information from Portable and Embedded PDBs when running applications -->
    <!-- built against previous .NET Framework versions on .NET Framework 4.7.2 -->
    <AppContextSwitchOverrides value="Switch.System.Diagnostics.IgnorePortablePDBsInStackTraces=false" />
  </runtime>
  
</configuration>
tools\agents\net20\nunit-agent-x86.exe
md5: AD17932AFD489EE6B8FEB151F9E6B1D1 | sha1: 0D4BF25999535F6986018C3BAE08D6FBC51ECFF6 | sha256: 43269638DC17293984E7E0089A27B211A0A096ECDC3F0C97D82A1610414FC0F2 | sha512: 9D88BF314B47AAB6576EC42F841116BD1E22FBC7108335D85C250680450E95CD59871C7E4109CEA360DDC3C6FD8FFA07B77B35839312DBA7A4E383517F900A17
tools\agents\net20\nunit-agent-x86.exe.config
<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <!--
   Nunit-agent only runs under .NET 2.0 or higher. 
   The setting    useLegacyV2RuntimeActivationPolicy only applies 
   under .NET 4.0 and permits use of mixed mode assemblies, 
   which would otherwise not load correctly. 
  -->
  <startup useLegacyV2RuntimeActivationPolicy="true">
    <!--
     Nunit-agent is normally run by the console or gui
     runners and not independently. In normal usage, 
     the runner specifies which runtime should be used.
     
     Do NOT add any supportedRuntime elements here, 
     since they may prevent the runner from controlling 
     the runtime that is used!
    -->
  </startup>

  <runtime>
    <!-- Ensure that test exceptions don't crash NUnit -->
    <legacyUnhandledExceptionPolicy enabled="1" />

    <!--
     Since legacyUnhandledExceptionPolicy keeps the console from being killed even though an NUnit framework
     test worker thread is killed, this is needed to prevent a hang. NUnit framework can only handle these
     exceptions when this config element is present. (Or if future versions of NUnit framework drop support
     for partial trust which would enable it to use [HandleProcessCorruptedStateExceptions].)
    -->
    <legacyCorruptedStateExceptionsPolicy enabled="true" />

    <!-- Run partial trust V2 assemblies in full trust under .NET 4.0 -->
    <loadFromRemoteSources enabled="true" />

    <!-- Enable reading source information from Portable and Embedded PDBs when running applications -->
    <!-- built against previous .NET Framework versions on .NET Framework 4.7.2 -->
    <AppContextSwitchOverrides value="Switch.System.Diagnostics.IgnorePortablePDBsInStackTraces=false" />
  </runtime>
  
</configuration>
tools\agents\net20\nunit.engine.api.dll
md5: 4ECAAE26D95FAC203B2D29626DF709B9 | sha1: 9FE82DFE7B08D415C0A712C8CDF7DBA67E730EB3 | sha256: E48566C95AAA4C92352C22F24E74D09EA912E42F84ED1D0EBE357EE31D1C6040 | sha512: 3BEE04A2C46AE888D3694638A4CA0A76B4B94EA6283FDA760AB665E1C666DCCA97AFFE4172ACB55C1818B6B5B14DF1525AC9ABE42BC46539B4C3D4CE0FCF8FFA
tools\agents\net20\nunit.engine.api.xml
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>nunit.engine.api</name>
    </assembly>
    <members>
        <member name="T:NUnit.Engine.NUnitEngineException">
            <summary>
            NUnitEngineException is thrown when the engine has been
            called with improper values or when a particular facility
            is not available.
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineException.#ctor(System.String)">
            <summary>
            Construct with a message
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineException.#ctor(System.String,System.Exception)">
            <summary>
            Construct with a message and inner exception
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Serialization constructor
            </summary>
        </member>
        <member name="T:NUnit.Engine.NUnitEngineNotFoundException">
            <summary>
            The exception that is thrown if a valid test engine is not found
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineNotFoundException.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:NUnit.Engine.NUnitEngineNotFoundException"/> class.
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineNotFoundException.#ctor(System.Version)">
            <summary>
            Initializes a new instance of the <see cref="T:NUnit.Engine.NUnitEngineNotFoundException"/> class.
            </summary>
            <param name="minVersion">The minimum version.</param>
        </member>
        <member name="T:NUnit.Engine.NUnitEngineUnloadException">
            <summary>
            NUnitEngineUnloadException is thrown when a test run has completed successfully
            but one or more errors were encountered when attempting to unload
            and shut down the test run cleanly.
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.String)">
            <summary>
            Construct with a message
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.String,System.Exception)">
            <summary>
            Construct with a message and inner exception
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.Collections.Generic.ICollection{System.Exception})">
            <summary>
            Construct with a message and a collection of exceptions.
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Serialization constructor.
            </summary>
        </member>
        <member name="P:NUnit.Engine.NUnitEngineUnloadException.AggregatedExceptions">
            <summary>
            Gets the collection of exceptions .
            </summary>
        </member>
        <member name="T:NUnit.Engine.Extensibility.ExtensionAttribute">
            <summary>
            The ExtensionAttribute is used to identify a class that is intended
            to serve as an extension.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.ExtensionAttribute.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:NUnit.Engine.Extensibility.ExtensionAttribute"/> class.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.Path">
            <summary>
            A unique string identifying the ExtensionPoint for which this Extension is 
            intended. This is an optional field provided NUnit is able to deduce the
            ExtensionPoint from the Type of the extension class.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.Description">
            <summary>
            An optional description of what the extension does.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.Enabled">
            <summary>
            Flag indicating whether the extension is enabled.
            </summary>
            <value><c>true</c> if enabled; otherwise, <c>false</c>.</value>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.EngineVersion">
            <summary>
            The minimum Engine version for which this extension is designed
            </summary>
        </member>
        <member name="T:NUnit.Engine.Extensibility.ExtensionPointAttribute">
            <summary>
            ExtensionPointAttribute is used at the assembly level to identify and
            document any ExtensionPoints supported by the assembly.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.ExtensionPointAttribute.#ctor(System.String,System.Type)">
            <summary>
            Construct an ExtensionPointAttribute
            </summary>
            <param name="path">A unique string identifying the extension point.</param>
            <param name="type">The required Type of any extension that is installed at this extension point.</param>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionPointAttribute.Path">
            <summary>
            The unique string identifying this ExtensionPoint. This identifier
            is typically formatted as a path using '/' and the set of extension 
            points is sometimes viewed as forming a tree.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionPointAttribute.Type">
            <summary>
            The required Type (usually an interface) of any extension that is 
            installed at this ExtensionPoint.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionPointAttribute.Description">
            <summary>
            An optional description of the purpose of the ExtensionPoint
            </summary>
        </member>
        <member name="T:NUnit.Engine.Extensibility.ExtensionPropertyAttribute">
            <summary>
            The ExtensionPropertyAttribute is used to specify named properties for an extension.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.ExtensionPropertyAttribute.#ctor(System.String,System.String)">
            <summary>
            Construct an ExtensionPropertyAttribute
            </summary>
            <param name="name">The name of the property</param>
            <param name="value">The property value</param>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionPropertyAttribute.Name">
            <summary>
            The name of the property.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionPropertyAttribute.Value">
            <summary>
            The property value
            </summary>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IDriverFactory">
            <summary>
            Interface implemented by a Type that knows how to create a driver for a test assembly.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IDriverFactory.IsSupportedTestFramework(System.Reflection.AssemblyName)">
            <summary>
            Gets a flag indicating whether a given AssemblyName
            represents a test framework supported by this factory.
            </summary>
            <param name="reference">An AssemblyName referring to the possible test framework.</param>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IDriverFactory.GetDriver(System.AppDomain,System.Reflection.AssemblyName)">
            <summary>
            Gets a driver for a given test assembly and a framework
            which the assembly is already known to reference.
            </summary>
            <param name="domain">The domain in which the assembly will be loaded</param>
            <param name="reference">An AssemblyName referring to the test framework.</param>
            <returns></returns>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IExtensionNode">
            <summary>
            The IExtensionNode interface is implemented by a class that represents a
            single extension being installed on a particular extension point.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.TypeName">
            <summary>
            Gets the full name of the Type of the extension object.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.Enabled">
            <summary>
            Gets a value indicating whether this <see cref="T:NUnit.Engine.Extensibility.IExtensionNode"/> is enabled.
            </summary>
            <value><c>true</c> if enabled; otherwise, <c>false</c>.</value>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.Path">
            <summary>
            Gets the unique string identifying the ExtensionPoint for which
            this Extension is intended. This identifier may be supplied by the attribute
            marking the extension or deduced by NUnit from the Type of the extension class.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.Description">
            <summary>
            Gets an optional description of what the extension does.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.TargetFramework">
            <summary>
            The TargetFramework of the extension assembly.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.PropertyNames">
            <summary>
            Gets a collection of the names of all this extension's properties
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IExtensionNode.GetValues(System.String)">
            <summary>
            Gets a collection of the values of a particular named property
            If none are present, returns an empty enumerator.
            </summary>
            <param name="name">The property name</param>
            <returns>A collection of values</returns>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.AssemblyPath">
            <summary>
            The path to the assembly implementing this extension.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.AssemblyVersion">
            <summary>
            The version of the assembly implementing this extension.
            </summary>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IExtensionPoint">
            <summary>
            An ExtensionPoint represents a single point in the TestEngine
            that may be extended by user addins and extensions.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionPoint.Path">
            <summary>
            Gets the unique path identifying this extension point.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionPoint.Description">
            <summary>
            Gets the description of this extension point. May be null.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionPoint.TypeName">
            <summary>
            Gets the FullName of the Type required for any extension to be installed at this extension point.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionPoint.Extensions">
            <summary>
            Gets an enumeration of IExtensionNodes for extensions installed on this extension point.
            </summary>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IFrameworkDriver">
            <summary>
            The IFrameworkDriver interface is implemented by a class that
            is able to use an external framework to explore or run tests
            under the engine.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IFrameworkDriver.ID">
            <summary>
            Gets and sets the unique identifier for this driver,
            used to ensure that test ids are unique across drivers.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.Load(System.String,System.Collections.Generic.IDictionary{System.String,System.Object})">
            <summary>
            Loads the tests in an assembly.
            </summary>
            <returns>An Xml string representing the loaded test</returns>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.CountTestCases(System.String)">
            <summary>
            Count the test cases that would be executed.
            </summary>
            <param name="filter">An XML string representing the TestFilter to use in counting the tests</param>
            <returns>The number of test cases counted</returns>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.Run(NUnit.Engine.ITestEventListener,System.String)">
            <summary>
            Executes the tests in an assembly.
            </summary>
            <param name="listener">An ITestEventHandler that receives progress notices</param>
            <param name="filter">A XML string representing the filter that controls which tests are executed</param>
            <returns>An Xml string representing the result</returns>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.Explore(System.String)">
            <summary>
            Returns information about the tests in an assembly.
            </summary>
            <param name="filter">An XML string representing the filter that controls which tests are included</param>
            <returns>An Xml string representing the tests</returns>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.StopRun(System.Boolean)">
            <summary>
            Cancel the ongoing test run. If no  test is running, the call is ignored.
            </summary>
            <param name="force">If true, cancel any ongoing test threads, otherwise wait for them to complete.</param>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IProject">
            <summary>
            Interface for the various project types that the engine can load.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IProject.ProjectPath">
            <summary>
            Gets the path to the file storing this project, if any.
            If the project has not been saved, this is null.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IProject.ActiveConfigName">
            <summary>
            Gets the active configuration, as defined
            by the particular project.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IProject.ConfigNames">
            <summary>
            Gets a list of the configs for this project
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IProject.GetTestPackage">
            <summary>
            Gets a test package for the primary or active
            configuration within the project. The package 
            includes all the assemblies and any settings
            specified in the project format.
            </summary>
            <returns>A TestPackage</returns>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IProject.GetTestPackage(System.String)">
            <summary>
            Gets a TestPackage for a specific configuration
            within the project. The package includes all the
            assemblies and any settings specified in the 
            project format.
            </summary>
            <param name="configName">The name of the config to use</param>
            <returns>A TestPackage for the named configuration.</returns>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IProjectLoader">
            <summary>
            The IProjectLoader interface is implemented by any class
            that knows how to load projects in a specific format.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IProjectLoader.CanLoadFrom(System.String)">
            <summary>
            Returns true if the file indicated is one that this
            loader knows how to load.
            </summary>
            <param name="path">The path of the project file</param>
            <returns>True if the loader knows how to load this file, otherwise false</returns>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IProjectLoader.LoadFrom(System.String)">
            <summary>
            Loads a project of a known format.
            </summary>
            <param name="path">The path of the project file</param>
            <returns>An IProject interface to the loaded project or null if the project cannot be loaded</returns>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IResultWriter">
            <summary>
            Common interface for objects that process and write out test results
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IResultWriter.CheckWritability(System.String)">
            <summary>
            Checks if the output path is writable. If the output is not
            writable, this method should throw an exception.
            </summary>
            <param name="outputPath"></param>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IResultWriter.WriteResultFile(System.Xml.XmlNode,System.String)">
            <summary>
            Writes result to the specified output path.
            </summary>
            <param name="resultNode">XmlNode for the result</param>
            <param name="outputPath">Path to which it should be written</param>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IResultWriter.WriteResultFile(System.Xml.XmlNode,System.IO.TextWriter)">
            <summary>
            Writes result to a TextWriter.
            </summary>
            <param name="resultNode">XmlNode for the result</param>
            <param name="writer">TextWriter to which it should be written</param>
        </member>
        <member name="T:NUnit.Engine.Extensibility.TypeExtensionPointAttribute">
            <summary>
            TypeExtensionPointAttribute is used to bind an extension point
            to a class or interface.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.#ctor(System.String)">
            <summary>
            Construct a TypeExtensionPointAttribute, specifying the path.
            </summary>
            <param name="path">A unique string identifying the extension point.</param>
        </member>
        <member name="M:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.#ctor">
            <summary>
            Construct an TypeExtensionPointAttribute, without specifying the path.
            The extension point will use a path constructed based on the interface
            or class to which the attribute is applied.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.Path">
            <summary>
            The unique string identifying this ExtensionPoint. This identifier
            is typically formatted as a path using '/' and the set of extension 
            points is sometimes viewed as forming a tree.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.Description">
            <summary>
            An optional description of the purpose of the ExtensionPoint
            </summary>
        </member>
        <member name="T:NUnit.Engine.IAvailableRuntimes">
            <summary>
            Interface that returns a list of available runtime frameworks.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IAvailableRuntimes.AvailableRuntimes">
            <summary>
            Gets a list of available runtime frameworks.
            </summary>
        </member>
        <member name="T:NUnit.Engine.IExtensionService">
            <summary>
            The IExtensionService interface allows a runner to manage extensions.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IExtensionService.ExtensionPoints">
            <summary>
            Gets an enumeration of all ExtensionPoints in the engine.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IExtensionService.Extensions">
            <summary>
            Gets an enumeration of all installed Extensions.
            </summary>
        </member>
        <member name="M:NUnit.Engine.IExtensionService.GetExtensionPoint(System.String)">
            <summary>
            Get an ExtensionPoint based on its unique identifying path.
            </summary>
        </member>
        <member name="M:NUnit.Engine.IExtensionService.GetExtensionNodes(System.String)">
            <summary>
            Get an enumeration of ExtensionNodes based on their identifying path.
            </summary>
        </member>
        <member name="M:NUnit.Engine.IExtensionService.EnableExtension(System.String,System.Boolean)">
            <summary>
            Enable or disable an extension
            </summary>
            <param name="typeName"></param>
            <param name="enabled"></param>
        </member>
        <member name="T:NUnit.Engine.ILogger">
            <summary>
            Interface for logging within the engine
            </summary>
        </member>
        <member name="M:NUnit.Engine.ILogger.Error(System.String)">
            <summary>
            Logs the specified message at the error level.
            </summary>
            <param name="message">The message.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Error(System.String,System.Object[])">
            <summary>
            Logs the specified message at the error level.
            </summary>
            <param name="format">The message.</param>
            <param name="args">The arguments.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Warning(System.String)">
            <summary>
            Logs the specified message at the warning level.
            </summary>
            <param name="message">The message.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Warning(System.String,System.Object[])">
            <summary>
            Logs the specified message at the warning level.
            </summary>
            <param name="format">The message.</param>
            <param name="args">The arguments.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Info(System.String)">
            <summary>
            Logs the specified message at the info level.
            </summary>
            <param name="message">The message.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Info(System.String,System.Object[])">
            <summary>
            Logs the specified message at the info level.
            </summary>
            <param name="format">The message.</param>
            <param name="args">The arguments.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Debug(System.String)">
            <summary>
            Logs the specified message at the debug level.
            </summary>
            <param name="message">The message.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Debug(System.String,System.Object[])">
            <summary>
            Logs the specified message at the debug level.
            </summary>
            <param name="format">The message.</param>
            <param name="args">The arguments.</param>
        </member>
        <member name="T:NUnit.Engine.ILogging">
            <summary>
            Interface to abstract getting loggers
            </summary>
        </member>
        <member name="M:NUnit.Engine.ILogging.GetLogger(System.String)">
            <summary>
            Gets the logger.
            </summary>
            <param name="name">The name of the logger to get.</param>
            <returns></returns>
        </member>
        <member name="T:NUnit.Engine.InternalTraceLevel">
            <summary>
            InternalTraceLevel is an enumeration controlling the
            level of detailed presented in the internal log.
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Default">
            <summary>
            Use the default settings as specified by the user.
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Off">
            <summary>
            Do not display any trace messages
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Error">
            <summary>
            Display Error messages only
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Warning">
            <summary>
            Display Warning level and higher messages
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Info">
            <summary>
            Display informational and higher messages
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Debug">
            <summary>
            Display debug messages and higher - i.e. all messages
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Verbose">
            <summary>
            Display debug messages and higher - i.e. all messages
            </summary>
        </member>
        <member name="T:NUnit.Engine.IRecentFiles">
            <summary>
            The IRecentFiles interface is used to isolate the app
            from various implementations of recent files.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRecentFiles.MaxFiles">
            <summary>
            The max number of files saved
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRecentFiles.Entries">
            <summary>
            Get a list of all the file entries
            </summary>
            <returns>The most recent file list</returns>
        </member>
        <member name="M:NUnit.Engine.IRecentFiles.SetMostRecent(System.String)">
            <summary>
            Set the most recent file name, reordering
            the saved names as needed and removing the oldest
            if the max number of files would be exceeded.
            The current CLR version is used to create the entry.
            </summary>
        </member>
        <member name="M:NUnit.Engine.IRecentFiles.Remove(System.String)">
            <summary>
            Remove a file from the list
            </summary>
            <param name="fileName">The name of the file to remove</param>
        </member>
        <member name="T:NUnit.Engine.IResultService">
            <summary>
            IResultWriterService provides result writers for a specified
            well-known format.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IResultService.Formats">
            <summary>
            Gets an array of the available formats
            </summary>
        </member>
        <member name="M:NUnit.Engine.IResultService.GetResultWriter(System.String,System.Object[])">
            <summary>
            Gets a ResultWriter for a given format and set of arguments.
            </summary>
            <param name="format">The name of the format to be used</param>
            <param name="args">A set of arguments to be used in constructing the writer or null if non arguments are needed</param>
            <returns>An IResultWriter</returns>
        </member>
        <member name="T:NUnit.Engine.IRuntimeFramework">
            <summary>
            Interface implemented by objects representing a runtime framework.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRuntimeFramework.Id">
            <summary>
            Gets the inique Id for this runtime, such as "net-4.5"
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRuntimeFramework.DisplayName">
            <summary>
            Gets the display name of the framework, such as ".NET 4.5"
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRuntimeFramework.FrameworkVersion">
            <summary>
            Gets the framework version: usually contains two components, Major
            and Minor, which match the corresponding CLR components, but not always.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRuntimeFramework.ClrVersion">
            <summary>
            Gets the Version of the CLR for this framework
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRuntimeFramework.Profile">
            <summary>
            Gets a string representing the particular profile installed,
            or null if there is no profile. Currently. the only defined 
            values are Full and Client.
            </summary>
        </member>
        <member name="T:NUnit.Engine.IRuntimeFrameworkService">
            <summary>
            Implemented by a type that provides information about the
            current and other available runtimes.
            </summary>
        </member>
        <member name="M:NUnit.Engine.IRuntimeFrameworkService.IsAvailable(System.String)">
            <summary>
            Returns true if the runtime framework represented by
            the string passed as an argument is available.
            </summary>
            <param name="framework">A string representing a framework, like 'net-4.0'</param>
            <returns>True if the framework is available, false if unavailable or nonexistent</returns>
        </member>
        <member name="M:NUnit.Engine.IRuntimeFrameworkService.SelectRuntimeFramework(NUnit.Engine.TestPackage)">
             <summary>
             Selects a target runtime framework for a TestPackage based on
             the settings in the package and the assemblies themselves.
             The package RuntimeFramework setting may be updated as a 
             result and the selected runtime is returned.
            
             Note that if a package has subpackages, the subpackages may run on a different
             framework to the top-level package. In future, this method should
             probably not return a simple string, and instead require runners
             to inspect the test package structure, to find all desired frameworks.
             </summary>
             <param name="package">A TestPackage</param>
             <returns>The selected RuntimeFramework</returns>
        </member>
        <member name="T:NUnit.Engine.ServiceStatus">
            <summary>
            Enumeration representing the status of a service
            </summary>
        </member>
        <member name="F:NUnit.Engine.ServiceStatus.Stopped">
            <summary>Service was never started or has been stopped</summary>
        </member>
        <member name="F:NUnit.Engine.ServiceStatus.Started">
            <summary>Started successfully</summary>
        </member>
        <member name="F:NUnit.Engine.ServiceStatus.Error">
            <summary>Service failed to start and is unavailable</summary>
        </member>
        <member name="T:NUnit.Engine.IService">
            <summary>
            The IService interface is implemented by all Services. Although it
            is extensible, it does not reside in the Extensibility namespace
            because it is so widely used by the engine.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IService.ServiceContext">
            <summary>
            The ServiceContext
            </summary>
        </member>
        <member name="P:NUnit.Engine.IService.Status">
            <summary>
            Gets the ServiceStatus of this service
            </summary>
        </member>
        <member name="M:NUnit.Engine.IService.StartService">
            <summary>
            Initialize the Service
            </summary>
        </member>
        <member name="M:NUnit.Engine.IService.StopService">
            <summary>
            Do any cleanup needed before terminating the service
            </summary>
        </member>
        <member name="T:NUnit.Engine.IServiceLocator">
            <summary>
            IServiceLocator allows clients to locate any NUnit services
            for which the interface is referenced. In normal use, this
            linits it to those services using interfaces defined in the 
            nunit.engine.api assembly.
            </summary>
        </member>
        <member name="M:NUnit.Engine.IServiceLocator.GetService``1">
            <summary>
            Return a specified type of service
            </summary>
        </member>
        <member name="M:NUnit.Engine.IServiceLocator.GetService(System.Type)">
            <summary>
            Return a specified type of service
            </summary>
        </member>
        <member name="T:NUnit.Engine.SettingsEventHandler">
            <summary>
            Event handler for settings changes
            </summary>
            <param name="sender">The sender.</param>
            <param name="args">The <see cref="T:NUnit.Engine.SettingsEventArgs"/> instance containing the event data.</param>
        </member>
        <member name="T:NUnit.Engine.SettingsEventArgs">
            <summary>
            Event argument for settings changes
            </summary>
        </member>
        <member name="M:NUnit.Engine.SettingsEventArgs.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:NUnit.Engine.SettingsEventArgs"/> class.
            </summary>
            <param name="settingName">Name of the setting that has changed.</param>
        </member>
        <member name="P:NUnit.Engine.SettingsEventArgs.SettingName">
            <summary>
            Gets the name of the setting that has changed
            </summary>
        </member>
        <member name="T:NUnit.Engine.ISettings">
            <summary>
            The ISettings interface is used to access all user
            settings and options.
            </summary>
        </member>
        <member name="E:NUnit.Engine.ISettings.Changed">
            <summary>
            Occurs when the settings are changed.
            </summary>
        </member>
        <member name="M:NUnit.Engine.ISettings.GetSetting(System.String)">
            <summary>
            Load a setting from the storage.
            </summary>
            <param name="settingName">Name of the setting to load</param>
            <returns>Value of the setting or null</returns>
        </member>
        <member name="M:NUnit.Engine.ISettings.GetSetting``1(System.String,``0)">
            <summary>
            Load a setting from the storage or return a default value
            </summary>
            <param name="settingName">Name of the setting to load</param>
            <param name="defaultValue">Value to return if the setting is missing</param>
            <returns>Value of the setting or the default value</returns>
        </member>
        <member name="M:NUnit.Engine.ISettings.RemoveSetting(System.String)">
            <summary>
            Remove a setting from the storage
            </summary>
            <param name="settingName">Name of the setting to remove</param>
        </member>
        <member name="M:NUnit.Engine.ISettings.RemoveGroup(System.String)">
            <summary>
            Remove an entire group of settings from the storage
            </summary>
            <param name="groupName">Name of the group to remove</param>
        </member>
        <member name="M:NUnit.Engine.ISettings.SaveSetting(System.String,System.Object)">
            <summary>
            Save a setting in the storage
            </summary>
            <param name="settingName">Name of the setting to save</param>
            <param name="settingValue">Value to be saved</param>
        </member>
        <member name="T:NUnit.Engine.ITestEngine">
            <summary>
            ITestEngine represents an instance of the test engine.
            Clients wanting to discover, explore or run tests start
            require an instance of the engine, which is generally
            acquired from the TestEngineActivator class.
            </summary>
        </member>
        <member name="P:NUnit.Engine.ITestEngine.Services">
            <summary>
            Gets the IServiceLocator interface, which gives access to
            certain services provided by the engine.
            </summary>
        </member>
        <member name="P:NUnit.Engine.ITestEngine.WorkDirectory">
            <summary>
            Gets and sets the directory path used by the engine for saving files.
            Some services may ignore changes to this path made after initialization.
            The default value is the current directory.
            </summary>
        </member>
        <member name="P:NUnit.Engine.ITestEngine.InternalTraceLevel">
            <summary>
            Gets and sets the InternalTraceLevel used by the engine. Changing this
            setting after initialization will have no effect. The default value
            is the value saved in the NUnit settings.
            </summary>
        </member>
        <member name="M:NUnit.Engine.ITestEngine.Initialize">
             <summary>
             Initialize the engine. This includes initializing mono addins,
             setting the trace level and creating the standard set of services
             used in the Engine.
            
             This interface is not normally called by user code. Programs linking
             only to the nunit.engine.api assembly are given a
             pre-initialized instance of TestEngine. Programs
             that link directly to nunit.engine usually do so
             in order to perform custom initialization.
             </summary>
        </member>
        <member name="M:NUnit.Engine.ITestEngine.GetRunner(NUnit.Engine.TestPackage)">
            <summary>
            Returns a test runner instance for use by clients in discovering,
            exploring and executing tests.
            </summary>
            <param name="package">The TestPackage for which the runner is intended.</param>
            <returns>An ITestRunner.</returns>
        </member>
        <member name="T:NUnit.Engine.ITestEventListener">
            <summary>
            The ITestListener interface is used to receive notices of significant
            events while a test is running. Its single method accepts an Xml string,
            which may represent any event generated by the test framework, the driver
            or any of the runners internal to the engine. Use of Xml means that
            any driver and framework may add additional events and the engine will
            simply pass them on through this interface.
            </summary>
        </member>
        <member name="M:NUnit.Engine.ITestEventListener.OnTestEvent(System.String)">
            <summary>
            Handle a progress report or other event.
            </summary>
            <param name="report">An XML progress report.</param>
        </member>
        <member name="T:NUnit.Engine.ITestFilterBuilder">
            <summary>
            Interface to a TestFilterBuilder, which is used to create TestFilters
            </summary>
        </member>
        <member name="M:NUnit.Engine.ITestFilterBuilder.AddTest(System.String)">
            <summary>
            Add a test to be selected
            </summary>
            <param name="fullName">The full name of the test, as created by NUnit</param>
        </member>
        <member name="M:NUnit.Engine.ITestFilterBuilder.SelectWhere(System.String)">
            <summary>
            Specify what is to be included by the filter using a where clause.
            </summary>
            <param name="whereClause">A where clause that will be parsed by NUnit to create the filter.</param>
        </member>
        <member name="M:NUnit.Engine.ITestFilterBuilder.GetFilter">
            <summary>
            Get a TestFilter constructed according to the criteria specified by the other calls.
            </summary>
            <returns>A TestFilter.</returns>
        </member>
        <member name="T:NUnit.Engine.ITestFilterService">
            <summary>
            The TestFilterService provides builders that can create TestFilters
            </summary>
        </member>
        <member name="M:NUnit.Engine.ITestFilterService.GetTestFilterBuilder">
            <summary>
            Get an uninitialized TestFilterBuilder
            </summary>
        </member>
        <member name="T:NUnit.Engine.ITestRun">
            <summary>
            The ITestRun class represents an ongoing test run.
            </summary>
        </member>
        <member name="P:NUnit.Engine.ITestRun.Result">
            <summary>
            Get the result of the test.
            </summary>
            <returns>An XmlNode representing the test run result</returns>
        </member>
        <member name="M:NUnit.Engine.ITestRun.Wait(System.Int32)">
            <summary>
            Blocks the current thread until the current test run completes
            or the timeout is reached
            </summary>
            <param name="timeout">A <see cref="T:System.Int32"/> that represents the number of milliseconds to wait or -1 milliseconds to wait indefinitely. </param>
            <returns>True if the run completed</returns>
        </member>
        <member name="T:NUnit.Engine.ITestRunner">
            <summary>
            Interface implemented by all test runners.
            </summary>
        </member>
        <member name="P:NUnit.Engine.ITestRunner.IsTestRunning">
            <summary>
            Get a flag indicating whether a test is running
            </summary>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.Load">
            <summary>
            Load a TestPackage for possible execution
            </summary>
            <returns>An XmlNode representing the loaded package.</returns>
            <remarks>
            This method is normally optional, since Explore and Run call
            it automatically when necessary. The method is kept in order
            to make it easier to convert older programs that use it.
            </remarks>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.Unload">
            <summary>
            Unload any loaded TestPackage. If none is loaded,
            the call is ignored.
            </summary>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.Reload">
            <summary>
            Reload the current TestPackage
            </summary>
            <returns>An XmlNode representing the loaded package.</returns>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.CountTestCases(NUnit.Engine.TestFilter)">
            <summary>
            Count the test cases that would be run under
            the specified filter.
            </summary>
            <param name="filter">A TestFilter</param>
            <returns>The count of test cases</returns>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.Run(NUnit.Engine.ITestEventListener,NUnit.Engine.TestFilter)">
            <summary>
            Run the tests in the loaded TestPackage and return a test result. The tests
            are run synchronously and the listener interface is notified as it progresses.
            </summary>
            <param name="listener">The listener that is notified as the run progresses</param>
            <param name="filter">A TestFilter used to select tests</param>
            <returns>An XmlNode giving the result of the test execution</returns>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.RunAsync(NUnit.Engine.ITestEventListener,NUnit.Engine.TestFilter)">
            <summary>
            Start a run of the tests in the loaded TestPackage. The tests are run
            asynchronously and the listener interface is notified as it progresses.
            </summary>
            <param name="listener">The listener that is notified as the run progresses</param>
            <param name="filter">A TestFilter used to select tests</param>
            <returns></returns>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.StopRun(System.Boolean)">
            <summary>
            Cancel the ongoing test run. If no  test is running, the call is ignored.
            </summary>
            <param name="force">If true, cancel any ongoing test threads, otherwise wait for them to complete.</param>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.Explore(NUnit.Engine.TestFilter)">
            <summary>
            Explore a loaded TestPackage and return information about the tests found.
            </summary>
            <param name="filter">The TestFilter to be used in selecting tests to explore.</param>
            <returns>An XmlNode representing the tests found.</returns>
        </member>
        <member name="T:NUnit.Engine.TestEngineActivator">
            <summary>
            TestEngineActivator creates an instance of the test engine and returns an ITestEngine interface.
            </summary>
        </member>
        <member name="M:NUnit.Engine.TestEngineActivator.CreateInstance(System.Boolean)">
            <summary>
            Create an instance of the test engine.
            </summary>
            <param name="unused">This parameter is no longer used but has not been removed to ensure API compatibility.</param>
            <exception cref="T:NUnit.Engine.NUnitEngineNotFoundException">Thrown when a test engine of the required minimum version is not found</exception>
            <returns>An <see cref="T:NUnit.Engine.ITestEngine"/></returns>
        </member>
        <member name="M:NUnit.Engine.TestEngineActivator.CreateInstance(System.Version,System.Boolean)">
            <summary>
            Create an instance of the test engine with a minimum version.
            </summary>
            <param name="minVersion">The minimum version of the engine to return inclusive.</param>
            <param name="unused">This parameter is no longer used but has not been removed to ensure API compatibility.</param>
            <exception cref="T:NUnit.Engine.NUnitEngineNotFoundException">Thrown when a test engine of the required minimum version is not found</exception>
            <returns>An <see cref="T:NUnit.Engine.ITestEngine"/></returns>
        </member>
        <member name="T:NUnit.Engine.TestFilter">
            <summary>
            Abstract base for all test filters. A filter is represented
            by an XmlNode with &lt;filter&gt; as its topmost element.
            In the console runner, filters serve only to carry this
            XML representation, as all filtering is done by the engine.
            </summary>
        </member>
        <member name="M:NUnit.Engine.TestFilter.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:NUnit.Engine.TestFilter"/> class.
            </summary>
            <param name="xmlText">The XML text that specifies the filter.</param>
        </member>
        <member name="F:NUnit.Engine.TestFilter.Empty">
            <summary>
            The empty filter - one that always passes.
            </summary>
        </member>
        <member name="P:NUnit.Engine.TestFilter.Text">
            <summary>
            Gets the XML representation of this filter as a string.
            </summary>
        </member>
        <member name="T:NUnit.Engine.TestPackage">
            <summary>
            TestPackage holds information about a set of test files to
            be loaded by a TestRunner. Each TestPackage represents
            tests for one or more test files. TestPackages may be named
            or anonymous, depending on the constructor used.
            
            Upon construction, a package is given an ID (string), which
            remains unchanged for the lifetime of the TestPackage instance.
            The package ID is passed to the test framework for use in generating
            test IDs.
            
            A runner that reloads test assemblies and wants the ids to remain stable
            should avoid creating a new package but should instead use the original
            package, changing settings as needed. This gives the best chance for the
            tests in the reloaded assembly to match those originally loaded.
            </summary>
        </member>
        <member name="M:NUnit.Engine.TestPackage.#ctor(System.String)">
            <summary>
            Construct a named TestPackage, specifying a file path for
            the assembly or project to be used.
            </summary>
            <param name="filePath">The file path.</param>
        </member>
        <member name="M:NUnit.Engine.TestPackage.#ctor(System.Collections.Generic.IList{System.String})">
            <summary>
            Construct an anonymous TestPackage that wraps test files.
            </summary>
            <param name="testFiles"></param>
        </member>
        <member name="P:NUnit.Engine.TestPackage.ID">
            <summary>
            Every test package gets a unique ID used to prefix test IDs within that package.
            </summary>
            <remarks>
            The generated ID is only unique for packages created within the same application domain.
            For that reason, NUnit pre-creates all test packages that will be needed.
            </remarks>
        </member>
        <member name="P:NUnit.Engine.TestPackage.Name">
            <summary>
            Gets the name of the package
            </summary>
        </member>
        <member name="P:NUnit.Engine.TestPackage.FullName">
            <summary>
            Gets the path to the file containing tests. It may be
            an assembly or a recognized project type.
            </summary>
        </member>
        <member name="P:NUnit.Engine.TestPackage.SubPackages">
            <summary>
            Gets the list of SubPackages contained in this package
            </summary>
        </member>
        <member name="P:NUnit.Engine.TestPackage.Settings">
            <summary>
            Gets the settings dictionary for this package.
            </summary>
        </member>
        <member name="M:NUnit.Engine.TestPackage.AddSubPackage(NUnit.Engine.TestPackage)">
            <summary>
            Add a subproject to the package.
            </summary>
            <param name="subPackage">The subpackage to be added</param>
        </member>
        <member name="M:NUnit.Engine.TestPackage.AddSetting(System.String,System.Object)">
            <summary>
            Add a setting to a package and all of its subpackages.
            </summary>
            <param name="name">The name of the setting</param>
            <param name="value">The value of the setting</param>
            <remarks>
            Once a package is created, subpackages may have been created
            as well. If you add a setting directly to the Settings dictionary
            of the package, the subpackages are not updated. This method is
            used when the settings are intended to be reflected to all the
            subpackages under the package.
            </remarks>
        </member>
        <member name="M:NUnit.Engine.TestPackage.GetSetting``1(System.String,``0)">
            <summary>
            Return the value of a setting or a default.
            </summary>
            <param name="name">The name of the setting</param>
            <param name="defaultSetting">The default value</param>
            <returns></returns>
        </member>
        <member name="T:NUnit.Engine.TestSelectionParserException">
            <summary>
            TestSelectionParserException is thrown when an error
            is found while parsing the selection expression.
            </summary>
        </member>
        <member name="M:NUnit.Engine.TestSelectionParserException.#ctor(System.String)">
            <summary>
            Construct with a message
            </summary>
        </member>
        <member name="M:NUnit.Engine.TestSelectionParserException.#ctor(System.String,System.Exception)">
            <summary>
            Construct with a message and inner exception
            </summary>
            <param name="message"></param>
            <param name="innerException"></param>
        </member>
        <member name="M:NUnit.Engine.TestSelectionParserException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Serialization constructor
            </summary>
        </member>
    </members>
</doc>
tools\agents\net20\nunit.engine.core.dll
md5: FD4B906005532E5CC0F411423E20DEDE | sha1: 9AE0C5E493190B0B52955FE683A435A2B764CB88 | sha256: AF723D71B00A600286A8DE52B713DF9F1A51DAD8B323A4FCAE5C6838337F73D7 | sha512: 9A77E62BD37DF1393274DE28E83EEB65450F16C5B64AE11E071878EF69E75F44097556CA140EC1A369ECE75FA8453D4EBB74F2E4554F8BCF98743F07539D1587
tools\agents\net20\testcentric.engine.metadata.dll
tools\agents\net20\nunit-agent.exe.ignore
 
tools\agents\net20\nunit-agent-x86.exe.ignore
 
tools\agents\net20\nunit.agent.addins
 
tools\agents\net40\nunit-agent.exe
md5: 6D7477036C30541BDBE49E2DBDDD6240 | sha1: 7966F3632C4FB7C7D62FCCE3C42CC9EE51282FA9 | sha256: 7062570E460FDE717B787E0A6E5B7BBC7D9ADF3B46911025EA1E800D690FE355 | sha512: 6D6B6CAEE4B5B7CD00250608A4B4996D74A1D20E6FC652EF910CD2B197DADACDB4D0269B15978B4058D014BA6F07F16819564263F9FB4C4B410DCEE9500E5CF7
tools\agents\net40\nunit-agent.exe.config
<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <!--
   Nunit-agent only runs under .NET 2.0 or higher. 
   The setting    useLegacyV2RuntimeActivationPolicy only applies 
   under .NET 4.0 and permits use of mixed mode assemblies, 
   which would otherwise not load correctly. 
  -->
  <startup useLegacyV2RuntimeActivationPolicy="true">
    <!--
     Nunit-agent is normally run by the console or gui
     runners and not independently. In normal usage, 
     the runner specifies which runtime should be used.
     
     Do NOT add any supportedRuntime elements here, 
     since they may prevent the runner from controlling 
     the runtime that is used!
    -->
  </startup>

  <runtime>
    <!-- Ensure that test exceptions don't crash NUnit -->
    <legacyUnhandledExceptionPolicy enabled="1" />

    <!--
     Since legacyUnhandledExceptionPolicy keeps the console from being killed even though an NUnit framework
     test worker thread is killed, this is needed to prevent a hang. NUnit framework can only handle these
     exceptions when this config element is present. (Or if future versions of NUnit framework drop support
     for partial trust which would enable it to use [HandleProcessCorruptedStateExceptions].)
    -->
    <legacyCorruptedStateExceptionsPolicy enabled="true" />

    <!-- Run partial trust V2 assemblies in full trust under .NET 4.0 -->
    <loadFromRemoteSources enabled="true" />

    <!-- Enable reading source information from Portable and Embedded PDBs when running applications -->
    <!-- built against previous .NET Framework versions on .NET Framework 4.7.2 -->
    <AppContextSwitchOverrides value="Switch.System.Diagnostics.IgnorePortablePDBsInStackTraces=false" />
  </runtime>
  
</configuration>
tools\agents\net40\nunit-agent-x86.exe
md5: 40D66082DA2BC6960D645AC6E6CCBB7C | sha1: 84A6F807ADD020817CFF2877400A49FB4C0B4807 | sha256: 41A783024D86816FB2F010D78CC9963A4FF7EDC83BD3101ED49C2B3FB283DDAE | sha512: DE57C9205FF64D0B168113CA1A931D78C490524287D94D6394C663B3534A550E3FD55C171D8854F3DD739222622E3C4E8654B10AAC6CDC07E48E77A499840E0F
tools\agents\net40\nunit-agent-x86.exe.config
<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <!--
   Nunit-agent only runs under .NET 2.0 or higher. 
   The setting    useLegacyV2RuntimeActivationPolicy only applies 
   under .NET 4.0 and permits use of mixed mode assemblies, 
   which would otherwise not load correctly. 
  -->
  <startup useLegacyV2RuntimeActivationPolicy="true">
    <!--
     Nunit-agent is normally run by the console or gui
     runners and not independently. In normal usage, 
     the runner specifies which runtime should be used.
     
     Do NOT add any supportedRuntime elements here, 
     since they may prevent the runner from controlling 
     the runtime that is used!
    -->
  </startup>

  <runtime>
    <!-- Ensure that test exceptions don't crash NUnit -->
    <legacyUnhandledExceptionPolicy enabled="1" />

    <!--
     Since legacyUnhandledExceptionPolicy keeps the console from being killed even though an NUnit framework
     test worker thread is killed, this is needed to prevent a hang. NUnit framework can only handle these
     exceptions when this config element is present. (Or if future versions of NUnit framework drop support
     for partial trust which would enable it to use [HandleProcessCorruptedStateExceptions].)
    -->
    <legacyCorruptedStateExceptionsPolicy enabled="true" />

    <!-- Run partial trust V2 assemblies in full trust under .NET 4.0 -->
    <loadFromRemoteSources enabled="true" />

    <!-- Enable reading source information from Portable and Embedded PDBs when running applications -->
    <!-- built against previous .NET Framework versions on .NET Framework 4.7.2 -->
    <AppContextSwitchOverrides value="Switch.System.Diagnostics.IgnorePortablePDBsInStackTraces=false" />
  </runtime>
  
</configuration>
tools\agents\net40\nunit.engine.api.dll
md5: 4ECAAE26D95FAC203B2D29626DF709B9 | sha1: 9FE82DFE7B08D415C0A712C8CDF7DBA67E730EB3 | sha256: E48566C95AAA4C92352C22F24E74D09EA912E42F84ED1D0EBE357EE31D1C6040 | sha512: 3BEE04A2C46AE888D3694638A4CA0A76B4B94EA6283FDA760AB665E1C666DCCA97AFFE4172ACB55C1818B6B5B14DF1525AC9ABE42BC46539B4C3D4CE0FCF8FFA
tools\agents\net40\nunit.engine.api.xml
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>nunit.engine.api</name>
    </assembly>
    <members>
        <member name="T:NUnit.Engine.NUnitEngineException">
            <summary>
            NUnitEngineException is thrown when the engine has been
            called with improper values or when a particular facility
            is not available.
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineException.#ctor(System.String)">
            <summary>
            Construct with a message
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineException.#ctor(System.String,System.Exception)">
            <summary>
            Construct with a message and inner exception
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Serialization constructor
            </summary>
        </member>
        <member name="T:NUnit.Engine.NUnitEngineNotFoundException">
            <summary>
            The exception that is thrown if a valid test engine is not found
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineNotFoundException.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:NUnit.Engine.NUnitEngineNotFoundException"/> class.
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineNotFoundException.#ctor(System.Version)">
            <summary>
            Initializes a new instance of the <see cref="T:NUnit.Engine.NUnitEngineNotFoundException"/> class.
            </summary>
            <param name="minVersion">The minimum version.</param>
        </member>
        <member name="T:NUnit.Engine.NUnitEngineUnloadException">
            <summary>
            NUnitEngineUnloadException is thrown when a test run has completed successfully
            but one or more errors were encountered when attempting to unload
            and shut down the test run cleanly.
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.String)">
            <summary>
            Construct with a message
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.String,System.Exception)">
            <summary>
            Construct with a message and inner exception
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.Collections.Generic.ICollection{System.Exception})">
            <summary>
            Construct with a message and a collection of exceptions.
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Serialization constructor.
            </summary>
        </member>
        <member name="P:NUnit.Engine.NUnitEngineUnloadException.AggregatedExceptions">
            <summary>
            Gets the collection of exceptions .
            </summary>
        </member>
        <member name="T:NUnit.Engine.Extensibility.ExtensionAttribute">
            <summary>
            The ExtensionAttribute is used to identify a class that is intended
            to serve as an extension.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.ExtensionAttribute.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:NUnit.Engine.Extensibility.ExtensionAttribute"/> class.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.Path">
            <summary>
            A unique string identifying the ExtensionPoint for which this Extension is 
            intended. This is an optional field provided NUnit is able to deduce the
            ExtensionPoint from the Type of the extension class.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.Description">
            <summary>
            An optional description of what the extension does.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.Enabled">
            <summary>
            Flag indicating whether the extension is enabled.
            </summary>
            <value><c>true</c> if enabled; otherwise, <c>false</c>.</value>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.EngineVersion">
            <summary>
            The minimum Engine version for which this extension is designed
            </summary>
        </member>
        <member name="T:NUnit.Engine.Extensibility.ExtensionPointAttribute">
            <summary>
            ExtensionPointAttribute is used at the assembly level to identify and
            document any ExtensionPoints supported by the assembly.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.ExtensionPointAttribute.#ctor(System.String,System.Type)">
            <summary>
            Construct an ExtensionPointAttribute
            </summary>
            <param name="path">A unique string identifying the extension point.</param>
            <param name="type">The required Type of any extension that is installed at this extension point.</param>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionPointAttribute.Path">
            <summary>
            The unique string identifying this ExtensionPoint. This identifier
            is typically formatted as a path using '/' and the set of extension 
            points is sometimes viewed as forming a tree.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionPointAttribute.Type">
            <summary>
            The required Type (usually an interface) of any extension that is 
            installed at this ExtensionPoint.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionPointAttribute.Description">
            <summary>
            An optional description of the purpose of the ExtensionPoint
            </summary>
        </member>
        <member name="T:NUnit.Engine.Extensibility.ExtensionPropertyAttribute">
            <summary>
            The ExtensionPropertyAttribute is used to specify named properties for an extension.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.ExtensionPropertyAttribute.#ctor(System.String,System.String)">
            <summary>
            Construct an ExtensionPropertyAttribute
            </summary>
            <param name="name">The name of the property</param>
            <param name="value">The property value</param>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionPropertyAttribute.Name">
            <summary>
            The name of the property.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionPropertyAttribute.Value">
            <summary>
            The property value
            </summary>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IDriverFactory">
            <summary>
            Interface implemented by a Type that knows how to create a driver for a test assembly.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IDriverFactory.IsSupportedTestFramework(System.Reflection.AssemblyName)">
            <summary>
            Gets a flag indicating whether a given AssemblyName
            represents a test framework supported by this factory.
            </summary>
            <param name="reference">An AssemblyName referring to the possible test framework.</param>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IDriverFactory.GetDriver(System.AppDomain,System.Reflection.AssemblyName)">
            <summary>
            Gets a driver for a given test assembly and a framework
            which the assembly is already known to reference.
            </summary>
            <param name="domain">The domain in which the assembly will be loaded</param>
            <param name="reference">An AssemblyName referring to the test framework.</param>
            <returns></returns>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IExtensionNode">
            <summary>
            The IExtensionNode interface is implemented by a class that represents a
            single extension being installed on a particular extension point.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.TypeName">
            <summary>
            Gets the full name of the Type of the extension object.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.Enabled">
            <summary>
            Gets a value indicating whether this <see cref="T:NUnit.Engine.Extensibility.IExtensionNode"/> is enabled.
            </summary>
            <value><c>true</c> if enabled; otherwise, <c>false</c>.</value>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.Path">
            <summary>
            Gets the unique string identifying the ExtensionPoint for which
            this Extension is intended. This identifier may be supplied by the attribute
            marking the extension or deduced by NUnit from the Type of the extension class.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.Description">
            <summary>
            Gets an optional description of what the extension does.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.TargetFramework">
            <summary>
            The TargetFramework of the extension assembly.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.PropertyNames">
            <summary>
            Gets a collection of the names of all this extension's properties
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IExtensionNode.GetValues(System.String)">
            <summary>
            Gets a collection of the values of a particular named property
            If none are present, returns an empty enumerator.
            </summary>
            <param name="name">The property name</param>
            <returns>A collection of values</returns>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.AssemblyPath">
            <summary>
            The path to the assembly implementing this extension.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.AssemblyVersion">
            <summary>
            The version of the assembly implementing this extension.
            </summary>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IExtensionPoint">
            <summary>
            An ExtensionPoint represents a single point in the TestEngine
            that may be extended by user addins and extensions.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionPoint.Path">
            <summary>
            Gets the unique path identifying this extension point.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionPoint.Description">
            <summary>
            Gets the description of this extension point. May be null.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionPoint.TypeName">
            <summary>
            Gets the FullName of the Type required for any extension to be installed at this extension point.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionPoint.Extensions">
            <summary>
            Gets an enumeration of IExtensionNodes for extensions installed on this extension point.
            </summary>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IFrameworkDriver">
            <summary>
            The IFrameworkDriver interface is implemented by a class that
            is able to use an external framework to explore or run tests
            under the engine.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IFrameworkDriver.ID">
            <summary>
            Gets and sets the unique identifier for this driver,
            used to ensure that test ids are unique across drivers.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.Load(System.String,System.Collections.Generic.IDictionary{System.String,System.Object})">
            <summary>
            Loads the tests in an assembly.
            </summary>
            <returns>An Xml string representing the loaded test</returns>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.CountTestCases(System.String)">
            <summary>
            Count the test cases that would be executed.
            </summary>
            <param name="filter">An XML string representing the TestFilter to use in counting the tests</param>
            <returns>The number of test cases counted</returns>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.Run(NUnit.Engine.ITestEventListener,System.String)">
            <summary>
            Executes the tests in an assembly.
            </summary>
            <param name="listener">An ITestEventHandler that receives progress notices</param>
            <param name="filter">A XML string representing the filter that controls which tests are executed</param>
            <returns>An Xml string representing the result</returns>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.Explore(System.String)">
            <summary>
            Returns information about the tests in an assembly.
            </summary>
            <param name="filter">An XML string representing the filter that controls which tests are included</param>
            <returns>An Xml string representing the tests</returns>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.StopRun(System.Boolean)">
            <summary>
            Cancel the ongoing test run. If no  test is running, the call is ignored.
            </summary>
            <param name="force">If true, cancel any ongoing test threads, otherwise wait for them to complete.</param>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IProject">
            <summary>
            Interface for the various project types that the engine can load.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IProject.ProjectPath">
            <summary>
            Gets the path to the file storing this project, if any.
            If the project has not been saved, this is null.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IProject.ActiveConfigName">
            <summary>
            Gets the active configuration, as defined
            by the particular project.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IProject.ConfigNames">
            <summary>
            Gets a list of the configs for this project
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IProject.GetTestPackage">
            <summary>
            Gets a test package for the primary or active
            configuration within the project. The package 
            includes all the assemblies and any settings
            specified in the project format.
            </summary>
            <returns>A TestPackage</returns>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IProject.GetTestPackage(System.String)">
            <summary>
            Gets a TestPackage for a specific configuration
            within the project. The package includes all the
            assemblies and any settings specified in the 
            project format.
            </summary>
            <param name="configName">The name of the config to use</param>
            <returns>A TestPackage for the named configuration.</returns>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IProjectLoader">
            <summary>
            The IProjectLoader interface is implemented by any class
            that knows how to load projects in a specific format.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IProjectLoader.CanLoadFrom(System.String)">
            <summary>
            Returns true if the file indicated is one that this
            loader knows how to load.
            </summary>
            <param name="path">The path of the project file</param>
            <returns>True if the loader knows how to load this file, otherwise false</returns>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IProjectLoader.LoadFrom(System.String)">
            <summary>
            Loads a project of a known format.
            </summary>
            <param name="path">The path of the project file</param>
            <returns>An IProject interface to the loaded project or null if the project cannot be loaded</returns>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IResultWriter">
            <summary>
            Common interface for objects that process and write out test results
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IResultWriter.CheckWritability(System.String)">
            <summary>
            Checks if the output path is writable. If the output is not
            writable, this method should throw an exception.
            </summary>
            <param name="outputPath"></param>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IResultWriter.WriteResultFile(System.Xml.XmlNode,System.String)">
            <summary>
            Writes result to the specified output path.
            </summary>
            <param name="resultNode">XmlNode for the result</param>
            <param name="outputPath">Path to which it should be written</param>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IResultWriter.WriteResultFile(System.Xml.XmlNode,System.IO.TextWriter)">
            <summary>
            Writes result to a TextWriter.
            </summary>
            <param name="resultNode">XmlNode for the result</param>
            <param name="writer">TextWriter to which it should be written</param>
        </member>
        <member name="T:NUnit.Engine.Extensibility.TypeExtensionPointAttribute">
            <summary>
            TypeExtensionPointAttribute is used to bind an extension point
            to a class or interface.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.#ctor(System.String)">
            <summary>
            Construct a TypeExtensionPointAttribute, specifying the path.
            </summary>
            <param name="path">A unique string identifying the extension point.</param>
        </member>
        <member name="M:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.#ctor">
            <summary>
            Construct an TypeExtensionPointAttribute, without specifying the path.
            The extension point will use a path constructed based on the interface
            or class to which the attribute is applied.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.Path">
            <summary>
            The unique string identifying this ExtensionPoint. This identifier
            is typically formatted as a path using '/' and the set of extension 
            points is sometimes viewed as forming a tree.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.Description">
            <summary>
            An optional description of the purpose of the ExtensionPoint
            </summary>
        </member>
        <member name="T:NUnit.Engine.IAvailableRuntimes">
            <summary>
            Interface that returns a list of available runtime frameworks.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IAvailableRuntimes.AvailableRuntimes">
            <summary>
            Gets a list of available runtime frameworks.
            </summary>
        </member>
        <member name="T:NUnit.Engine.IExtensionService">
            <summary>
            The IExtensionService interface allows a runner to manage extensions.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IExtensionService.ExtensionPoints">
            <summary>
            Gets an enumeration of all ExtensionPoints in the engine.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IExtensionService.Extensions">
            <summary>
            Gets an enumeration of all installed Extensions.
            </summary>
        </member>
        <member name="M:NUnit.Engine.IExtensionService.GetExtensionPoint(System.String)">
            <summary>
            Get an ExtensionPoint based on its unique identifying path.
            </summary>
        </member>
        <member name="M:NUnit.Engine.IExtensionService.GetExtensionNodes(System.String)">
            <summary>
            Get an enumeration of ExtensionNodes based on their identifying path.
            </summary>
        </member>
        <member name="M:NUnit.Engine.IExtensionService.EnableExtension(System.String,System.Boolean)">
            <summary>
            Enable or disable an extension
            </summary>
            <param name="typeName"></param>
            <param name="enabled"></param>
        </member>
        <member name="T:NUnit.Engine.ILogger">
            <summary>
            Interface for logging within the engine
            </summary>
        </member>
        <member name="M:NUnit.Engine.ILogger.Error(System.String)">
            <summary>
            Logs the specified message at the error level.
            </summary>
            <param name="message">The message.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Error(System.String,System.Object[])">
            <summary>
            Logs the specified message at the error level.
            </summary>
            <param name="format">The message.</param>
            <param name="args">The arguments.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Warning(System.String)">
            <summary>
            Logs the specified message at the warning level.
            </summary>
            <param name="message">The message.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Warning(System.String,System.Object[])">
            <summary>
            Logs the specified message at the warning level.
            </summary>
            <param name="format">The message.</param>
            <param name="args">The arguments.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Info(System.String)">
            <summary>
            Logs the specified message at the info level.
            </summary>
            <param name="message">The message.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Info(System.String,System.Object[])">
            <summary>
            Logs the specified message at the info level.
            </summary>
            <param name="format">The message.</param>
            <param name="args">The arguments.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Debug(System.String)">
            <summary>
            Logs the specified message at the debug level.
            </summary>
            <param name="message">The message.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Debug(System.String,System.Object[])">
            <summary>
            Logs the specified message at the debug level.
            </summary>
            <param name="format">The message.</param>
            <param name="args">The arguments.</param>
        </member>
        <member name="T:NUnit.Engine.ILogging">
            <summary>
            Interface to abstract getting loggers
            </summary>
        </member>
        <member name="M:NUnit.Engine.ILogging.GetLogger(System.String)">
            <summary>
            Gets the logger.
            </summary>
            <param name="name">The name of the logger to get.</param>
            <returns></returns>
        </member>
        <member name="T:NUnit.Engine.InternalTraceLevel">
            <summary>
            InternalTraceLevel is an enumeration controlling the
            level of detailed presented in the internal log.
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Default">
            <summary>
            Use the default settings as specified by the user.
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Off">
            <summary>
            Do not display any trace messages
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Error">
            <summary>
            Display Error messages only
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Warning">
            <summary>
            Display Warning level and higher messages
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Info">
            <summary>
            Display informational and higher messages
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Debug">
            <summary>
            Display debug messages and higher - i.e. all messages
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Verbose">
            <summary>
            Display debug messages and higher - i.e. all messages
            </summary>
        </member>
        <member name="T:NUnit.Engine.IRecentFiles">
            <summary>
            The IRecentFiles interface is used to isolate the app
            from various implementations of recent files.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRecentFiles.MaxFiles">
            <summary>
            The max number of files saved
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRecentFiles.Entries">
            <summary>
            Get a list of all the file entries
            </summary>
            <returns>The most recent file list</returns>
        </member>
        <member name="M:NUnit.Engine.IRecentFiles.SetMostRecent(System.String)">
            <summary>
            Set the most recent file name, reordering
            the saved names as needed and removing the oldest
            if the max number of files would be exceeded.
            The current CLR version is used to create the entry.
            </summary>
        </member>
        <member name="M:NUnit.Engine.IRecentFiles.Remove(System.String)">
            <summary>
            Remove a file from the list
            </summary>
            <param name="fileName">The name of the file to remove</param>
        </member>
        <member name="T:NUnit.Engine.IResultService">
            <summary>
            IResultWriterService provides result writers for a specified
            well-known format.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IResultService.Formats">
            <summary>
            Gets an array of the available formats
            </summary>
        </member>
        <member name="M:NUnit.Engine.IResultService.GetResultWriter(System.String,System.Object[])">
            <summary>
            Gets a ResultWriter for a given format and set of arguments.
            </summary>
            <param name="format">The name of the format to be used</param>
            <param name="args">A set of arguments to be used in constructing the writer or null if non arguments are needed</param>
            <returns>An IResultWriter</returns>
        </member>
        <member name="T:NUnit.Engine.IRuntimeFramework">
            <summary>
            Interface implemented by objects representing a runtime framework.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRuntimeFramework.Id">
            <summary>
            Gets the inique Id for this runtime, such as "net-4.5"
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRuntimeFramework.DisplayName">
            <summary>
            Gets the display name of the framework, such as ".NET 4.5"
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRuntimeFramework.FrameworkVersion">
            <summary>
            Gets the framework version: usually contains two components, Major
            and Minor, which match the corresponding CLR components, but not always.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRuntimeFramework.ClrVersion">
            <summary>
            Gets the Version of the CLR for this framework
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRuntimeFramework.Profile">
            <summary>
            Gets a string representing the particular profile installed,
            or null if there is no profile. Currently. the only defined 
            values are Full and Client.
            </summary>
        </member>
        <member name="T:NUnit.Engine.IRuntimeFrameworkService">
            <summary>
            Implemented by a type that provides information about the
            current and other available runtimes.
            </summary>
        </member>
        <member name="M:NUnit.Engine.IRuntimeFrameworkService.IsAvailable(System.String)">
            <summary>
            Returns true if the runtime framework represented by
            the string passed as an argument is available.
            </summary>
            <param name="framework">A string representing a framework, like 'net-4.0'</param>
            <returns>True if the framework is available, false if unavailable or nonexistent</returns>
        </member>
        <member name="M:NUnit.Engine.IRuntimeFrameworkService.SelectRuntimeFramework(NUnit.Engine.TestPackage)">
             <summary>
             Selects a target runtime framework for a TestPackage based on
             the settings in the package and the assemblies themselves.
             The package RuntimeFramework setting may be updated as a 
             result and the selected runtime is returned.
            
             Note that if a package has subpackages, the subpackages may run on a different
             framework to the top-level package. In future, this method should
             probably not return a simple string, and instead require runners
             to inspect the test package structure, to find all desired frameworks.
             </summary>
             <param name="package">A TestPackage</param>
             <returns>The selected RuntimeFramework</returns>
        </member>
        <member name="T:NUnit.Engine.ServiceStatus">
            <summary>
            Enumeration representing the status of a service
            </summary>
        </member>
        <member name="F:NUnit.Engine.ServiceStatus.Stopped">
            <summary>Service was never started or has been stopped</summary>
        </member>
        <member name="F:NUnit.Engine.ServiceStatus.Started">
            <summary>Started successfully</summary>
        </member>
        <member name="F:NUnit.Engine.ServiceStatus.Error">
            <summary>Service failed to start and is unavailable</summary>
        </member>
        <member name="T:NUnit.Engine.IService">
            <summary>
            The IService interface is implemented by all Services. Although it
            is extensible, it does not reside in the Extensibility namespace
            because it is so widely used by the engine.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IService.ServiceContext">
            <summary>
            The ServiceContext
            </summary>
        </member>
        <member name="P:NUnit.Engine.IService.Status">
            <summary>
            Gets the ServiceStatus of this service
            </summary>
        </member>
        <member name="M:NUnit.Engine.IService.StartService">
            <summary>
            Initialize the Service
            </summary>
        </member>
        <member name="M:NUnit.Engine.IService.StopService">
            <summary>
            Do any cleanup needed before terminating the service
            </summary>
        </member>
        <member name="T:NUnit.Engine.IServiceLocator">
            <summary>
            IServiceLocator allows clients to locate any NUnit services
            for which the interface is referenced. In normal use, this
            linits it to those services using interfaces defined in the 
            nunit.engine.api assembly.
            </summary>
        </member>
        <member name="M:NUnit.Engine.IServiceLocator.GetService``1">
            <summary>
            Return a specified type of service
            </summary>
        </member>
        <member name="M:NUnit.Engine.IServiceLocator.GetService(System.Type)">
            <summary>
            Return a specified type of service
            </summary>
        </member>
        <member name="T:NUnit.Engine.SettingsEventHandler">
            <summary>
            Event handler for settings changes
            </summary>
            <param name="sender">The sender.</param>
            <param name="args">The <see cref="T:NUnit.Engine.SettingsEventArgs"/> instance containing the event data.</param>
        </member>
        <member name="T:NUnit.Engine.SettingsEventArgs">
            <summary>
            Event argument for settings changes
            </summary>
        </member>
        <member name="M:NUnit.Engine.SettingsEventArgs.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:NUnit.Engine.SettingsEventArgs"/> class.
            </summary>
            <param name="settingName">Name of the setting that has changed.</param>
        </member>
        <member name="P:NUnit.Engine.SettingsEventArgs.SettingName">
            <summary>
            Gets the name of the setting that has changed
            </summary>
        </member>
        <member name="T:NUnit.Engine.ISettings">
            <summary>
            The ISettings interface is used to access all user
            settings and options.
            </summary>
        </member>
        <member name="E:NUnit.Engine.ISettings.Changed">
            <summary>
            Occurs when the settings are changed.
            </summary>
        </member>
        <member name="M:NUnit.Engine.ISettings.GetSetting(System.String)">
            <summary>
            Load a setting from the storage.
            </summary>
            <param name="settingName">Name of the setting to load</param>
            <returns>Value of the setting or null</returns>
        </member>
        <member name="M:NUnit.Engine.ISettings.GetSetting``1(System.String,``0)">
            <summary>
            Load a setting from the storage or return a default value
            </summary>
            <param name="settingName">Name of the setting to load</param>
            <param name="defaultValue">Value to return if the setting is missing</param>
            <returns>Value of the setting or the default value</returns>
        </member>
        <member name="M:NUnit.Engine.ISettings.RemoveSetting(System.String)">
            <summary>
            Remove a setting from the storage
            </summary>
            <param name="settingName">Name of the setting to remove</param>
        </member>
        <member name="M:NUnit.Engine.ISettings.RemoveGroup(System.String)">
            <summary>
            Remove an entire group of settings from the storage
            </summary>
            <param name="groupName">Name of the group to remove</param>
        </member>
        <member name="M:NUnit.Engine.ISettings.SaveSetting(System.String,System.Object)">
            <summary>
            Save a setting in the storage
            </summary>
            <param name="settingName">Name of the setting to save</param>
            <param name="settingValue">Value to be saved</param>
        </member>
        <member name="T:NUnit.Engine.ITestEngine">
            <summary>
            ITestEngine represents an instance of the test engine.
            Clients wanting to discover, explore or run tests start
            require an instance of the engine, which is generally
            acquired from the TestEngineActivator class.
            </summary>
        </member>
        <member name="P:NUnit.Engine.ITestEngine.Services">
            <summary>
            Gets the IServiceLocator interface, which gives access to
            certain services provided by the engine.
            </summary>
        </member>
        <member name="P:NUnit.Engine.ITestEngine.WorkDirectory">
            <summary>
            Gets and sets the directory path used by the engine for saving files.
            Some services may ignore changes to this path made after initialization.
            The default value is the current directory.
            </summary>
        </member>
        <member name="P:NUnit.Engine.ITestEngine.InternalTraceLevel">
            <summary>
            Gets and sets the InternalTraceLevel used by the engine. Changing this
            setting after initialization will have no effect. The default value
            is the value saved in the NUnit settings.
            </summary>
        </member>
        <member name="M:NUnit.Engine.ITestEngine.Initialize">
             <summary>
             Initialize the engine. This includes initializing mono addins,
             setting the trace level and creating the standard set of services
             used in the Engine.
            
             This interface is not normally called by user code. Programs linking
             only to the nunit.engine.api assembly are given a
             pre-initialized instance of TestEngine. Programs
             that link directly to nunit.engine usually do so
             in order to perform custom initialization.
             </summary>
        </member>
        <member name="M:NUnit.Engine.ITestEngine.GetRunner(NUnit.Engine.TestPackage)">
            <summary>
            Returns a test runner instance for use by clients in discovering,
            exploring and executing tests.
            </summary>
            <param name="package">The TestPackage for which the runner is intended.</param>
            <returns>An ITestRunner.</returns>
        </member>
        <member name="T:NUnit.Engine.ITestEventListener">
            <summary>
            The ITestListener interface is used to receive notices of significant
            events while a test is running. Its single method accepts an Xml string,
            which may represent any event generated by the test framework, the driver
            or any of the runners internal to the engine. Use of Xml means that
            any driver and framework may add additional events and the engine will
            simply pass them on through this interface.
            </summary>
        </member>
        <member name="M:NUnit.Engine.ITestEventListener.OnTestEvent(System.String)">
            <summary>
            Handle a progress report or other event.
            </summary>
            <param name="report">An XML progress report.</param>
        </member>
        <member name="T:NUnit.Engine.ITestFilterBuilder">
            <summary>
            Interface to a TestFilterBuilder, which is used to create TestFilters
            </summary>
        </member>
        <member name="M:NUnit.Engine.ITestFilterBuilder.AddTest(System.String)">
            <summary>
            Add a test to be selected
            </summary>
            <param name="fullName">The full name of the test, as created by NUnit</param>
        </member>
        <member name="M:NUnit.Engine.ITestFilterBuilder.SelectWhere(System.String)">
            <summary>
            Specify what is to be included by the filter using a where clause.
            </summary>
            <param name="whereClause">A where clause that will be parsed by NUnit to create the filter.</param>
        </member>
        <member name="M:NUnit.Engine.ITestFilterBuilder.GetFilter">
            <summary>
            Get a TestFilter constructed according to the criteria specified by the other calls.
            </summary>
            <returns>A TestFilter.</returns>
        </member>
        <member name="T:NUnit.Engine.ITestFilterService">
            <summary>
            The TestFilterService provides builders that can create TestFilters
            </summary>
        </member>
        <member name="M:NUnit.Engine.ITestFilterService.GetTestFilterBuilder">
            <summary>
            Get an uninitialized TestFilterBuilder
            </summary>
        </member>
        <member name="T:NUnit.Engine.ITestRun">
            <summary>
            The ITestRun class represents an ongoing test run.
            </summary>
        </member>
        <member name="P:NUnit.Engine.ITestRun.Result">
            <summary>
            Get the result of the test.
            </summary>
            <returns>An XmlNode representing the test run result</returns>
        </member>
        <member name="M:NUnit.Engine.ITestRun.Wait(System.Int32)">
            <summary>
            Blocks the current thread until the current test run completes
            or the timeout is reached
            </summary>
            <param name="timeout">A <see cref="T:System.Int32"/> that represents the number of milliseconds to wait or -1 milliseconds to wait indefinitely. </param>
            <returns>True if the run completed</returns>
        </member>
        <member name="T:NUnit.Engine.ITestRunner">
            <summary>
            Interface implemented by all test runners.
            </summary>
        </member>
        <member name="P:NUnit.Engine.ITestRunner.IsTestRunning">
            <summary>
            Get a flag indicating whether a test is running
            </summary>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.Load">
            <summary>
            Load a TestPackage for possible execution
            </summary>
            <returns>An XmlNode representing the loaded package.</returns>
            <remarks>
            This method is normally optional, since Explore and Run call
            it automatically when necessary. The method is kept in order
            to make it easier to convert older programs that use it.
            </remarks>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.Unload">
            <summary>
            Unload any loaded TestPackage. If none is loaded,
            the call is ignored.
            </summary>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.Reload">
            <summary>
            Reload the current TestPackage
            </summary>
            <returns>An XmlNode representing the loaded package.</returns>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.CountTestCases(NUnit.Engine.TestFilter)">
            <summary>
            Count the test cases that would be run under
            the specified filter.
            </summary>
            <param name="filter">A TestFilter</param>
            <returns>The count of test cases</returns>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.Run(NUnit.Engine.ITestEventListener,NUnit.Engine.TestFilter)">
            <summary>
            Run the tests in the loaded TestPackage and return a test result. The tests
            are run synchronously and the listener interface is notified as it progresses.
            </summary>
            <param name="listener">The listener that is notified as the run progresses</param>
            <param name="filter">A TestFilter used to select tests</param>
            <returns>An XmlNode giving the result of the test execution</returns>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.RunAsync(NUnit.Engine.ITestEventListener,NUnit.Engine.TestFilter)">
            <summary>
            Start a run of the tests in the loaded TestPackage. The tests are run
            asynchronously and the listener interface is notified as it progresses.
            </summary>
            <param name="listener">The listener that is notified as the run progresses</param>
            <param name="filter">A TestFilter used to select tests</param>
            <returns></returns>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.StopRun(System.Boolean)">
            <summary>
            Cancel the ongoing test run. If no  test is running, the call is ignored.
            </summary>
            <param name="force">If true, cancel any ongoing test threads, otherwise wait for them to complete.</param>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.Explore(NUnit.Engine.TestFilter)">
            <summary>
            Explore a loaded TestPackage and return information about the tests found.
            </summary>
            <param name="filter">The TestFilter to be used in selecting tests to explore.</param>
            <returns>An XmlNode representing the tests found.</returns>
        </member>
        <member name="T:NUnit.Engine.TestEngineActivator">
            <summary>
            TestEngineActivator creates an instance of the test engine and returns an ITestEngine interface.
            </summary>
        </member>
        <member name="M:NUnit.Engine.TestEngineActivator.CreateInstance(System.Boolean)">
            <summary>
            Create an instance of the test engine.
            </summary>
            <param name="unused">This parameter is no longer used but has not been removed to ensure API compatibility.</param>
            <exception cref="T:NUnit.Engine.NUnitEngineNotFoundException">Thrown when a test engine of the required minimum version is not found</exception>
            <returns>An <see cref="T:NUnit.Engine.ITestEngine"/></returns>
        </member>
        <member name="M:NUnit.Engine.TestEngineActivator.CreateInstance(System.Version,System.Boolean)">
            <summary>
            Create an instance of the test engine with a minimum version.
            </summary>
            <param name="minVersion">The minimum version of the engine to return inclusive.</param>
            <param name="unused">This parameter is no longer used but has not been removed to ensure API compatibility.</param>
            <exception cref="T:NUnit.Engine.NUnitEngineNotFoundException">Thrown when a test engine of the required minimum version is not found</exception>
            <returns>An <see cref="T:NUnit.Engine.ITestEngine"/></returns>
        </member>
        <member name="T:NUnit.Engine.TestFilter">
            <summary>
            Abstract base for all test filters. A filter is represented
            by an XmlNode with &lt;filter&gt; as its topmost element.
            In the console runner, filters serve only to carry this
            XML representation, as all filtering is done by the engine.
            </summary>
        </member>
        <member name="M:NUnit.Engine.TestFilter.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:NUnit.Engine.TestFilter"/> class.
            </summary>
            <param name="xmlText">The XML text that specifies the filter.</param>
        </member>
        <member name="F:NUnit.Engine.TestFilter.Empty">
            <summary>
            The empty filter - one that always passes.
            </summary>
        </member>
        <member name="P:NUnit.Engine.TestFilter.Text">
            <summary>
            Gets the XML representation of this filter as a string.
            </summary>
        </member>
        <member name="T:NUnit.Engine.TestPackage">
            <summary>
            TestPackage holds information about a set of test files to
            be loaded by a TestRunner. Each TestPackage represents
            tests for one or more test files. TestPackages may be named
            or anonymous, depending on the constructor used.
            
            Upon construction, a package is given an ID (string), which
            remains unchanged for the lifetime of the TestPackage instance.
            The package ID is passed to the test framework for use in generating
            test IDs.
            
            A runner that reloads test assemblies and wants the ids to remain stable
            should avoid creating a new package but should instead use the original
            package, changing settings as needed. This gives the best chance for the
            tests in the reloaded assembly to match those originally loaded.
            </summary>
        </member>
        <member name="M:NUnit.Engine.TestPackage.#ctor(System.String)">
            <summary>
            Construct a named TestPackage, specifying a file path for
            the assembly or project to be used.
            </summary>
            <param name="filePath">The file path.</param>
        </member>
        <member name="M:NUnit.Engine.TestPackage.#ctor(System.Collections.Generic.IList{System.String})">
            <summary>
            Construct an anonymous TestPackage that wraps test files.
            </summary>
            <param name="testFiles"></param>
        </member>
        <member name="P:NUnit.Engine.TestPackage.ID">
            <summary>
            Every test package gets a unique ID used to prefix test IDs within that package.
            </summary>
            <remarks>
            The generated ID is only unique for packages created within the same application domain.
            For that reason, NUnit pre-creates all test packages that will be needed.
            </remarks>
        </member>
        <member name="P:NUnit.Engine.TestPackage.Name">
            <summary>
            Gets the name of the package
            </summary>
        </member>
        <member name="P:NUnit.Engine.TestPackage.FullName">
            <summary>
            Gets the path to the file containing tests. It may be
            an assembly or a recognized project type.
            </summary>
        </member>
        <member name="P:NUnit.Engine.TestPackage.SubPackages">
            <summary>
            Gets the list of SubPackages contained in this package
            </summary>
        </member>
        <member name="P:NUnit.Engine.TestPackage.Settings">
            <summary>
            Gets the settings dictionary for this package.
            </summary>
        </member>
        <member name="M:NUnit.Engine.TestPackage.AddSubPackage(NUnit.Engine.TestPackage)">
            <summary>
            Add a subproject to the package.
            </summary>
            <param name="subPackage">The subpackage to be added</param>
        </member>
        <member name="M:NUnit.Engine.TestPackage.AddSetting(System.String,System.Object)">
            <summary>
            Add a setting to a package and all of its subpackages.
            </summary>
            <param name="name">The name of the setting</param>
            <param name="value">The value of the setting</param>
            <remarks>
            Once a package is created, subpackages may have been created
            as well. If you add a setting directly to the Settings dictionary
            of the package, the subpackages are not updated. This method is
            used when the settings are intended to be reflected to all the
            subpackages under the package.
            </remarks>
        </member>
        <member name="M:NUnit.Engine.TestPackage.GetSetting``1(System.String,``0)">
            <summary>
            Return the value of a setting or a default.
            </summary>
            <param name="name">The name of the setting</param>
            <param name="defaultSetting">The default value</param>
            <returns></returns>
        </member>
        <member name="T:NUnit.Engine.TestSelectionParserException">
            <summary>
            TestSelectionParserException is thrown when an error
            is found while parsing the selection expression.
            </summary>
        </member>
        <member name="M:NUnit.Engine.TestSelectionParserException.#ctor(System.String)">
            <summary>
            Construct with a message
            </summary>
        </member>
        <member name="M:NUnit.Engine.TestSelectionParserException.#ctor(System.String,System.Exception)">
            <summary>
            Construct with a message and inner exception
            </summary>
            <param name="message"></param>
            <param name="innerException"></param>
        </member>
        <member name="M:NUnit.Engine.TestSelectionParserException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Serialization constructor
            </summary>
        </member>
    </members>
</doc>
tools\agents\net40\nunit.engine.core.dll
md5: FD4B906005532E5CC0F411423E20DEDE | sha1: 9AE0C5E493190B0B52955FE683A435A2B764CB88 | sha256: AF723D71B00A600286A8DE52B713DF9F1A51DAD8B323A4FCAE5C6838337F73D7 | sha512: 9A77E62BD37DF1393274DE28E83EEB65450F16C5B64AE11E071878EF69E75F44097556CA140EC1A369ECE75FA8453D4EBB74F2E4554F8BCF98743F07539D1587
tools\agents\net40\testcentric.engine.metadata.dll
tools\agents\net40\nunit-agent.exe.ignore
 
tools\agents\net40\nunit-agent-x86.exe.ignore
 
tools\agents\net40\nunit.agent.addins
 
tools\agents\netcoreapp3.1\nunit-agent.dll
md5: 8979150F962E704BF0CBF6E588EE5515 | sha1: FA468A84A767C85A569BF3457A270C16B3F7529E | sha256: 38A83D24430B6A0C9318E23AF011ACF1A656755C7ED296A1E663B6DA2CFC17A7 | sha512: A6689CFCB69E5AF7C7FA37B96DD74AE459701AC3516423D72DCB7C838CC7BE2D05F48C9FB98B6DCDDC3FC5BD6BC618CF43F327CBD656898AE2869CB065992E78
tools\agents\netcoreapp3.1\nunit-agent.dll.config
<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <!--
   Nunit-agent only runs under .NET 2.0 or higher. 
   The setting    useLegacyV2RuntimeActivationPolicy only applies 
   under .NET 4.0 and permits use of mixed mode assemblies, 
   which would otherwise not load correctly. 
  -->
  <startup useLegacyV2RuntimeActivationPolicy="true">
    <!--
     Nunit-agent is normally run by the console or gui
     runners and not independently. In normal usage, 
     the runner specifies which runtime should be used.
     
     Do NOT add any supportedRuntime elements here, 
     since they may prevent the runner from controlling 
     the runtime that is used!
    -->
  </startup>

  <runtime>
    <!-- Ensure that test exceptions don't crash NUnit -->
    <legacyUnhandledExceptionPolicy enabled="1" />

    <!--
     Since legacyUnhandledExceptionPolicy keeps the console from being killed even though an NUnit framework
     test worker thread is killed, this is needed to prevent a hang. NUnit framework can only handle these
     exceptions when this config element is present. (Or if future versions of NUnit framework drop support
     for partial trust which would enable it to use [HandleProcessCorruptedStateExceptions].)
    -->
    <legacyCorruptedStateExceptionsPolicy enabled="true" />

    <!-- Run partial trust V2 assemblies in full trust under .NET 4.0 -->
    <loadFromRemoteSources enabled="true" />

    <!-- Enable reading source information from Portable and Embedded PDBs when running applications -->
    <!-- built against previous .NET Framework versions on .NET Framework 4.7.2 -->
    <AppContextSwitchOverrides value="Switch.System.Diagnostics.IgnorePortablePDBsInStackTraces=false" />
  </runtime>
  
</configuration>
tools\agents\netcoreapp3.1\nunit-agent.deps.json
{
  "runtimeTarget": {
    "name": ".NETCoreApp,Version=v3.1",
    "signature": ""
  },
  "compilationOptions": {},
  "targets": {
    ".NETCoreApp,Version=v3.1": {
      "nunit-agent/3.17.0": {
        "dependencies": {
          "nunit.engine.api": "3.17.0",
          "nunit.engine.core": "3.17.0"
        },
        "runtime": {
          "nunit-agent.dll": {}
        }
      },
      "Microsoft.NETCore.Platforms/1.1.0": {},
      "Microsoft.NETCore.Targets/1.1.0": {},
      "Microsoft.Win32.Registry/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "System.Collections": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0"
        }
      },
      "System.Collections/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Globalization/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.IO/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        }
      },
      "System.Reflection/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.IO": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Reflection.Primitives/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Resources.ResourceManager/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Globalization": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Runtime/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0"
        }
      },
      "System.Runtime.Extensions/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Runtime.Handles/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Runtime.InteropServices/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Handles": "4.3.0"
        }
      },
      "System.Text.Encoding/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Threading.Tasks/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "TestCentric.Metadata/2.0.0": {
        "runtime": {
          "lib/netstandard2.0/testcentric.engine.metadata.dll": {
            "assemblyVersion": "2.0.0.0",
            "fileVersion": "2.0.0.0"
          }
        }
      },
      "nunit.engine.api/3.17.0": {
        "runtime": {
          "nunit.engine.api.dll": {}
        }
      },
      "nunit.engine.core/3.17.0": {
        "dependencies": {
          "Microsoft.Win32.Registry": "4.3.0",
          "TestCentric.Metadata": "2.0.0",
          "nunit.engine.api": "3.17.0"
        },
        "runtime": {
          "nunit.engine.core.dll": {}
        }
      }
    }
  },
  "libraries": {
    "nunit-agent/3.17.0": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "Microsoft.NETCore.Platforms/1.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
      "path": "microsoft.netcore.platforms/1.1.0",
      "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512"
    },
    "Microsoft.NETCore.Targets/1.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
      "path": "microsoft.netcore.targets/1.1.0",
      "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
    },
    "Microsoft.Win32.Registry/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Lw1/VwLH1yxz6SfFEjVRCN0pnflLEsWgnV4qsdJ512/HhTwnKXUG+zDQ4yTO3K/EJQemGoNaBHX5InISNKTzUQ==",
      "path": "microsoft.win32.registry/4.3.0",
      "hashPath": "microsoft.win32.registry.4.3.0.nupkg.sha512"
    },
    "System.Collections/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
      "path": "system.collections/4.3.0",
      "hashPath": "system.collections.4.3.0.nupkg.sha512"
    },
    "System.Globalization/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
      "path": "system.globalization/4.3.0",
      "hashPath": "system.globalization.4.3.0.nupkg.sha512"
    },
    "System.IO/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
      "path": "system.io/4.3.0",
      "hashPath": "system.io.4.3.0.nupkg.sha512"
    },
    "System.Reflection/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
      "path": "system.reflection/4.3.0",
      "hashPath": "system.reflection.4.3.0.nupkg.sha512"
    },
    "System.Reflection.Primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
      "path": "system.reflection.primitives/4.3.0",
      "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
    },
    "System.Resources.ResourceManager/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
      "path": "system.resources.resourcemanager/4.3.0",
      "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
    },
    "System.Runtime/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
      "path": "system.runtime/4.3.0",
      "hashPath": "system.runtime.4.3.0.nupkg.sha512"
    },
    "System.Runtime.Extensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
      "path": "system.runtime.extensions/4.3.0",
      "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
    },
    "System.Runtime.Handles/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
      "path": "system.runtime.handles/4.3.0",
      "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
    },
    "System.Runtime.InteropServices/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
      "path": "system.runtime.interopservices/4.3.0",
      "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
    },
    "System.Text.Encoding/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
      "path": "system.text.encoding/4.3.0",
      "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
    },
    "System.Threading.Tasks/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
      "path": "system.threading.tasks/4.3.0",
      "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
    },
    "TestCentric.Metadata/2.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-uxQYLwa3uX33zm2K9OA75C6uxA2ztOf5cKR2M5sqQxiMxw95IA1gRaKkzUnhu51ez/rJEHqmpmCsccCf+t8dLg==",
      "path": "testcentric.metadata/2.0.0",
      "hashPath": "testcentric.metadata.2.0.0.nupkg.sha512"
    },
    "nunit.engine.api/3.17.0": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "nunit.engine.core/3.17.0": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    }
  }
}
tools\agents\netcoreapp3.1\nunit-agent.runtimeconfig.json
{
  "runtimeOptions": {
    "tfm": "netcoreapp3.1",
    "framework": {
      "name": "Microsoft.NETCore.App",
      "version": "3.1.0"
    },
    "configProperties": {
      "System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
      "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": true
    }
  }
}
tools\agents\netcoreapp3.1\nunit.engine.api.dll
md5: A07C580B5BAC29B68400FC0C6413133D | sha1: EA2ECDA9284B986F0FFCA390BD565236823199C6 | sha256: A8D1BA429B42578D9E1B14BF27516C821CAD9AE1CA9F8A2FC7011163E2BD34BC | sha512: 5681CA7AD1EAA71D7686EF9A7C4E26CE7862B85D802A4BF357CF0324D53420E19DA674B0FD47CCD8643A4998B4BE1D454018BA185FD7AB37CC37B2E3F6E45B07
tools\agents\netcoreapp3.1\nunit.engine.api.xml
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>nunit.engine.api</name>
    </assembly>
    <members>
        <member name="T:NUnit.Engine.NUnitEngineException">
            <summary>
            NUnitEngineException is thrown when the engine has been
            called with improper values or when a particular facility
            is not available.
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineException.#ctor(System.String)">
            <summary>
            Construct with a message
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineException.#ctor(System.String,System.Exception)">
            <summary>
            Construct with a message and inner exception
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Serialization constructor
            </summary>
        </member>
        <member name="T:NUnit.Engine.NUnitEngineNotFoundException">
            <summary>
            The exception that is thrown if a valid test engine is not found
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineNotFoundException.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:NUnit.Engine.NUnitEngineNotFoundException"/> class.
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineNotFoundException.#ctor(System.Version)">
            <summary>
            Initializes a new instance of the <see cref="T:NUnit.Engine.NUnitEngineNotFoundException"/> class.
            </summary>
            <param name="minVersion">The minimum version.</param>
        </member>
        <member name="T:NUnit.Engine.NUnitEngineUnloadException">
            <summary>
            NUnitEngineUnloadException is thrown when a test run has completed successfully
            but one or more errors were encountered when attempting to unload
            and shut down the test run cleanly.
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.String)">
            <summary>
            Construct with a message
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.String,System.Exception)">
            <summary>
            Construct with a message and inner exception
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.Collections.Generic.ICollection{System.Exception})">
            <summary>
            Construct with a message and a collection of exceptions.
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Serialization constructor.
            </summary>
        </member>
        <member name="P:NUnit.Engine.NUnitEngineUnloadException.AggregatedExceptions">
            <summary>
            Gets the collection of exceptions .
            </summary>
        </member>
        <member name="T:NUnit.Engine.Extensibility.ExtensionAttribute">
            <summary>
            The ExtensionAttribute is used to identify a class that is intended
            to serve as an extension.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.ExtensionAttribute.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:NUnit.Engine.Extensibility.ExtensionAttribute"/> class.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.Path">
            <summary>
            A unique string identifying the ExtensionPoint for which this Extension is 
            intended. This is an optional field provided NUnit is able to deduce the
            ExtensionPoint from the Type of the extension class.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.Description">
            <summary>
            An optional description of what the extension does.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.Enabled">
            <summary>
            Flag indicating whether the extension is enabled.
            </summary>
            <value><c>true</c> if enabled; otherwise, <c>false</c>.</value>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.EngineVersion">
            <summary>
            The minimum Engine version for which this extension is designed
            </summary>
        </member>
        <member name="T:NUnit.Engine.Extensibility.ExtensionPointAttribute">
            <summary>
            ExtensionPointAttribute is used at the assembly level to identify and
            document any ExtensionPoints supported by the assembly.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.ExtensionPointAttribute.#ctor(System.String,System.Type)">
            <summary>
            Construct an ExtensionPointAttribute
            </summary>
            <param name="path">A unique string identifying the extension point.</param>
            <param name="type">The required Type of any extension that is installed at this extension point.</param>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionPointAttribute.Path">
            <summary>
            The unique string identifying this ExtensionPoint. This identifier
            is typically formatted as a path using '/' and the set of extension 
            points is sometimes viewed as forming a tree.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionPointAttribute.Type">
            <summary>
            The required Type (usually an interface) of any extension that is 
            installed at this ExtensionPoint.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionPointAttribute.Description">
            <summary>
            An optional description of the purpose of the ExtensionPoint
            </summary>
        </member>
        <member name="T:NUnit.Engine.Extensibility.ExtensionPropertyAttribute">
            <summary>
            The ExtensionPropertyAttribute is used to specify named properties for an extension.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.ExtensionPropertyAttribute.#ctor(System.String,System.String)">
            <summary>
            Construct an ExtensionPropertyAttribute
            </summary>
            <param name="name">The name of the property</param>
            <param name="value">The property value</param>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionPropertyAttribute.Name">
            <summary>
            The name of the property.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionPropertyAttribute.Value">
            <summary>
            The property value
            </summary>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IDriverFactory">
            <summary>
            Interface implemented by a Type that knows how to create a driver for a test assembly.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IDriverFactory.IsSupportedTestFramework(System.Reflection.AssemblyName)">
            <summary>
            Gets a flag indicating whether a given AssemblyName
            represents a test framework supported by this factory.
            </summary>
            <param name="reference">An AssemblyName referring to the possible test framework.</param>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IDriverFactory.GetDriver(System.Reflection.AssemblyName)">
            <summary>
            Gets a driver for a given test assembly and a framework
            which the assembly is already known to reference.
            </summary>
            <param name="reference">An AssemblyName referring to the test framework.</param>
            <returns></returns>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IExtensionNode">
            <summary>
            The IExtensionNode interface is implemented by a class that represents a
            single extension being installed on a particular extension point.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.TypeName">
            <summary>
            Gets the full name of the Type of the extension object.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.Enabled">
            <summary>
            Gets a value indicating whether this <see cref="T:NUnit.Engine.Extensibility.IExtensionNode"/> is enabled.
            </summary>
            <value><c>true</c> if enabled; otherwise, <c>false</c>.</value>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.Path">
            <summary>
            Gets the unique string identifying the ExtensionPoint for which
            this Extension is intended. This identifier may be supplied by the attribute
            marking the extension or deduced by NUnit from the Type of the extension class.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.Description">
            <summary>
            Gets an optional description of what the extension does.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.TargetFramework">
            <summary>
            The TargetFramework of the extension assembly.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.PropertyNames">
            <summary>
            Gets a collection of the names of all this extension's properties
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IExtensionNode.GetValues(System.String)">
            <summary>
            Gets a collection of the values of a particular named property
            If none are present, returns an empty enumerator.
            </summary>
            <param name="name">The property name</param>
            <returns>A collection of values</returns>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.AssemblyPath">
            <summary>
            The path to the assembly implementing this extension.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.AssemblyVersion">
            <summary>
            The version of the assembly implementing this extension.
            </summary>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IExtensionPoint">
            <summary>
            An ExtensionPoint represents a single point in the TestEngine
            that may be extended by user addins and extensions.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionPoint.Path">
            <summary>
            Gets the unique path identifying this extension point.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionPoint.Description">
            <summary>
            Gets the description of this extension point. May be null.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionPoint.TypeName">
            <summary>
            Gets the FullName of the Type required for any extension to be installed at this extension point.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionPoint.Extensions">
            <summary>
            Gets an enumeration of IExtensionNodes for extensions installed on this extension point.
            </summary>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IFrameworkDriver">
            <summary>
            The IFrameworkDriver interface is implemented by a class that
            is able to use an external framework to explore or run tests
            under the engine.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IFrameworkDriver.ID">
            <summary>
            Gets and sets the unique identifier for this driver,
            used to ensure that test ids are unique across drivers.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.Load(System.String,System.Collections.Generic.IDictionary{System.String,System.Object})">
            <summary>
            Loads the tests in an assembly.
            </summary>
            <returns>An Xml string representing the loaded test</returns>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.CountTestCases(System.String)">
            <summary>
            Count the test cases that would be executed.
            </summary>
            <param name="filter">An XML string representing the TestFilter to use in counting the tests</param>
            <returns>The number of test cases counted</returns>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.Run(NUnit.Engine.ITestEventListener,System.String)">
            <summary>
            Executes the tests in an assembly.
            </summary>
            <param name="listener">An ITestEventHandler that receives progress notices</param>
            <param name="filter">A XML string representing the filter that controls which tests are executed</param>
            <returns>An Xml string representing the result</returns>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.Explore(System.String)">
            <summary>
            Returns information about the tests in an assembly.
            </summary>
            <param name="filter">An XML string representing the filter that controls which tests are included</param>
            <returns>An Xml string representing the tests</returns>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.StopRun(System.Boolean)">
            <summary>
            Cancel the ongoing test run. If no  test is running, the call is ignored.
            </summary>
            <param name="force">If true, cancel any ongoing test threads, otherwise wait for them to complete.</param>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IProject">
            <summary>
            Interface for the various project types that the engine can load.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IProject.ProjectPath">
            <summary>
            Gets the path to the file storing this project, if any.
            If the project has not been saved, this is null.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IProject.ActiveConfigName">
            <summary>
            Gets the active configuration, as defined
            by the particular project.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IProject.ConfigNames">
            <summary>
            Gets a list of the configs for this project
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IProject.GetTestPackage">
            <summary>
            Gets a test package for the primary or active
            configuration within the project. The package 
            includes all the assemblies and any settings
            specified in the project format.
            </summary>
            <returns>A TestPackage</returns>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IProject.GetTestPackage(System.String)">
            <summary>
            Gets a TestPackage for a specific configuration
            within the project. The package includes all the
            assemblies and any settings specified in the 
            project format.
            </summary>
            <param name="configName">The name of the config to use</param>
            <returns>A TestPackage for the named configuration.</returns>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IProjectLoader">
            <summary>
            The IProjectLoader interface is implemented by any class
            that knows how to load projects in a specific format.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IProjectLoader.CanLoadFrom(System.String)">
            <summary>
            Returns true if the file indicated is one that this
            loader knows how to load.
            </summary>
            <param name="path">The path of the project file</param>
            <returns>True if the loader knows how to load this file, otherwise false</returns>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IProjectLoader.LoadFrom(System.String)">
            <summary>
            Loads a project of a known format.
            </summary>
            <param name="path">The path of the project file</param>
            <returns>An IProject interface to the loaded project or null if the project cannot be loaded</returns>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IResultWriter">
            <summary>
            Common interface for objects that process and write out test results
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IResultWriter.CheckWritability(System.String)">
            <summary>
            Checks if the output path is writable. If the output is not
            writable, this method should throw an exception.
            </summary>
            <param name="outputPath"></param>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IResultWriter.WriteResultFile(System.Xml.XmlNode,System.String)">
            <summary>
            Writes result to the specified output path.
            </summary>
            <param name="resultNode">XmlNode for the result</param>
            <param name="outputPath">Path to which it should be written</param>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IResultWriter.WriteResultFile(System.Xml.XmlNode,System.IO.TextWriter)">
            <summary>
            Writes result to a TextWriter.
            </summary>
            <param name="resultNode">XmlNode for the result</param>
            <param name="writer">TextWriter to which it should be written</param>
        </member>
        <member name="T:NUnit.Engine.Extensibility.TypeExtensionPointAttribute">
            <summary>
            TypeExtensionPointAttribute is used to bind an extension point
            to a class or interface.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.#ctor(System.String)">
            <summary>
            Construct a TypeExtensionPointAttribute, specifying the path.
            </summary>
            <param name="path">A unique string identifying the extension point.</param>
        </member>
        <member name="M:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.#ctor">
            <summary>
            Construct an TypeExtensionPointAttribute, without specifying the path.
            The extension point will use a path constructed based on the interface
            or class to which the attribute is applied.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.Path">
            <summary>
            The unique string identifying this ExtensionPoint. This identifier
            is typically formatted as a path using '/' and the set of extension 
            points is sometimes viewed as forming a tree.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.Description">
            <summary>
            An optional description of the purpose of the ExtensionPoint
            </summary>
        </member>
        <member name="T:NUnit.Engine.IAvailableRuntimes">
            <summary>
            Interface that returns a list of available runtime frameworks.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IAvailableRuntimes.AvailableRuntimes">
            <summary>
            Gets a list of available runtime frameworks.
            </summary>
        </member>
        <member name="T:NUnit.Engine.IExtensionService">
            <summary>
            The IExtensionService interface allows a runner to manage extensions.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IExtensionService.ExtensionPoints">
            <summary>
            Gets an enumeration of all ExtensionPoints in the engine.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IExtensionService.Extensions">
            <summary>
            Gets an enumeration of all installed Extensions.
            </summary>
        </member>
        <member name="M:NUnit.Engine.IExtensionService.GetExtensionPoint(System.String)">
            <summary>
            Get an ExtensionPoint based on its unique identifying path.
            </summary>
        </member>
        <member name="M:NUnit.Engine.IExtensionService.GetExtensionNodes(System.String)">
            <summary>
            Get an enumeration of ExtensionNodes based on their identifying path.
            </summary>
        </member>
        <member name="M:NUnit.Engine.IExtensionService.EnableExtension(System.String,System.Boolean)">
            <summary>
            Enable or disable an extension
            </summary>
            <param name="typeName"></param>
            <param name="enabled"></param>
        </member>
        <member name="T:NUnit.Engine.ILogger">
            <summary>
            Interface for logging within the engine
            </summary>
        </member>
        <member name="M:NUnit.Engine.ILogger.Error(System.String)">
            <summary>
            Logs the specified message at the error level.
            </summary>
            <param name="message">The message.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Error(System.String,System.Object[])">
            <summary>
            Logs the specified message at the error level.
            </summary>
            <param name="format">The message.</param>
            <param name="args">The arguments.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Warning(System.String)">
            <summary>
            Logs the specified message at the warning level.
            </summary>
            <param name="message">The message.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Warning(System.String,System.Object[])">
            <summary>
            Logs the specified message at the warning level.
            </summary>
            <param name="format">The message.</param>
            <param name="args">The arguments.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Info(System.String)">
            <summary>
            Logs the specified message at the info level.
            </summary>
            <param name="message">The message.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Info(System.String,System.Object[])">
            <summary>
            Logs the specified message at the info level.
            </summary>
            <param name="format">The message.</param>
            <param name="args">The arguments.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Debug(System.String)">
            <summary>
            Logs the specified message at the debug level.
            </summary>
            <param name="message">The message.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Debug(System.String,System.Object[])">
            <summary>
            Logs the specified message at the debug level.
            </summary>
            <param name="format">The message.</param>
            <param name="args">The arguments.</param>
        </member>
        <member name="T:NUnit.Engine.ILogging">
            <summary>
            Interface to abstract getting loggers
            </summary>
        </member>
        <member name="M:NUnit.Engine.ILogging.GetLogger(System.String)">
            <summary>
            Gets the logger.
            </summary>
            <param name="name">The name of the logger to get.</param>
            <returns></returns>
        </member>
        <member name="T:NUnit.Engine.InternalTraceLevel">
            <summary>
            InternalTraceLevel is an enumeration controlling the
            level of detailed presented in the internal log.
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Default">
            <summary>
            Use the default settings as specified by the user.
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Off">
            <summary>
            Do not display any trace messages
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Error">
            <summary>
            Display Error messages only
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Warning">
            <summary>
            Display Warning level and higher messages
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Info">
            <summary>
            Display informational and higher messages
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Debug">
            <summary>
            Display debug messages and higher - i.e. all messages
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Verbose">
            <summary>
            Display debug messages and higher - i.e. all messages
            </summary>
        </member>
        <member name="T:NUnit.Engine.IRecentFiles">
            <summary>
            The IRecentFiles interface is used to isolate the app
            from various implementations of recent files.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRecentFiles.MaxFiles">
            <summary>
            The max number of files saved
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRecentFiles.Entries">
            <summary>
            Get a list of all the file entries
            </summary>
            <returns>The most recent file list</returns>
        </member>
        <member name="M:NUnit.Engine.IRecentFiles.SetMostRecent(System.String)">
            <summary>
            Set the most recent file name, reordering
            the saved names as needed and removing the oldest
            if the max number of files would be exceeded.
            The current CLR version is used to create the entry.
            </summary>
        </member>
        <member name="M:NUnit.Engine.IRecentFiles.Remove(System.String)">
            <summary>
            Remove a file from the list
            </summary>
            <param name="fileName">The name of the file to remove</param>
        </member>
        <member name="T:NUnit.Engine.IResultService">
            <summary>
            IResultWriterService provides result writers for a specified
            well-known format.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IResultService.Formats">
            <summary>
            Gets an array of the available formats
            </summary>
        </member>
        <member name="M:NUnit.Engine.IResultService.GetResultWriter(System.String,System.Object[])">
            <summary>
            Gets a ResultWriter for a given format and set of arguments.
            </summary>
            <param name="format">The name of the format to be used</param>
            <param name="args">A set of arguments to be used in constructing the writer or null if non arguments are needed</param>
            <returns>An IResultWriter</returns>
        </member>
        <member name="T:NUnit.Engine.IRuntimeFramework">
            <summary>
            Interface implemented by objects representing a runtime framework.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRuntimeFramework.Id">
            <summary>
            Gets the inique Id for this runtime, such as "net-4.5"
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRuntimeFramework.DisplayName">
            <summary>
            Gets the display name of the framework, such as ".NET 4.5"
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRuntimeFramework.FrameworkVersion">
            <summary>
            Gets the framework version: usually contains two components, Major
            and Minor, which match the corresponding CLR components, but not always.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRuntimeFramework.ClrVersion">
            <summary>
            Gets the Version of the CLR for this framework
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRuntimeFramework.Profile">
            <summary>
            Gets a string representing the particular profile installed,
            or null if there is no profile. Currently. the only defined 
            values are Full and Client.
            </summary>
        </member>
        <member name="T:NUnit.Engine.IRuntimeFrameworkService">
            <summary>
            Implemented by a type that provides information about the
            current and other available runtimes.
            </summary>
        </member>
        <member name="M:NUnit.Engine.IRuntimeFrameworkService.IsAvailable(System.String)">
            <summary>
            Returns true if the runtime framework represented by
            the string passed as an argument is available.
            </summary>
            <param name="framework">A string representing a framework, like 'net-4.0'</param>
            <returns>True if the framework is available, false if unavailable or nonexistent</returns>
        </member>
        <member name="M:NUnit.Engine.IRuntimeFrameworkService.SelectRuntimeFramework(NUnit.Engine.TestPackage)">
             <summary>
             Selects a target runtime framework for a TestPackage based on
             the settings in the package and the assemblies themselves.
             The package RuntimeFramework setting may be updated as a 
             result and the selected runtime is returned.
            
             Note that if a package has subpackages, the subpackages may run on a different
             framework to the top-level package. In future, this method should
             probably not return a simple string, and instead require runners
             to inspect the test package structure, to find all desired frameworks.
             </summary>
             <param name="package">A TestPackage</param>
             <returns>The selected RuntimeFramework</returns>
        </member>
        <member name="T:NUnit.Engine.ServiceStatus">
            <summary>
            Enumeration representing the status of a service
            </summary>
        </member>
        <member name="F:NUnit.Engine.ServiceStatus.Stopped">
            <summary>Service was never started or has been stopped</summary>
        </member>
        <member name="F:NUnit.Engine.ServiceStatus.Started">
            <summary>Started successfully</summary>
        </member>
        <member name="F:NUnit.Engine.ServiceStatus.Error">
            <summary>Service failed to start and is unavailable</summary>
        </member>
        <member name="T:NUnit.Engine.IService">
            <summary>
            The IService interface is implemented by all Services. Although it
            is extensible, it does not reside in the Extensibility namespace
            because it is so widely used by the engine.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IService.ServiceContext">
            <summary>
            The ServiceContext
            </summary>
        </member>
        <member name="P:NUnit.Engine.IService.Status">
            <summary>
            Gets the ServiceStatus of this service
            </summary>
        </member>
        <member name="M:NUnit.Engine.IService.StartService">
            <summary>
            Initialize the Service
            </summary>
        </member>
        <member name="M:NUnit.Engine.IService.StopService">
            <summary>
            Do any cleanup needed before terminating the service
            </summary>
        </member>
        <member name="T:NUnit.Engine.IServiceLocator">
            <summary>
            IServiceLocator allows clients to locate any NUnit services
            for which the interface is referenced. In normal use, this
            linits it to those services using interfaces defined in the 
            nunit.engine.api assembly.
            </summary>
        </member>
        <member name="M:NUnit.Engine.IServiceLocator.GetService``1">
            <summary>
            Return a specified type of service
            </summary>
        </member>
        <member name="M:NUnit.Engine.IServiceLocator.GetService(System.Type)">
            <summary>
            Return a specified type of service
            </summary>
        </member>
        <member name="T:NUnit.Engine.SettingsEventHandler">
            <summary>
            Event handler for settings changes
            </summary>
            <param name="sender">The sender.</param>
            <param name="args">The <see cref="T:NUnit.Engine.SettingsEventArgs"/> instance containing the event data.</param>
        </member>
        <member name="T:NUnit.Engine.SettingsEventArgs">
            <summary>
            Event argument for settings changes
            </summary>
        </member>
        <member name="M:NUnit.Engine.SettingsEventArgs.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:NUnit.Engine.SettingsEventArgs"/> class.
            </summary>
            <param name="settingName">Name of the setting that has changed.</param>
        </member>
        <member name="P:NUnit.Engine.SettingsEventArgs.SettingName">
            <summary>
            Gets the name of the setting that has changed
            </summary>
        </member>
        <member name="T:NUnit.Engine.ISettings">
            <summary>
            The ISettings interface is used to access all user
            settings and options.
            </summary>
        </member>
        <member name="E:NUnit.Engine.ISettings.Changed">
            <summary>
            Occurs when the settings are changed.
            </summary>
        </member>
        <member name="M:NUnit.Engine.ISettings.GetSetting(System.String)">
            <summary>
            Load a setting from the storage.
            </summary>
            <param name="settingName">Name of the setting to load</param>
            <returns>Value of the setting or null</returns>
        </member>
        <member name="M:NUnit.Engine.ISettings.GetSetting``1(System.String,``0)">
            <summary>
            Load a setting from the storage or return a default value
            </summary>
            <param name="settingName">Name of the setting to load</param>
            <param name="defaultValue">Value to return if the setting is missing</param>
            <returns>Value of the setting or the default value</returns>
        </member>
        <member name="M:NUnit.Engine.ISettings.RemoveSetting(System.String)">
            <summary>
            Remove a setting from the storage
            </summary>
            <param name="settingName">Name of the setting to remove</param>
        </member>
        <member name="M:NUnit.Engine.ISettings.RemoveGroup(System.String)">
            <summary>
            Remove an entire group of settings from the storage
            </summary>
            <param name="groupName">Name of the group to remove</param>
        </member>
        <member name="M:NUnit.Engine.ISettings.SaveSetting(System.String,System.Object)">
            <summary>
            Save a setting in the storage
            </summary>
            <param name="settingName">Name of the setting to save</param>
            <param name="settingValue">Value to be saved</param>
        </member>
        <member name="T:NUnit.Engine.ITestEngine">
            <summary>
            ITestEngine represents an instance of the test engine.
            Clients wanting to discover, explore or run tests start
            require an instance of the engine, which is generally
            acquired from the TestEngineActivator class.
            </summary>
        </member>
        <member name="P:NUnit.Engine.ITestEngine.Services">
            <summary>
            Gets the IServiceLocator interface, which gives access to
            certain services provided by the engine.
            </summary>
        </member>
        <member name="P:NUnit.Engine.ITestEngine.WorkDirectory">
            <summary>
            Gets and sets the directory path used by the engine for saving files.
            Some services may ignore changes to this path made after initialization.
            The default value is the current directory.
            </summary>
        </member>
        <member name="P:NUnit.Engine.ITestEngine.InternalTraceLevel">
            <summary>
            Gets and sets the InternalTraceLevel used by the engine. Changing this
            setting after initialization will have no effect. The default value
            is the value saved in the NUnit settings.
            </summary>
        </member>
        <member name="M:NUnit.Engine.ITestEngine.Initialize">
             <summary>
             Initialize the engine. This includes initializing mono addins,
             setting the trace level and creating the standard set of services
             used in the Engine.
            
             This interface is not normally called by user code. Programs linking
             only to the nunit.engine.api assembly are given a
             pre-initialized instance of TestEngine. Programs
             that link directly to nunit.engine usually do so
             in order to perform custom initialization.
             </summary>
        </member>
        <member name="M:NUnit.Engine.ITestEngine.GetRunner(NUnit.Engine.TestPackage)">
            <summary>
            Returns a test runner instance for use by clients in discovering,
            exploring and executing tests.
            </summary>
            <param name="package">The TestPackage for which the runner is intended.</param>
            <returns>An ITestRunner.</returns>
        </member>
        <member name="T:NUnit.Engine.ITestEventListener">
            <summary>
            The ITestListener interface is used to receive notices of significant
            events while a test is running. Its single method accepts an Xml string,
            which may represent any event generated by the test framework, the driver
            or any of the runners internal to the engine. Use of Xml means that
            any driver and framework may add additional events and the engine will
            simply pass them on through this interface.
            </summary>
        </member>
        <member name="M:NUnit.Engine.ITestEventListener.OnTestEvent(System.String)">
            <summary>
            Handle a progress report or other event.
            </summary>
            <param name="report">An XML progress report.</param>
        </member>
        <member name="T:NUnit.Engine.ITestFilterBuilder">
            <summary>
            Interface to a TestFilterBuilder, which is used to create TestFilters
            </summary>
        </member>
        <member name="M:NUnit.Engine.ITestFilterBuilder.AddTest(System.String)">
            <summary>
            Add a test to be selected
            </summary>
            <param name="fullName">The full name of the test, as created by NUnit</param>
        </member>
        <member name="M:NUnit.Engine.ITestFilterBuilder.SelectWhere(System.String)">
            <summary>
            Specify what is to be included by the filter using a where clause.
            </summary>
            <param name="whereClause">A where clause that will be parsed by NUnit to create the filter.</param>
        </member>
        <member name="M:NUnit.Engine.ITestFilterBuilder.GetFilter">
            <summary>
            Get a TestFilter constructed according to the criteria specified by the other calls.
            </summary>
            <returns>A TestFilter.</returns>
        </member>
        <member name="T:NUnit.Engine.ITestFilterService">
            <summary>
            The TestFilterService provides builders that can create TestFilters
            </summary>
        </member>
        <member name="M:NUnit.Engine.ITestFilterService.GetTestFilterBuilder">
            <summary>
            Get an uninitialized TestFilterBuilder
            </summary>
        </member>
        <member name="T:NUnit.Engine.ITestRun">
            <summary>
            The ITestRun class represents an ongoing test run.
            </summary>
        </member>
        <member name="P:NUnit.Engine.ITestRun.Result">
            <summary>
            Get the result of the test.
            </summary>
            <returns>An XmlNode representing the test run result</returns>
        </member>
        <member name="M:NUnit.Engine.ITestRun.Wait(System.Int32)">
            <summary>
            Blocks the current thread until the current test run completes
            or the timeout is reached
            </summary>
            <param name="timeout">A <see cref="T:System.Int32"/> that represents the number of milliseconds to wait or -1 milliseconds to wait indefinitely. </param>
            <returns>True if the run completed</returns>
        </member>
        <member name="T:NUnit.Engine.ITestRunner">
            <summary>
            Interface implemented by all test runners.
            </summary>
        </member>
        <member name="P:NUnit.Engine.ITestRunner.IsTestRunning">
            <summary>
            Get a flag indicating whether a test is running
            </summary>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.Load">
            <summary>
            Load a TestPackage for possible execution
            </summary>
            <returns>An XmlNode representing the loaded package.</returns>
            <remarks>
            This method is normally optional, since Explore and Run call
            it automatically when necessary. The method is kept in order
            to make it easier to convert older programs that use it.
            </remarks>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.Unload">
            <summary>
            Unload any loaded TestPackage. If none is loaded,
            the call is ignored.
            </summary>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.Reload">
            <summary>
            Reload the current TestPackage
            </summary>
            <returns>An XmlNode representing the loaded package.</returns>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.CountTestCases(NUnit.Engine.TestFilter)">
            <summary>
            Count the test cases that would be run under
            the specified filter.
            </summary>
            <param name="filter">A TestFilter</param>
            <returns>The count of test cases</returns>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.Run(NUnit.Engine.ITestEventListener,NUnit.Engine.TestFilter)">
            <summary>
            Run the tests in the loaded TestPackage and return a test result. The tests
            are run synchronously and the listener interface is notified as it progresses.
            </summary>
            <param name="listener">The listener that is notified as the run progresses</param>
            <param name="filter">A TestFilter used to select tests</param>
            <returns>An XmlNode giving the result of the test execution</returns>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.RunAsync(NUnit.Engine.ITestEventListener,NUnit.Engine.TestFilter)">
            <summary>
            Start a run of the tests in the loaded TestPackage. The tests are run
            asynchronously and the listener interface is notified as it progresses.
            </summary>
            <param name="listener">The listener that is notified as the run progresses</param>
            <param name="filter">A TestFilter used to select tests</param>
            <returns></returns>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.StopRun(System.Boolean)">
            <summary>
            Cancel the ongoing test run. If no  test is running, the call is ignored.
            </summary>
            <param name="force">If true, cancel any ongoing test threads, otherwise wait for them to complete.</param>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.Explore(NUnit.Engine.TestFilter)">
            <summary>
            Explore a loaded TestPackage and return information about the tests found.
            </summary>
            <param name="filter">The TestFilter to be used in selecting tests to explore.</param>
            <returns>An XmlNode representing the tests found.</returns>
        </member>
        <member name="T:NUnit.Engine.TestEngineActivator">
            <summary>
            TestEngineActivator creates an instance of the test engine and returns an ITestEngine interface.
            </summary>
        </member>
        <member name="M:NUnit.Engine.TestEngineActivator.CreateInstance">
            <summary>
            Create an instance of the test engine.
            </summary>
            <returns>An <see cref="T:NUnit.Engine.ITestEngine"/></returns>
        </member>
        <member name="T:NUnit.Engine.TestFilter">
            <summary>
            Abstract base for all test filters. A filter is represented
            by an XmlNode with &lt;filter&gt; as its topmost element.
            In the console runner, filters serve only to carry this
            XML representation, as all filtering is done by the engine.
            </summary>
        </member>
        <member name="M:NUnit.Engine.TestFilter.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:NUnit.Engine.TestFilter"/> class.
            </summary>
            <param name="xmlText">The XML text that specifies the filter.</param>
        </member>
        <member name="F:NUnit.Engine.TestFilter.Empty">
            <summary>
            The empty filter - one that always passes.
            </summary>
        </member>
        <member name="P:NUnit.Engine.TestFilter.Text">
            <summary>
            Gets the XML representation of this filter as a string.
            </summary>
        </member>
        <member name="T:NUnit.Engine.TestPackage">
            <summary>
            TestPackage holds information about a set of test files to
            be loaded by a TestRunner. Each TestPackage represents
            tests for one or more test files. TestPackages may be named
            or anonymous, depending on the constructor used.
            
            Upon construction, a package is given an ID (string), which
            remains unchanged for the lifetime of the TestPackage instance.
            The package ID is passed to the test framework for use in generating
            test IDs.
            
            A runner that reloads test assemblies and wants the ids to remain stable
            should avoid creating a new package but should instead use the original
            package, changing settings as needed. This gives the best chance for the
            tests in the reloaded assembly to match those originally loaded.
            </summary>
        </member>
        <member name="M:NUnit.Engine.TestPackage.#ctor(System.String)">
            <summary>
            Construct a named TestPackage, specifying a file path for
            the assembly or project to be used.
            </summary>
            <param name="filePath">The file path.</param>
        </member>
        <member name="M:NUnit.Engine.TestPackage.#ctor(System.Collections.Generic.IList{System.String})">
            <summary>
            Construct an anonymous TestPackage that wraps test files.
            </summary>
            <param name="testFiles"></param>
        </member>
        <member name="P:NUnit.Engine.TestPackage.ID">
            <summary>
            Every test package gets a unique ID used to prefix test IDs within that package.
            </summary>
            <remarks>
            The generated ID is only unique for packages created within the same application domain.
            For that reason, NUnit pre-creates all test packages that will be needed.
            </remarks>
        </member>
        <member name="P:NUnit.Engine.TestPackage.Name">
            <summary>
            Gets the name of the package
            </summary>
        </member>
        <member name="P:NUnit.Engine.TestPackage.FullName">
            <summary>
            Gets the path to the file containing tests. It may be
            an assembly or a recognized project type.
            </summary>
        </member>
        <member name="P:NUnit.Engine.TestPackage.SubPackages">
            <summary>
            Gets the list of SubPackages contained in this package
            </summary>
        </member>
        <member name="P:NUnit.Engine.TestPackage.Settings">
            <summary>
            Gets the settings dictionary for this package.
            </summary>
        </member>
        <member name="M:NUnit.Engine.TestPackage.AddSubPackage(NUnit.Engine.TestPackage)">
            <summary>
            Add a subproject to the package.
            </summary>
            <param name="subPackage">The subpackage to be added</param>
        </member>
        <member name="M:NUnit.Engine.TestPackage.AddSetting(System.String,System.Object)">
            <summary>
            Add a setting to a package and all of its subpackages.
            </summary>
            <param name="name">The name of the setting</param>
            <param name="value">The value of the setting</param>
            <remarks>
            Once a package is created, subpackages may have been created
            as well. If you add a setting directly to the Settings dictionary
            of the package, the subpackages are not updated. This method is
            used when the settings are intended to be reflected to all the
            subpackages under the package.
            </remarks>
        </member>
        <member name="M:NUnit.Engine.TestPackage.GetSetting``1(System.String,``0)">
            <summary>
            Return the value of a setting or a default.
            </summary>
            <param name="name">The name of the setting</param>
            <param name="defaultSetting">The default value</param>
            <returns></returns>
        </member>
        <member name="T:NUnit.Engine.TestSelectionParserException">
            <summary>
            TestSelectionParserException is thrown when an error
            is found while parsing the selection expression.
            </summary>
        </member>
        <member name="M:NUnit.Engine.TestSelectionParserException.#ctor(System.String)">
            <summary>
            Construct with a message
            </summary>
        </member>
        <member name="M:NUnit.Engine.TestSelectionParserException.#ctor(System.String,System.Exception)">
            <summary>
            Construct with a message and inner exception
            </summary>
            <param name="message"></param>
            <param name="innerException"></param>
        </member>
        <member name="M:NUnit.Engine.TestSelectionParserException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Serialization constructor
            </summary>
        </member>
    </members>
</doc>
tools\agents\netcoreapp3.1\nunit.engine.core.dll
md5: 5075C99B2285B15EE1DE65B391D7C158 | sha1: B148C133D9C37466BF0127ADD24C1D4F22B45260 | sha256: 0E8FC0C57B6CC30A5255EBE8F0EE2EFB79DD7A3DC268A35DC853B5E1D7DA754D | sha512: 600C1B207BF1FAABCAA3EE62820D1E08D4BD8B1B0378E5452E4835631E2951D16FE2A73D4718A31CEAB9EEF864111116C5CD97004C8561281F3F9BECC982ADDC
tools\agents\netcoreapp3.1\testcentric.engine.metadata.dll
tools\agents\netcoreapp3.1\nunit.agent.addins
 
tools\agents\net5.0\nunit-agent.dll
md5: 25FD807282D26A3BC834119F82D36EF9 | sha1: 193967116282369D53F9AA1EEA95BEFD804A79B1 | sha256: D6B2BAD322B617F678AF6410715E07953A6BC27B17D5FCC82D3AF4D7DF6C8717 | sha512: DF6D25C80D2B97BB0780DD756547CD164FC1BDA1B054F3B2BA0058FB4DB8176F52B1E14649A5D576ABDB2F76FEBD07F5C0B91CB12FF032E9BAB7524358237EF1
tools\agents\net5.0\nunit-agent.dll.config
<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <!--
   Nunit-agent only runs under .NET 2.0 or higher. 
   The setting    useLegacyV2RuntimeActivationPolicy only applies 
   under .NET 4.0 and permits use of mixed mode assemblies, 
   which would otherwise not load correctly. 
  -->
  <startup useLegacyV2RuntimeActivationPolicy="true">
    <!--
     Nunit-agent is normally run by the console or gui
     runners and not independently. In normal usage, 
     the runner specifies which runtime should be used.
     
     Do NOT add any supportedRuntime elements here, 
     since they may prevent the runner from controlling 
     the runtime that is used!
    -->
  </startup>

  <runtime>
    <!-- Ensure that test exceptions don't crash NUnit -->
    <legacyUnhandledExceptionPolicy enabled="1" />

    <!--
     Since legacyUnhandledExceptionPolicy keeps the console from being killed even though an NUnit framework
     test worker thread is killed, this is needed to prevent a hang. NUnit framework can only handle these
     exceptions when this config element is present. (Or if future versions of NUnit framework drop support
     for partial trust which would enable it to use [HandleProcessCorruptedStateExceptions].)
    -->
    <legacyCorruptedStateExceptionsPolicy enabled="true" />

    <!-- Run partial trust V2 assemblies in full trust under .NET 4.0 -->
    <loadFromRemoteSources enabled="true" />

    <!-- Enable reading source information from Portable and Embedded PDBs when running applications -->
    <!-- built against previous .NET Framework versions on .NET Framework 4.7.2 -->
    <AppContextSwitchOverrides value="Switch.System.Diagnostics.IgnorePortablePDBsInStackTraces=false" />
  </runtime>
  
</configuration>
tools\agents\net5.0\nunit-agent.deps.json
{
  "runtimeTarget": {
    "name": ".NETCoreApp,Version=v5.0",
    "signature": ""
  },
  "compilationOptions": {},
  "targets": {
    ".NETCoreApp,Version=v5.0": {
      "nunit-agent/3.17.0": {
        "dependencies": {
          "nunit.engine.api": "3.17.0",
          "nunit.engine.core": "3.17.0"
        },
        "runtime": {
          "nunit-agent.dll": {}
        }
      },
      "TestCentric.Metadata/2.0.0": {
        "runtime": {
          "lib/netstandard2.0/testcentric.engine.metadata.dll": {
            "assemblyVersion": "2.0.0.0",
            "fileVersion": "2.0.0.0"
          }
        }
      },
      "nunit.engine.api/3.17.0": {
        "runtime": {
          "nunit.engine.api.dll": {}
        }
      },
      "nunit.engine.core/3.17.0": {
        "dependencies": {
          "TestCentric.Metadata": "2.0.0",
          "nunit.engine.api": "3.17.0"
        },
        "runtime": {
          "nunit.engine.core.dll": {}
        }
      }
    }
  },
  "libraries": {
    "nunit-agent/3.17.0": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "TestCentric.Metadata/2.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-uxQYLwa3uX33zm2K9OA75C6uxA2ztOf5cKR2M5sqQxiMxw95IA1gRaKkzUnhu51ez/rJEHqmpmCsccCf+t8dLg==",
      "path": "testcentric.metadata/2.0.0",
      "hashPath": "testcentric.metadata.2.0.0.nupkg.sha512"
    },
    "nunit.engine.api/3.17.0": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "nunit.engine.core/3.17.0": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    }
  }
}
tools\agents\net5.0\nunit-agent.runtimeconfig.json
{
  "runtimeOptions": {
    "tfm": "net5.0",
    "framework": {
      "name": "Microsoft.NETCore.App",
      "version": "5.0.0"
    },
    "configProperties": {
      "System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
      "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": true
    }
  }
}
tools\agents\net5.0\nunit.engine.api.dll
md5: A07C580B5BAC29B68400FC0C6413133D | sha1: EA2ECDA9284B986F0FFCA390BD565236823199C6 | sha256: A8D1BA429B42578D9E1B14BF27516C821CAD9AE1CA9F8A2FC7011163E2BD34BC | sha512: 5681CA7AD1EAA71D7686EF9A7C4E26CE7862B85D802A4BF357CF0324D53420E19DA674B0FD47CCD8643A4998B4BE1D454018BA185FD7AB37CC37B2E3F6E45B07
tools\agents\net5.0\nunit.engine.api.xml
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>nunit.engine.api</name>
    </assembly>
    <members>
        <member name="T:NUnit.Engine.NUnitEngineException">
            <summary>
            NUnitEngineException is thrown when the engine has been
            called with improper values or when a particular facility
            is not available.
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineException.#ctor(System.String)">
            <summary>
            Construct with a message
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineException.#ctor(System.String,System.Exception)">
            <summary>
            Construct with a message and inner exception
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Serialization constructor
            </summary>
        </member>
        <member name="T:NUnit.Engine.NUnitEngineNotFoundException">
            <summary>
            The exception that is thrown if a valid test engine is not found
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineNotFoundException.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:NUnit.Engine.NUnitEngineNotFoundException"/> class.
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineNotFoundException.#ctor(System.Version)">
            <summary>
            Initializes a new instance of the <see cref="T:NUnit.Engine.NUnitEngineNotFoundException"/> class.
            </summary>
            <param name="minVersion">The minimum version.</param>
        </member>
        <member name="T:NUnit.Engine.NUnitEngineUnloadException">
            <summary>
            NUnitEngineUnloadException is thrown when a test run has completed successfully
            but one or more errors were encountered when attempting to unload
            and shut down the test run cleanly.
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.String)">
            <summary>
            Construct with a message
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.String,System.Exception)">
            <summary>
            Construct with a message and inner exception
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.Collections.Generic.ICollection{System.Exception})">
            <summary>
            Construct with a message and a collection of exceptions.
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Serialization constructor.
            </summary>
        </member>
        <member name="P:NUnit.Engine.NUnitEngineUnloadException.AggregatedExceptions">
            <summary>
            Gets the collection of exceptions .
            </summary>
        </member>
        <member name="T:NUnit.Engine.Extensibility.ExtensionAttribute">
            <summary>
            The ExtensionAttribute is used to identify a class that is intended
            to serve as an extension.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.ExtensionAttribute.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:NUnit.Engine.Extensibility.ExtensionAttribute"/> class.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.Path">
            <summary>
            A unique string identifying the ExtensionPoint for which this Extension is 
            intended. This is an optional field provided NUnit is able to deduce the
            ExtensionPoint from the Type of the extension class.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.Description">
            <summary>
            An optional description of what the extension does.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.Enabled">
            <summary>
            Flag indicating whether the extension is enabled.
            </summary>
            <value><c>true</c> if enabled; otherwise, <c>false</c>.</value>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.EngineVersion">
            <summary>
            The minimum Engine version for which this extension is designed
            </summary>
        </member>
        <member name="T:NUnit.Engine.Extensibility.ExtensionPointAttribute">
            <summary>
            ExtensionPointAttribute is used at the assembly level to identify and
            document any ExtensionPoints supported by the assembly.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.ExtensionPointAttribute.#ctor(System.String,System.Type)">
            <summary>
            Construct an ExtensionPointAttribute
            </summary>
            <param name="path">A unique string identifying the extension point.</param>
            <param name="type">The required Type of any extension that is installed at this extension point.</param>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionPointAttribute.Path">
            <summary>
            The unique string identifying this ExtensionPoint. This identifier
            is typically formatted as a path using '/' and the set of extension 
            points is sometimes viewed as forming a tree.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionPointAttribute.Type">
            <summary>
            The required Type (usually an interface) of any extension that is 
            installed at this ExtensionPoint.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionPointAttribute.Description">
            <summary>
            An optional description of the purpose of the ExtensionPoint
            </summary>
        </member>
        <member name="T:NUnit.Engine.Extensibility.ExtensionPropertyAttribute">
            <summary>
            The ExtensionPropertyAttribute is used to specify named properties for an extension.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.ExtensionPropertyAttribute.#ctor(System.String,System.String)">
            <summary>
            Construct an ExtensionPropertyAttribute
            </summary>
            <param name="name">The name of the property</param>
            <param name="value">The property value</param>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionPropertyAttribute.Name">
            <summary>
            The name of the property.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionPropertyAttribute.Value">
            <summary>
            The property value
            </summary>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IDriverFactory">
            <summary>
            Interface implemented by a Type that knows how to create a driver for a test assembly.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IDriverFactory.IsSupportedTestFramework(System.Reflection.AssemblyName)">
            <summary>
            Gets a flag indicating whether a given AssemblyName
            represents a test framework supported by this factory.
            </summary>
            <param name="reference">An AssemblyName referring to the possible test framework.</param>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IDriverFactory.GetDriver(System.Reflection.AssemblyName)">
            <summary>
            Gets a driver for a given test assembly and a framework
            which the assembly is already known to reference.
            </summary>
            <param name="reference">An AssemblyName referring to the test framework.</param>
            <returns></returns>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IExtensionNode">
            <summary>
            The IExtensionNode interface is implemented by a class that represents a
            single extension being installed on a particular extension point.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.TypeName">
            <summary>
            Gets the full name of the Type of the extension object.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.Enabled">
            <summary>
            Gets a value indicating whether this <see cref="T:NUnit.Engine.Extensibility.IExtensionNode"/> is enabled.
            </summary>
            <value><c>true</c> if enabled; otherwise, <c>false</c>.</value>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.Path">
            <summary>
            Gets the unique string identifying the ExtensionPoint for which
            this Extension is intended. This identifier may be supplied by the attribute
            marking the extension or deduced by NUnit from the Type of the extension class.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.Description">
            <summary>
            Gets an optional description of what the extension does.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.TargetFramework">
            <summary>
            The TargetFramework of the extension assembly.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.PropertyNames">
            <summary>
            Gets a collection of the names of all this extension's properties
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IExtensionNode.GetValues(System.String)">
            <summary>
            Gets a collection of the values of a particular named property
            If none are present, returns an empty enumerator.
            </summary>
            <param name="name">The property name</param>
            <returns>A collection of values</returns>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.AssemblyPath">
            <summary>
            The path to the assembly implementing this extension.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.AssemblyVersion">
            <summary>
            The version of the assembly implementing this extension.
            </summary>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IExtensionPoint">
            <summary>
            An ExtensionPoint represents a single point in the TestEngine
            that may be extended by user addins and extensions.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionPoint.Path">
            <summary>
            Gets the unique path identifying this extension point.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionPoint.Description">
            <summary>
            Gets the description of this extension point. May be null.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionPoint.TypeName">
            <summary>
            Gets the FullName of the Type required for any extension to be installed at this extension point.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionPoint.Extensions">
            <summary>
            Gets an enumeration of IExtensionNodes for extensions installed on this extension point.
            </summary>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IFrameworkDriver">
            <summary>
            The IFrameworkDriver interface is implemented by a class that
            is able to use an external framework to explore or run tests
            under the engine.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IFrameworkDriver.ID">
            <summary>
            Gets and sets the unique identifier for this driver,
            used to ensure that test ids are unique across drivers.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.Load(System.String,System.Collections.Generic.IDictionary{System.String,System.Object})">
            <summary>
            Loads the tests in an assembly.
            </summary>
            <returns>An Xml string representing the loaded test</returns>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.CountTestCases(System.String)">
            <summary>
            Count the test cases that would be executed.
            </summary>
            <param name="filter">An XML string representing the TestFilter to use in counting the tests</param>
            <returns>The number of test cases counted</returns>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.Run(NUnit.Engine.ITestEventListener,System.String)">
            <summary>
            Executes the tests in an assembly.
            </summary>
            <param name="listener">An ITestEventHandler that receives progress notices</param>
            <param name="filter">A XML string representing the filter that controls which tests are executed</param>
            <returns>An Xml string representing the result</returns>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.Explore(System.String)">
            <summary>
            Returns information about the tests in an assembly.
            </summary>
            <param name="filter">An XML string representing the filter that controls which tests are included</param>
            <returns>An Xml string representing the tests</returns>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.StopRun(System.Boolean)">
            <summary>
            Cancel the ongoing test run. If no  test is running, the call is ignored.
            </summary>
            <param name="force">If true, cancel any ongoing test threads, otherwise wait for them to complete.</param>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IProject">
            <summary>
            Interface for the various project types that the engine can load.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IProject.ProjectPath">
            <summary>
            Gets the path to the file storing this project, if any.
            If the project has not been saved, this is null.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IProject.ActiveConfigName">
            <summary>
            Gets the active configuration, as defined
            by the particular project.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IProject.ConfigNames">
            <summary>
            Gets a list of the configs for this project
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IProject.GetTestPackage">
            <summary>
            Gets a test package for the primary or active
            configuration within the project. The package 
            includes all the assemblies and any settings
            specified in the project format.
            </summary>
            <returns>A TestPackage</returns>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IProject.GetTestPackage(System.String)">
            <summary>
            Gets a TestPackage for a specific configuration
            within the project. The package includes all the
            assemblies and any settings specified in the 
            project format.
            </summary>
            <param name="configName">The name of the config to use</param>
            <returns>A TestPackage for the named configuration.</returns>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IProjectLoader">
            <summary>
            The IProjectLoader interface is implemented by any class
            that knows how to load projects in a specific format.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IProjectLoader.CanLoadFrom(System.String)">
            <summary>
            Returns true if the file indicated is one that this
            loader knows how to load.
            </summary>
            <param name="path">The path of the project file</param>
            <returns>True if the loader knows how to load this file, otherwise false</returns>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IProjectLoader.LoadFrom(System.String)">
            <summary>
            Loads a project of a known format.
            </summary>
            <param name="path">The path of the project file</param>
            <returns>An IProject interface to the loaded project or null if the project cannot be loaded</returns>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IResultWriter">
            <summary>
            Common interface for objects that process and write out test results
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IResultWriter.CheckWritability(System.String)">
            <summary>
            Checks if the output path is writable. If the output is not
            writable, this method should throw an exception.
            </summary>
            <param name="outputPath"></param>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IResultWriter.WriteResultFile(System.Xml.XmlNode,System.String)">
            <summary>
            Writes result to the specified output path.
            </summary>
            <param name="resultNode">XmlNode for the result</param>
            <param name="outputPath">Path to which it should be written</param>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IResultWriter.WriteResultFile(System.Xml.XmlNode,System.IO.TextWriter)">
            <summary>
            Writes result to a TextWriter.
            </summary>
            <param name="resultNode">XmlNode for the result</param>
            <param name="writer">TextWriter to which it should be written</param>
        </member>
        <member name="T:NUnit.Engine.Extensibility.TypeExtensionPointAttribute">
            <summary>
            TypeExtensionPointAttribute is used to bind an extension point
            to a class or interface.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.#ctor(System.String)">
            <summary>
            Construct a TypeExtensionPointAttribute, specifying the path.
            </summary>
            <param name="path">A unique string identifying the extension point.</param>
        </member>
        <member name="M:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.#ctor">
            <summary>
            Construct an TypeExtensionPointAttribute, without specifying the path.
            The extension point will use a path constructed based on the interface
            or class to which the attribute is applied.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.Path">
            <summary>
            The unique string identifying this ExtensionPoint. This identifier
            is typically formatted as a path using '/' and the set of extension 
            points is sometimes viewed as forming a tree.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.Description">
            <summary>
            An optional description of the purpose of the ExtensionPoint
            </summary>
        </member>
        <member name="T:NUnit.Engine.IAvailableRuntimes">
            <summary>
            Interface that returns a list of available runtime frameworks.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IAvailableRuntimes.AvailableRuntimes">
            <summary>
            Gets a list of available runtime frameworks.
            </summary>
        </member>
        <member name="T:NUnit.Engine.IExtensionService">
            <summary>
            The IExtensionService interface allows a runner to manage extensions.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IExtensionService.ExtensionPoints">
            <summary>
            Gets an enumeration of all ExtensionPoints in the engine.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IExtensionService.Extensions">
            <summary>
            Gets an enumeration of all installed Extensions.
            </summary>
        </member>
        <member name="M:NUnit.Engine.IExtensionService.GetExtensionPoint(System.String)">
            <summary>
            Get an ExtensionPoint based on its unique identifying path.
            </summary>
        </member>
        <member name="M:NUnit.Engine.IExtensionService.GetExtensionNodes(System.String)">
            <summary>
            Get an enumeration of ExtensionNodes based on their identifying path.
            </summary>
        </member>
        <member name="M:NUnit.Engine.IExtensionService.EnableExtension(System.String,System.Boolean)">
            <summary>
            Enable or disable an extension
            </summary>
            <param name="typeName"></param>
            <param name="enabled"></param>
        </member>
        <member name="T:NUnit.Engine.ILogger">
            <summary>
            Interface for logging within the engine
            </summary>
        </member>
        <member name="M:NUnit.Engine.ILogger.Error(System.String)">
            <summary>
            Logs the specified message at the error level.
            </summary>
            <param name="message">The message.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Error(System.String,System.Object[])">
            <summary>
            Logs the specified message at the error level.
            </summary>
            <param name="format">The message.</param>
            <param name="args">The arguments.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Warning(System.String)">
            <summary>
            Logs the specified message at the warning level.
            </summary>
            <param name="message">The message.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Warning(System.String,System.Object[])">
            <summary>
            Logs the specified message at the warning level.
            </summary>
            <param name="format">The message.</param>
            <param name="args">The arguments.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Info(System.String)">
            <summary>
            Logs the specified message at the info level.
            </summary>
            <param name="message">The message.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Info(System.String,System.Object[])">
            <summary>
            Logs the specified message at the info level.
            </summary>
            <param name="format">The message.</param>
            <param name="args">The arguments.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Debug(System.String)">
            <summary>
            Logs the specified message at the debug level.
            </summary>
            <param name="message">The message.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Debug(System.String,System.Object[])">
            <summary>
            Logs the specified message at the debug level.
            </summary>
            <param name="format">The message.</param>
            <param name="args">The arguments.</param>
        </member>
        <member name="T:NUnit.Engine.ILogging">
            <summary>
            Interface to abstract getting loggers
            </summary>
        </member>
        <member name="M:NUnit.Engine.ILogging.GetLogger(System.String)">
            <summary>
            Gets the logger.
            </summary>
            <param name="name">The name of the logger to get.</param>
            <returns></returns>
        </member>
        <member name="T:NUnit.Engine.InternalTraceLevel">
            <summary>
            InternalTraceLevel is an enumeration controlling the
            level of detailed presented in the internal log.
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Default">
            <summary>
            Use the default settings as specified by the user.
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Off">
            <summary>
            Do not display any trace messages
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Error">
            <summary>
            Display Error messages only
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Warning">
            <summary>
            Display Warning level and higher messages
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Info">
            <summary>
            Display informational and higher messages
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Debug">
            <summary>
            Display debug messages and higher - i.e. all messages
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Verbose">
            <summary>
            Display debug messages and higher - i.e. all messages
            </summary>
        </member>
        <member name="T:NUnit.Engine.IRecentFiles">
            <summary>
            The IRecentFiles interface is used to isolate the app
            from various implementations of recent files.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRecentFiles.MaxFiles">
            <summary>
            The max number of files saved
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRecentFiles.Entries">
            <summary>
            Get a list of all the file entries
            </summary>
            <returns>The most recent file list</returns>
        </member>
        <member name="M:NUnit.Engine.IRecentFiles.SetMostRecent(System.String)">
            <summary>
            Set the most recent file name, reordering
            the saved names as needed and removing the oldest
            if the max number of files would be exceeded.
            The current CLR version is used to create the entry.
            </summary>
        </member>
        <member name="M:NUnit.Engine.IRecentFiles.Remove(System.String)">
            <summary>
            Remove a file from the list
            </summary>
            <param name="fileName">The name of the file to remove</param>
        </member>
        <member name="T:NUnit.Engine.IResultService">
            <summary>
            IResultWriterService provides result writers for a specified
            well-known format.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IResultService.Formats">
            <summary>
            Gets an array of the available formats
            </summary>
        </member>
        <member name="M:NUnit.Engine.IResultService.GetResultWriter(System.String,System.Object[])">
            <summary>
            Gets a ResultWriter for a given format and set of arguments.
            </summary>
            <param name="format">The name of the format to be used</param>
            <param name="args">A set of arguments to be used in constructing the writer or null if non arguments are needed</param>
            <returns>An IResultWriter</returns>
        </member>
        <member name="T:NUnit.Engine.IRuntimeFramework">
            <summary>
            Interface implemented by objects representing a runtime framework.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRuntimeFramework.Id">
            <summary>
            Gets the inique Id for this runtime, such as "net-4.5"
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRuntimeFramework.DisplayName">
            <summary>
            Gets the display name of the framework, such as ".NET 4.5"
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRuntimeFramework.FrameworkVersion">
            <summary>
            Gets the framework version: usually contains two components, Major
            and Minor, which match the corresponding CLR components, but not always.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRuntimeFramework.ClrVersion">
            <summary>
            Gets the Version of the CLR for this framework
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRuntimeFramework.Profile">
            <summary>
            Gets a string representing the particular profile installed,
            or null if there is no profile. Currently. the only defined 
            values are Full and Client.
            </summary>
        </member>
        <member name="T:NUnit.Engine.IRuntimeFrameworkService">
            <summary>
            Implemented by a type that provides information about the
            current and other available runtimes.
            </summary>
        </member>
        <member name="M:NUnit.Engine.IRuntimeFrameworkService.IsAvailable(System.String)">
            <summary>
            Returns true if the runtime framework represented by
            the string passed as an argument is available.
            </summary>
            <param name="framework">A string representing a framework, like 'net-4.0'</param>
            <returns>True if the framework is available, false if unavailable or nonexistent</returns>
        </member>
        <member name="M:NUnit.Engine.IRuntimeFrameworkService.SelectRuntimeFramework(NUnit.Engine.TestPackage)">
             <summary>
             Selects a target runtime framework for a TestPackage based on
             the settings in the package and the assemblies themselves.
             The package RuntimeFramework setting may be updated as a 
             result and the selected runtime is returned.
            
             Note that if a package has subpackages, the subpackages may run on a different
             framework to the top-level package. In future, this method should
             probably not return a simple string, and instead require runners
             to inspect the test package structure, to find all desired frameworks.
             </summary>
             <param name="package">A TestPackage</param>
             <returns>The selected RuntimeFramework</returns>
        </member>
        <member name="T:NUnit.Engine.ServiceStatus">
            <summary>
            Enumeration representing the status of a service
            </summary>
        </member>
        <member name="F:NUnit.Engine.ServiceStatus.Stopped">
            <summary>Service was never started or has been stopped</summary>
        </member>
        <member name="F:NUnit.Engine.ServiceStatus.Started">
            <summary>Started successfully</summary>
        </member>
        <member name="F:NUnit.Engine.ServiceStatus.Error">
            <summary>Service failed to start and is unavailable</summary>
        </member>
        <member name="T:NUnit.Engine.IService">
            <summary>
            The IService interface is implemented by all Services. Although it
            is extensible, it does not reside in the Extensibility namespace
            because it is so widely used by the engine.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IService.ServiceContext">
            <summary>
            The ServiceContext
            </summary>
        </member>
        <member name="P:NUnit.Engine.IService.Status">
            <summary>
            Gets the ServiceStatus of this service
            </summary>
        </member>
        <member name="M:NUnit.Engine.IService.StartService">
            <summary>
            Initialize the Service
            </summary>
        </member>
        <member name="M:NUnit.Engine.IService.StopService">
            <summary>
            Do any cleanup needed before terminating the service
            </summary>
        </member>
        <member name="T:NUnit.Engine.IServiceLocator">
            <summary>
            IServiceLocator allows clients to locate any NUnit services
            for which the interface is referenced. In normal use, this
            linits it to those services using interfaces defined in the 
            nunit.engine.api assembly.
            </summary>
        </member>
        <member name="M:NUnit.Engine.IServiceLocator.GetService``1">
            <summary>
            Return a specified type of service
            </summary>
        </member>
        <member name="M:NUnit.Engine.IServiceLocator.GetService(System.Type)">
            <summary>
            Return a specified type of service
            </summary>
        </member>
        <member name="T:NUnit.Engine.SettingsEventHandler">
            <summary>
            Event handler for settings changes
            </summary>
            <param name="sender">The sender.</param>
            <param name="args">The <see cref="T:NUnit.Engine.SettingsEventArgs"/> instance containing the event data.</param>
        </member>
        <member name="T:NUnit.Engine.SettingsEventArgs">
            <summary>
            Event argument for settings changes
            </summary>
        </member>
        <member name="M:NUnit.Engine.SettingsEventArgs.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:NUnit.Engine.SettingsEventArgs"/> class.
            </summary>
            <param name="settingName">Name of the setting that has changed.</param>
        </member>
        <member name="P:NUnit.Engine.SettingsEventArgs.SettingName">
            <summary>
            Gets the name of the setting that has changed
            </summary>
        </member>
        <member name="T:NUnit.Engine.ISettings">
            <summary>
            The ISettings interface is used to access all user
            settings and options.
            </summary>
        </member>
        <member name="E:NUnit.Engine.ISettings.Changed">
            <summary>
            Occurs when the settings are changed.
            </summary>
        </member>
        <member name="M:NUnit.Engine.ISettings.GetSetting(System.String)">
            <summary>
            Load a setting from the storage.
            </summary>
            <param name="settingName">Name of the setting to load</param>
            <returns>Value of the setting or null</returns>
        </member>
        <member name="M:NUnit.Engine.ISettings.GetSetting``1(System.String,``0)">
            <summary>
            Load a setting from the storage or return a default value
            </summary>
            <param name="settingName">Name of the setting to load</param>
            <param name="defaultValue">Value to return if the setting is missing</param>
            <returns>Value of the setting or the default value</returns>
        </member>
        <member name="M:NUnit.Engine.ISettings.RemoveSetting(System.String)">
            <summary>
            Remove a setting from the storage
            </summary>
            <param name="settingName">Name of the setting to remove</param>
        </member>
        <member name="M:NUnit.Engine.ISettings.RemoveGroup(System.String)">
            <summary>
            Remove an entire group of settings from the storage
            </summary>
            <param name="groupName">Name of the group to remove</param>
        </member>
        <member name="M:NUnit.Engine.ISettings.SaveSetting(System.String,System.Object)">
            <summary>
            Save a setting in the storage
            </summary>
            <param name="settingName">Name of the setting to save</param>
            <param name="settingValue">Value to be saved</param>
        </member>
        <member name="T:NUnit.Engine.ITestEngine">
            <summary>
            ITestEngine represents an instance of the test engine.
            Clients wanting to discover, explore or run tests start
            require an instance of the engine, which is generally
            acquired from the TestEngineActivator class.
            </summary>
        </member>
        <member name="P:NUnit.Engine.ITestEngine.Services">
            <summary>
            Gets the IServiceLocator interface, which gives access to
            certain services provided by the engine.
            </summary>
        </member>
        <member name="P:NUnit.Engine.ITestEngine.WorkDirectory">
            <summary>
            Gets and sets the directory path used by the engine for saving files.
            Some services may ignore changes to this path made after initialization.
            The default value is the current directory.
            </summary>
        </member>
        <member name="P:NUnit.Engine.ITestEngine.InternalTraceLevel">
            <summary>
            Gets and sets the InternalTraceLevel used by the engine. Changing this
            setting after initialization will have no effect. The default value
            is the value saved in the NUnit settings.
            </summary>
        </member>
        <member name="M:NUnit.Engine.ITestEngine.Initialize">
             <summary>
             Initialize the engine. This includes initializing mono addins,
             setting the trace level and creating the standard set of services
             used in the Engine.
            
             This interface is not normally called by user code. Programs linking
             only to the nunit.engine.api assembly are given a
             pre-initialized instance of TestEngine. Programs
             that link directly to nunit.engine usually do so
             in order to perform custom initialization.
             </summary>
        </member>
        <member name="M:NUnit.Engine.ITestEngine.GetRunner(NUnit.Engine.TestPackage)">
            <summary>
            Returns a test runner instance for use by clients in discovering,
            exploring and executing tests.
            </summary>
            <param name="package">The TestPackage for which the runner is intended.</param>
            <returns>An ITestRunner.</returns>
        </member>
        <member name="T:NUnit.Engine.ITestEventListener">
            <summary>
            The ITestListener interface is used to receive notices of significant
            events while a test is running. Its single method accepts an Xml string,
            which may represent any event generated by the test framework, the driver
            or any of the runners internal to the engine. Use of Xml means that
            any driver and framework may add additional events and the engine will
            simply pass them on through this interface.
            </summary>
        </member>
        <member name="M:NUnit.Engine.ITestEventListener.OnTestEvent(System.String)">
            <summary>
            Handle a progress report or other event.
            </summary>
            <param name="report">An XML progress report.</param>
        </member>
        <member name="T:NUnit.Engine.ITestFilterBuilder">
            <summary>
            Interface to a TestFilterBuilder, which is used to create TestFilters
            </summary>
        </member>
        <member name="M:NUnit.Engine.ITestFilterBuilder.AddTest(System.String)">
            <summary>
            Add a test to be selected
            </summary>
            <param name="fullName">The full name of the test, as created by NUnit</param>
        </member>
        <member name="M:NUnit.Engine.ITestFilterBuilder.SelectWhere(System.String)">
            <summary>
            Specify what is to be included by the filter using a where clause.
            </summary>
            <param name="whereClause">A where clause that will be parsed by NUnit to create the filter.</param>
        </member>
        <member name="M:NUnit.Engine.ITestFilterBuilder.GetFilter">
            <summary>
            Get a TestFilter constructed according to the criteria specified by the other calls.
            </summary>
            <returns>A TestFilter.</returns>
        </member>
        <member name="T:NUnit.Engine.ITestFilterService">
            <summary>
            The TestFilterService provides builders that can create TestFilters
            </summary>
        </member>
        <member name="M:NUnit.Engine.ITestFilterService.GetTestFilterBuilder">
            <summary>
            Get an uninitialized TestFilterBuilder
            </summary>
        </member>
        <member name="T:NUnit.Engine.ITestRun">
            <summary>
            The ITestRun class represents an ongoing test run.
            </summary>
        </member>
        <member name="P:NUnit.Engine.ITestRun.Result">
            <summary>
            Get the result of the test.
            </summary>
            <returns>An XmlNode representing the test run result</returns>
        </member>
        <member name="M:NUnit.Engine.ITestRun.Wait(System.Int32)">
            <summary>
            Blocks the current thread until the current test run completes
            or the timeout is reached
            </summary>
            <param name="timeout">A <see cref="T:System.Int32"/> that represents the number of milliseconds to wait or -1 milliseconds to wait indefinitely. </param>
            <returns>True if the run completed</returns>
        </member>
        <member name="T:NUnit.Engine.ITestRunner">
            <summary>
            Interface implemented by all test runners.
            </summary>
        </member>
        <member name="P:NUnit.Engine.ITestRunner.IsTestRunning">
            <summary>
            Get a flag indicating whether a test is running
            </summary>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.Load">
            <summary>
            Load a TestPackage for possible execution
            </summary>
            <returns>An XmlNode representing the loaded package.</returns>
            <remarks>
            This method is normally optional, since Explore and Run call
            it automatically when necessary. The method is kept in order
            to make it easier to convert older programs that use it.
            </remarks>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.Unload">
            <summary>
            Unload any loaded TestPackage. If none is loaded,
            the call is ignored.
            </summary>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.Reload">
            <summary>
            Reload the current TestPackage
            </summary>
            <returns>An XmlNode representing the loaded package.</returns>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.CountTestCases(NUnit.Engine.TestFilter)">
            <summary>
            Count the test cases that would be run under
            the specified filter.
            </summary>
            <param name="filter">A TestFilter</param>
            <returns>The count of test cases</returns>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.Run(NUnit.Engine.ITestEventListener,NUnit.Engine.TestFilter)">
            <summary>
            Run the tests in the loaded TestPackage and return a test result. The tests
            are run synchronously and the listener interface is notified as it progresses.
            </summary>
            <param name="listener">The listener that is notified as the run progresses</param>
            <param name="filter">A TestFilter used to select tests</param>
            <returns>An XmlNode giving the result of the test execution</returns>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.RunAsync(NUnit.Engine.ITestEventListener,NUnit.Engine.TestFilter)">
            <summary>
            Start a run of the tests in the loaded TestPackage. The tests are run
            asynchronously and the listener interface is notified as it progresses.
            </summary>
            <param name="listener">The listener that is notified as the run progresses</param>
            <param name="filter">A TestFilter used to select tests</param>
            <returns></returns>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.StopRun(System.Boolean)">
            <summary>
            Cancel the ongoing test run. If no  test is running, the call is ignored.
            </summary>
            <param name="force">If true, cancel any ongoing test threads, otherwise wait for them to complete.</param>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.Explore(NUnit.Engine.TestFilter)">
            <summary>
            Explore a loaded TestPackage and return information about the tests found.
            </summary>
            <param name="filter">The TestFilter to be used in selecting tests to explore.</param>
            <returns>An XmlNode representing the tests found.</returns>
        </member>
        <member name="T:NUnit.Engine.TestEngineActivator">
            <summary>
            TestEngineActivator creates an instance of the test engine and returns an ITestEngine interface.
            </summary>
        </member>
        <member name="M:NUnit.Engine.TestEngineActivator.CreateInstance">
            <summary>
            Create an instance of the test engine.
            </summary>
            <returns>An <see cref="T:NUnit.Engine.ITestEngine"/></returns>
        </member>
        <member name="T:NUnit.Engine.TestFilter">
            <summary>
            Abstract base for all test filters. A filter is represented
            by an XmlNode with &lt;filter&gt; as its topmost element.
            In the console runner, filters serve only to carry this
            XML representation, as all filtering is done by the engine.
            </summary>
        </member>
        <member name="M:NUnit.Engine.TestFilter.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:NUnit.Engine.TestFilter"/> class.
            </summary>
            <param name="xmlText">The XML text that specifies the filter.</param>
        </member>
        <member name="F:NUnit.Engine.TestFilter.Empty">
            <summary>
            The empty filter - one that always passes.
            </summary>
        </member>
        <member name="P:NUnit.Engine.TestFilter.Text">
            <summary>
            Gets the XML representation of this filter as a string.
            </summary>
        </member>
        <member name="T:NUnit.Engine.TestPackage">
            <summary>
            TestPackage holds information about a set of test files to
            be loaded by a TestRunner. Each TestPackage represents
            tests for one or more test files. TestPackages may be named
            or anonymous, depending on the constructor used.
            
            Upon construction, a package is given an ID (string), which
            remains unchanged for the lifetime of the TestPackage instance.
            The package ID is passed to the test framework for use in generating
            test IDs.
            
            A runner that reloads test assemblies and wants the ids to remain stable
            should avoid creating a new package but should instead use the original
            package, changing settings as needed. This gives the best chance for the
            tests in the reloaded assembly to match those originally loaded.
            </summary>
        </member>
        <member name="M:NUnit.Engine.TestPackage.#ctor(System.String)">
            <summary>
            Construct a named TestPackage, specifying a file path for
            the assembly or project to be used.
            </summary>
            <param name="filePath">The file path.</param>
        </member>
        <member name="M:NUnit.Engine.TestPackage.#ctor(System.Collections.Generic.IList{System.String})">
            <summary>
            Construct an anonymous TestPackage that wraps test files.
            </summary>
            <param name="testFiles"></param>
        </member>
        <member name="P:NUnit.Engine.TestPackage.ID">
            <summary>
            Every test package gets a unique ID used to prefix test IDs within that package.
            </summary>
            <remarks>
            The generated ID is only unique for packages created within the same application domain.
            For that reason, NUnit pre-creates all test packages that will be needed.
            </remarks>
        </member>
        <member name="P:NUnit.Engine.TestPackage.Name">
            <summary>
            Gets the name of the package
            </summary>
        </member>
        <member name="P:NUnit.Engine.TestPackage.FullName">
            <summary>
            Gets the path to the file containing tests. It may be
            an assembly or a recognized project type.
            </summary>
        </member>
        <member name="P:NUnit.Engine.TestPackage.SubPackages">
            <summary>
            Gets the list of SubPackages contained in this package
            </summary>
        </member>
        <member name="P:NUnit.Engine.TestPackage.Settings">
            <summary>
            Gets the settings dictionary for this package.
            </summary>
        </member>
        <member name="M:NUnit.Engine.TestPackage.AddSubPackage(NUnit.Engine.TestPackage)">
            <summary>
            Add a subproject to the package.
            </summary>
            <param name="subPackage">The subpackage to be added</param>
        </member>
        <member name="M:NUnit.Engine.TestPackage.AddSetting(System.String,System.Object)">
            <summary>
            Add a setting to a package and all of its subpackages.
            </summary>
            <param name="name">The name of the setting</param>
            <param name="value">The value of the setting</param>
            <remarks>
            Once a package is created, subpackages may have been created
            as well. If you add a setting directly to the Settings dictionary
            of the package, the subpackages are not updated. This method is
            used when the settings are intended to be reflected to all the
            subpackages under the package.
            </remarks>
        </member>
        <member name="M:NUnit.Engine.TestPackage.GetSetting``1(System.String,``0)">
            <summary>
            Return the value of a setting or a default.
            </summary>
            <param name="name">The name of the setting</param>
            <param name="defaultSetting">The default value</param>
            <returns></returns>
        </member>
        <member name="T:NUnit.Engine.TestSelectionParserException">
            <summary>
            TestSelectionParserException is thrown when an error
            is found while parsing the selection expression.
            </summary>
        </member>
        <member name="M:NUnit.Engine.TestSelectionParserException.#ctor(System.String)">
            <summary>
            Construct with a message
            </summary>
        </member>
        <member name="M:NUnit.Engine.TestSelectionParserException.#ctor(System.String,System.Exception)">
            <summary>
            Construct with a message and inner exception
            </summary>
            <param name="message"></param>
            <param name="innerException"></param>
        </member>
        <member name="M:NUnit.Engine.TestSelectionParserException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Serialization constructor
            </summary>
        </member>
    </members>
</doc>
tools\agents\net5.0\nunit.engine.core.dll
md5: 984FB67BCB84A7515F6CBD3A874EB798 | sha1: 6E67D44D25434F3A4B93CD9A3F33ECE59FB0A7AC | sha256: 673A6232CB1FC385648705341BBCF80218E78B4E8E31AF10BFDD1CFD10790E3B | sha512: 8035D3F103960BA4FB8E93A712E017CB9D4CB7F65A0578EC6A1ACED85E862D84CB65FD0CCC653E9476672305FB40044B3BACA5C482E4D25E3ACBFC91FB9A94FC
tools\agents\net5.0\testcentric.engine.metadata.dll
tools\agents\net5.0\nunit.agent.addins
 
tools\agents\net6.0\nunit-agent.dll
md5: AED1B297BC7AE7322326EA1573FCA8BC | sha1: 887A5E5C9246BE3841C2A364C737668DB7CC2A9C | sha256: 2262E8C44DE8D6307573AF1C1E9CFF3E3D310551882ED66F8071E302B9CE737B | sha512: FE060A34605254DA79D2C30B00912749B408DDB437B05A52E17E3833800E5B349884B2540A9B210C037E80472C6149407E8513A4A49A9171302008A33C122048
tools\agents\net6.0\nunit-agent.dll.config
<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <!--
   Nunit-agent only runs under .NET 2.0 or higher. 
   The setting    useLegacyV2RuntimeActivationPolicy only applies 
   under .NET 4.0 and permits use of mixed mode assemblies, 
   which would otherwise not load correctly. 
  -->
  <startup useLegacyV2RuntimeActivationPolicy="true">
    <!--
     Nunit-agent is normally run by the console or gui
     runners and not independently. In normal usage, 
     the runner specifies which runtime should be used.
     
     Do NOT add any supportedRuntime elements here, 
     since they may prevent the runner from controlling 
     the runtime that is used!
    -->
  </startup>

  <runtime>
    <!-- Ensure that test exceptions don't crash NUnit -->
    <legacyUnhandledExceptionPolicy enabled="1" />

    <!--
     Since legacyUnhandledExceptionPolicy keeps the console from being killed even though an NUnit framework
     test worker thread is killed, this is needed to prevent a hang. NUnit framework can only handle these
     exceptions when this config element is present. (Or if future versions of NUnit framework drop support
     for partial trust which would enable it to use [HandleProcessCorruptedStateExceptions].)
    -->
    <legacyCorruptedStateExceptionsPolicy enabled="true" />

    <!-- Run partial trust V2 assemblies in full trust under .NET 4.0 -->
    <loadFromRemoteSources enabled="true" />

    <!-- Enable reading source information from Portable and Embedded PDBs when running applications -->
    <!-- built against previous .NET Framework versions on .NET Framework 4.7.2 -->
    <AppContextSwitchOverrides value="Switch.System.Diagnostics.IgnorePortablePDBsInStackTraces=false" />
  </runtime>
  
</configuration>
tools\agents\net6.0\nunit-agent.deps.json
{
  "runtimeTarget": {
    "name": ".NETCoreApp,Version=v6.0",
    "signature": ""
  },
  "compilationOptions": {},
  "targets": {
    ".NETCoreApp,Version=v6.0": {
      "nunit-agent/3.17.0": {
        "dependencies": {
          "nunit.engine.api": "3.17.0",
          "nunit.engine.core": "3.17.0"
        },
        "runtime": {
          "nunit-agent.dll": {}
        }
      },
      "TestCentric.Metadata/2.0.0": {
        "runtime": {
          "lib/netstandard2.0/testcentric.engine.metadata.dll": {
            "assemblyVersion": "2.0.0.0",
            "fileVersion": "2.0.0.0"
          }
        }
      },
      "nunit.engine.api/3.17.0": {
        "runtime": {
          "nunit.engine.api.dll": {}
        }
      },
      "nunit.engine.core/3.17.0": {
        "dependencies": {
          "TestCentric.Metadata": "2.0.0",
          "nunit.engine.api": "3.17.0"
        },
        "runtime": {
          "nunit.engine.core.dll": {}
        }
      }
    }
  },
  "libraries": {
    "nunit-agent/3.17.0": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "TestCentric.Metadata/2.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-uxQYLwa3uX33zm2K9OA75C6uxA2ztOf5cKR2M5sqQxiMxw95IA1gRaKkzUnhu51ez/rJEHqmpmCsccCf+t8dLg==",
      "path": "testcentric.metadata/2.0.0",
      "hashPath": "testcentric.metadata.2.0.0.nupkg.sha512"
    },
    "nunit.engine.api/3.17.0": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "nunit.engine.core/3.17.0": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    }
  }
}
tools\agents\net6.0\nunit-agent.runtimeconfig.json
{
  "runtimeOptions": {
    "tfm": "net6.0",
    "framework": {
      "name": "Microsoft.NETCore.App",
      "version": "6.0.0"
    },
    "configProperties": {
      "System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
      "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": true
    }
  }
}
tools\agents\net6.0\nunit.engine.api.dll
md5: A07C580B5BAC29B68400FC0C6413133D | sha1: EA2ECDA9284B986F0FFCA390BD565236823199C6 | sha256: A8D1BA429B42578D9E1B14BF27516C821CAD9AE1CA9F8A2FC7011163E2BD34BC | sha512: 5681CA7AD1EAA71D7686EF9A7C4E26CE7862B85D802A4BF357CF0324D53420E19DA674B0FD47CCD8643A4998B4BE1D454018BA185FD7AB37CC37B2E3F6E45B07
tools\agents\net6.0\nunit.engine.api.xml
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>nunit.engine.api</name>
    </assembly>
    <members>
        <member name="T:NUnit.Engine.NUnitEngineException">
            <summary>
            NUnitEngineException is thrown when the engine has been
            called with improper values or when a particular facility
            is not available.
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineException.#ctor(System.String)">
            <summary>
            Construct with a message
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineException.#ctor(System.String,System.Exception)">
            <summary>
            Construct with a message and inner exception
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Serialization constructor
            </summary>
        </member>
        <member name="T:NUnit.Engine.NUnitEngineNotFoundException">
            <summary>
            The exception that is thrown if a valid test engine is not found
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineNotFoundException.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:NUnit.Engine.NUnitEngineNotFoundException"/> class.
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineNotFoundException.#ctor(System.Version)">
            <summary>
            Initializes a new instance of the <see cref="T:NUnit.Engine.NUnitEngineNotFoundException"/> class.
            </summary>
            <param name="minVersion">The minimum version.</param>
        </member>
        <member name="T:NUnit.Engine.NUnitEngineUnloadException">
            <summary>
            NUnitEngineUnloadException is thrown when a test run has completed successfully
            but one or more errors were encountered when attempting to unload
            and shut down the test run cleanly.
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.String)">
            <summary>
            Construct with a message
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.String,System.Exception)">
            <summary>
            Construct with a message and inner exception
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.Collections.Generic.ICollection{System.Exception})">
            <summary>
            Construct with a message and a collection of exceptions.
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Serialization constructor.
            </summary>
        </member>
        <member name="P:NUnit.Engine.NUnitEngineUnloadException.AggregatedExceptions">
            <summary>
            Gets the collection of exceptions .
            </summary>
        </member>
        <member name="T:NUnit.Engine.Extensibility.ExtensionAttribute">
            <summary>
            The ExtensionAttribute is used to identify a class that is intended
            to serve as an extension.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.ExtensionAttribute.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:NUnit.Engine.Extensibility.ExtensionAttribute"/> class.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.Path">
            <summary>
            A unique string identifying the ExtensionPoint for which this Extension is 
            intended. This is an optional field provided NUnit is able to deduce the
            ExtensionPoint from the Type of the extension class.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.Description">
            <summary>
            An optional description of what the extension does.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.Enabled">
            <summary>
            Flag indicating whether the extension is enabled.
            </summary>
            <value><c>true</c> if enabled; otherwise, <c>false</c>.</value>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.EngineVersion">
            <summary>
            The minimum Engine version for which this extension is designed
            </summary>
        </member>
        <member name="T:NUnit.Engine.Extensibility.ExtensionPointAttribute">
            <summary>
            ExtensionPointAttribute is used at the assembly level to identify and
            document any ExtensionPoints supported by the assembly.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.ExtensionPointAttribute.#ctor(System.String,System.Type)">
            <summary>
            Construct an ExtensionPointAttribute
            </summary>
            <param name="path">A unique string identifying the extension point.</param>
            <param name="type">The required Type of any extension that is installed at this extension point.</param>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionPointAttribute.Path">
            <summary>
            The unique string identifying this ExtensionPoint. This identifier
            is typically formatted as a path using '/' and the set of extension 
            points is sometimes viewed as forming a tree.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionPointAttribute.Type">
            <summary>
            The required Type (usually an interface) of any extension that is 
            installed at this ExtensionPoint.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionPointAttribute.Description">
            <summary>
            An optional description of the purpose of the ExtensionPoint
            </summary>
        </member>
        <member name="T:NUnit.Engine.Extensibility.ExtensionPropertyAttribute">
            <summary>
            The ExtensionPropertyAttribute is used to specify named properties for an extension.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.ExtensionPropertyAttribute.#ctor(System.String,System.String)">
            <summary>
            Construct an ExtensionPropertyAttribute
            </summary>
            <param name="name">The name of the property</param>
            <param name="value">The property value</param>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionPropertyAttribute.Name">
            <summary>
            The name of the property.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionPropertyAttribute.Value">
            <summary>
            The property value
            </summary>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IDriverFactory">
            <summary>
            Interface implemented by a Type that knows how to create a driver for a test assembly.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IDriverFactory.IsSupportedTestFramework(System.Reflection.AssemblyName)">
            <summary>
            Gets a flag indicating whether a given AssemblyName
            represents a test framework supported by this factory.
            </summary>
            <param name="reference">An AssemblyName referring to the possible test framework.</param>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IDriverFactory.GetDriver(System.Reflection.AssemblyName)">
            <summary>
            Gets a driver for a given test assembly and a framework
            which the assembly is already known to reference.
            </summary>
            <param name="reference">An AssemblyName referring to the test framework.</param>
            <returns></returns>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IExtensionNode">
            <summary>
            The IExtensionNode interface is implemented by a class that represents a
            single extension being installed on a particular extension point.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.TypeName">
            <summary>
            Gets the full name of the Type of the extension object.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.Enabled">
            <summary>
            Gets a value indicating whether this <see cref="T:NUnit.Engine.Extensibility.IExtensionNode"/> is enabled.
            </summary>
            <value><c>true</c> if enabled; otherwise, <c>false</c>.</value>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.Path">
            <summary>
            Gets the unique string identifying the ExtensionPoint for which
            this Extension is intended. This identifier may be supplied by the attribute
            marking the extension or deduced by NUnit from the Type of the extension class.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.Description">
            <summary>
            Gets an optional description of what the extension does.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.TargetFramework">
            <summary>
            The TargetFramework of the extension assembly.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.PropertyNames">
            <summary>
            Gets a collection of the names of all this extension's properties
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IExtensionNode.GetValues(System.String)">
            <summary>
            Gets a collection of the values of a particular named property
            If none are present, returns an empty enumerator.
            </summary>
            <param name="name">The property name</param>
            <returns>A collection of values</returns>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.AssemblyPath">
            <summary>
            The path to the assembly implementing this extension.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.AssemblyVersion">
            <summary>
            The version of the assembly implementing this extension.
            </summary>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IExtensionPoint">
            <summary>
            An ExtensionPoint represents a single point in the TestEngine
            that may be extended by user addins and extensions.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionPoint.Path">
            <summary>
            Gets the unique path identifying this extension point.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionPoint.Description">
            <summary>
            Gets the description of this extension point. May be null.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionPoint.TypeName">
            <summary>
            Gets the FullName of the Type required for any extension to be installed at this extension point.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionPoint.Extensions">
            <summary>
            Gets an enumeration of IExtensionNodes for extensions installed on this extension point.
            </summary>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IFrameworkDriver">
            <summary>
            The IFrameworkDriver interface is implemented by a class that
            is able to use an external framework to explore or run tests
            under the engine.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IFrameworkDriver.ID">
            <summary>
            Gets and sets the unique identifier for this driver,
            used to ensure that test ids are unique across drivers.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.Load(System.String,System.Collections.Generic.IDictionary{System.String,System.Object})">
            <summary>
            Loads the tests in an assembly.
            </summary>
            <returns>An Xml string representing the loaded test</returns>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.CountTestCases(System.String)">
            <summary>
            Count the test cases that would be executed.
            </summary>
            <param name="filter">An XML string representing the TestFilter to use in counting the tests</param>
            <returns>The number of test cases counted</returns>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.Run(NUnit.Engine.ITestEventListener,System.String)">
            <summary>
            Executes the tests in an assembly.
            </summary>
            <param name="listener">An ITestEventHandler that receives progress notices</param>
            <param name="filter">A XML string representing the filter that controls which tests are executed</param>
            <returns>An Xml string representing the result</returns>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.Explore(System.String)">
            <summary>
            Returns information about the tests in an assembly.
            </summary>
            <param name="filter">An XML string representing the filter that controls which tests are included</param>
            <returns>An Xml string representing the tests</returns>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.StopRun(System.Boolean)">
            <summary>
            Cancel the ongoing test run. If no  test is running, the call is ignored.
            </summary>
            <param name="force">If true, cancel any ongoing test threads, otherwise wait for them to complete.</param>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IProject">
            <summary>
            Interface for the various project types that the engine can load.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IProject.ProjectPath">
            <summary>
            Gets the path to the file storing this project, if any.
            If the project has not been saved, this is null.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IProject.ActiveConfigName">
            <summary>
            Gets the active configuration, as defined
            by the particular project.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IProject.ConfigNames">
            <summary>
            Gets a list of the configs for this project
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IProject.GetTestPackage">
            <summary>
            Gets a test package for the primary or active
            configuration within the project. The package 
            includes all the assemblies and any settings
            specified in the project format.
            </summary>
            <returns>A TestPackage</returns>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IProject.GetTestPackage(System.String)">
            <summary>
            Gets a TestPackage for a specific configuration
            within the project. The package includes all the
            assemblies and any settings specified in the 
            project format.
            </summary>
            <param name="configName">The name of the config to use</param>
            <returns>A TestPackage for the named configuration.</returns>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IProjectLoader">
            <summary>
            The IProjectLoader interface is implemented by any class
            that knows how to load projects in a specific format.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IProjectLoader.CanLoadFrom(System.String)">
            <summary>
            Returns true if the file indicated is one that this
            loader knows how to load.
            </summary>
            <param name="path">The path of the project file</param>
            <returns>True if the loader knows how to load this file, otherwise false</returns>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IProjectLoader.LoadFrom(System.String)">
            <summary>
            Loads a project of a known format.
            </summary>
            <param name="path">The path of the project file</param>
            <returns>An IProject interface to the loaded project or null if the project cannot be loaded</returns>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IResultWriter">
            <summary>
            Common interface for objects that process and write out test results
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IResultWriter.CheckWritability(System.String)">
            <summary>
            Checks if the output path is writable. If the output is not
            writable, this method should throw an exception.
            </summary>
            <param name="outputPath"></param>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IResultWriter.WriteResultFile(System.Xml.XmlNode,System.String)">
            <summary>
            Writes result to the specified output path.
            </summary>
            <param name="resultNode">XmlNode for the result</param>
            <param name="outputPath">Path to which it should be written</param>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IResultWriter.WriteResultFile(System.Xml.XmlNode,System.IO.TextWriter)">
            <summary>
            Writes result to a TextWriter.
            </summary>
            <param name="resultNode">XmlNode for the result</param>
            <param name="writer">TextWriter to which it should be written</param>
        </member>
        <member name="T:NUnit.Engine.Extensibility.TypeExtensionPointAttribute">
            <summary>
            TypeExtensionPointAttribute is used to bind an extension point
            to a class or interface.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.#ctor(System.String)">
            <summary>
            Construct a TypeExtensionPointAttribute, specifying the path.
            </summary>
            <param name="path">A unique string identifying the extension point.</param>
        </member>
        <member name="M:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.#ctor">
            <summary>
            Construct an TypeExtensionPointAttribute, without specifying the path.
            The extension point will use a path constructed based on the interface
            or class to which the attribute is applied.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.Path">
            <summary>
            The unique string identifying this ExtensionPoint. This identifier
            is typically formatted as a path using '/' and the set of extension 
            points is sometimes viewed as forming a tree.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.Description">
            <summary>
            An optional description of the purpose of the ExtensionPoint
            </summary>
        </member>
        <member name="T:NUnit.Engine.IAvailableRuntimes">
            <summary>
            Interface that returns a list of available runtime frameworks.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IAvailableRuntimes.AvailableRuntimes">
            <summary>
            Gets a list of available runtime frameworks.
            </summary>
        </member>
        <member name="T:NUnit.Engine.IExtensionService">
            <summary>
            The IExtensionService interface allows a runner to manage extensions.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IExtensionService.ExtensionPoints">
            <summary>
            Gets an enumeration of all ExtensionPoints in the engine.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IExtensionService.Extensions">
            <summary>
            Gets an enumeration of all installed Extensions.
            </summary>
        </member>
        <member name="M:NUnit.Engine.IExtensionService.GetExtensionPoint(System.String)">
            <summary>
            Get an ExtensionPoint based on its unique identifying path.
            </summary>
        </member>
        <member name="M:NUnit.Engine.IExtensionService.GetExtensionNodes(System.String)">
            <summary>
            Get an enumeration of ExtensionNodes based on their identifying path.
            </summary>
        </member>
        <member name="M:NUnit.Engine.IExtensionService.EnableExtension(System.String,System.Boolean)">
            <summary>
            Enable or disable an extension
            </summary>
            <param name="typeName"></param>
            <param name="enabled"></param>
        </member>
        <member name="T:NUnit.Engine.ILogger">
            <summary>
            Interface for logging within the engine
            </summary>
        </member>
        <member name="M:NUnit.Engine.ILogger.Error(System.String)">
            <summary>
            Logs the specified message at the error level.
            </summary>
            <param name="message">The message.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Error(System.String,System.Object[])">
            <summary>
            Logs the specified message at the error level.
            </summary>
            <param name="format">The message.</param>
            <param name="args">The arguments.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Warning(System.String)">
            <summary>
            Logs the specified message at the warning level.
            </summary>
            <param name="message">The message.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Warning(System.String,System.Object[])">
            <summary>
            Logs the specified message at the warning level.
            </summary>
            <param name="format">The message.</param>
            <param name="args">The arguments.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Info(System.String)">
            <summary>
            Logs the specified message at the info level.
            </summary>
            <param name="message">The message.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Info(System.String,System.Object[])">
            <summary>
            Logs the specified message at the info level.
            </summary>
            <param name="format">The message.</param>
            <param name="args">The arguments.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Debug(System.String)">
            <summary>
            Logs the specified message at the debug level.
            </summary>
            <param name="message">The message.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Debug(System.String,System.Object[])">
            <summary>
            Logs the specified message at the debug level.
            </summary>
            <param name="format">The message.</param>
            <param name="args">The arguments.</param>
        </member>
        <member name="T:NUnit.Engine.ILogging">
            <summary>
            Interface to abstract getting loggers
            </summary>
        </member>
        <member name="M:NUnit.Engine.ILogging.GetLogger(System.String)">
            <summary>
            Gets the logger.
            </summary>
            <param name="name">The name of the logger to get.</param>
            <returns></returns>
        </member>
        <member name="T:NUnit.Engine.InternalTraceLevel">
            <summary>
            InternalTraceLevel is an enumeration controlling the
            level of detailed presented in the internal log.
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Default">
            <summary>
            Use the default settings as specified by the user.
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Off">
            <summary>
            Do not display any trace messages
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Error">
            <summary>
            Display Error messages only
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Warning">
            <summary>
            Display Warning level and higher messages
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Info">
            <summary>
            Display informational and higher messages
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Debug">
            <summary>
            Display debug messages and higher - i.e. all messages
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Verbose">
            <summary>
            Display debug messages and higher - i.e. all messages
            </summary>
        </member>
        <member name="T:NUnit.Engine.IRecentFiles">
            <summary>
            The IRecentFiles interface is used to isolate the app
            from various implementations of recent files.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRecentFiles.MaxFiles">
            <summary>
            The max number of files saved
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRecentFiles.Entries">
            <summary>
            Get a list of all the file entries
            </summary>
            <returns>The most recent file list</returns>
        </member>
        <member name="M:NUnit.Engine.IRecentFiles.SetMostRecent(System.String)">
            <summary>
            Set the most recent file name, reordering
            the saved names as needed and removing the oldest
            if the max number of files would be exceeded.
            The current CLR version is used to create the entry.
            </summary>
        </member>
        <member name="M:NUnit.Engine.IRecentFiles.Remove(System.String)">
            <summary>
            Remove a file from the list
            </summary>
            <param name="fileName">The name of the file to remove</param>
        </member>
        <member name="T:NUnit.Engine.IResultService">
            <summary>
            IResultWriterService provides result writers for a specified
            well-known format.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IResultService.Formats">
            <summary>
            Gets an array of the available formats
            </summary>
        </member>
        <member name="M:NUnit.Engine.IResultService.GetResultWriter(System.String,System.Object[])">
            <summary>
            Gets a ResultWriter for a given format and set of arguments.
            </summary>
            <param name="format">The name of the format to be used</param>
            <param name="args">A set of arguments to be used in constructing the writer or null if non arguments are needed</param>
            <returns>An IResultWriter</returns>
        </member>
        <member name="T:NUnit.Engine.IRuntimeFramework">
            <summary>
            Interface implemented by objects representing a runtime framework.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRuntimeFramework.Id">
            <summary>
            Gets the inique Id for this runtime, such as "net-4.5"
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRuntimeFramework.DisplayName">
            <summary>
            Gets the display name of the framework, such as ".NET 4.5"
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRuntimeFramework.FrameworkVersion">
            <summary>
            Gets the framework version: usually contains two components, Major
            and Minor, which match the corresponding CLR components, but not always.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRuntimeFramework.ClrVersion">
            <summary>
            Gets the Version of the CLR for this framework
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRuntimeFramework.Profile">
            <summary>
            Gets a string representing the particular profile installed,
            or null if there is no profile. Currently. the only defined 
            values are Full and Client.
            </summary>
        </member>
        <member name="T:NUnit.Engine.IRuntimeFrameworkService">
            <summary>
            Implemented by a type that provides information about the
            current and other available runtimes.
            </summary>
        </member>
        <member name="M:NUnit.Engine.IRuntimeFrameworkService.IsAvailable(System.String)">
            <summary>
            Returns true if the runtime framework represented by
            the string passed as an argument is available.
            </summary>
            <param name="framework">A string representing a framework, like 'net-4.0'</param>
            <returns>True if the framework is available, false if unavailable or nonexistent</returns>
        </member>
        <member name="M:NUnit.Engine.IRuntimeFrameworkService.SelectRuntimeFramework(NUnit.Engine.TestPackage)">
             <summary>
             Selects a target runtime framework for a TestPackage based on
             the settings in the package and the assemblies themselves.
             The package RuntimeFramework setting may be updated as a 
             result and the selected runtime is returned.
            
             Note that if a package has subpackages, the subpackages may run on a different
             framework to the top-level package. In future, this method should
             probably not return a simple string, and instead require runners
             to inspect the test package structure, to find all desired frameworks.
             </summary>
             <param name="package">A TestPackage</param>
             <returns>The selected RuntimeFramework</returns>
        </member>
        <member name="T:NUnit.Engine.ServiceStatus">
            <summary>
            Enumeration representing the status of a service
            </summary>
        </member>
        <member name="F:NUnit.Engine.ServiceStatus.Stopped">
            <summary>Service was never started or has been stopped</summary>
        </member>
        <member name="F:NUnit.Engine.ServiceStatus.Started">
            <summary>Started successfully</summary>
        </member>
        <member name="F:NUnit.Engine.ServiceStatus.Error">
            <summary>Service failed to start and is unavailable</summary>
        </member>
        <member name="T:NUnit.Engine.IService">
            <summary>
            The IService interface is implemented by all Services. Although it
            is extensible, it does not reside in the Extensibility namespace
            because it is so widely used by the engine.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IService.ServiceContext">
            <summary>
            The ServiceContext
            </summary>
        </member>
        <member name="P:NUnit.Engine.IService.Status">
            <summary>
            Gets the ServiceStatus of this service
            </summary>
        </member>
        <member name="M:NUnit.Engine.IService.StartService">
            <summary>
            Initialize the Service
            </summary>
        </member>
        <member name="M:NUnit.Engine.IService.StopService">
            <summary>
            Do any cleanup needed before terminating the service
            </summary>
        </member>
        <member name="T:NUnit.Engine.IServiceLocator">
            <summary>
            IServiceLocator allows clients to locate any NUnit services
            for which the interface is referenced. In normal use, this
            linits it to those services using interfaces defined in the 
            nunit.engine.api assembly.
            </summary>
        </member>
        <member name="M:NUnit.Engine.IServiceLocator.GetService``1">
            <summary>
            Return a specified type of service
            </summary>
        </member>
        <member name="M:NUnit.Engine.IServiceLocator.GetService(System.Type)">
            <summary>
            Return a specified type of service
            </summary>
        </member>
        <member name="T:NUnit.Engine.SettingsEventHandler">
            <summary>
            Event handler for settings changes
            </summary>
            <param name="sender">The sender.</param>
            <param name="args">The <see cref="T:NUnit.Engine.SettingsEventArgs"/> instance containing the event data.</param>
        </member>
        <member name="T:NUnit.Engine.SettingsEventArgs">
            <summary>
            Event argument for settings changes
            </summary>
        </member>
        <member name="M:NUnit.Engine.SettingsEventArgs.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:NUnit.Engine.SettingsEventArgs"/> class.
            </summary>
            <param name="settingName">Name of the setting that has changed.</param>
        </member>
        <member name="P:NUnit.Engine.SettingsEventArgs.SettingName">
            <summary>
            Gets the name of the setting that has changed
            </summary>
        </member>
        <member name="T:NUnit.Engine.ISettings">
            <summary>
            The ISettings interface is used to access all user
            settings and options.
            </summary>
        </member>
        <member name="E:NUnit.Engine.ISettings.Changed">
            <summary>
            Occurs when the settings are changed.
            </summary>
        </member>
        <member name="M:NUnit.Engine.ISettings.GetSetting(System.String)">
            <summary>
            Load a setting from the storage.
            </summary>
            <param name="settingName">Name of the setting to load</param>
            <returns>Value of the setting or null</returns>
        </member>
        <member name="M:NUnit.Engine.ISettings.GetSetting``1(System.String,``0)">
            <summary>
            Load a setting from the storage or return a default value
            </summary>
            <param name="settingName">Name of the setting to load</param>
            <param name="defaultValue">Value to return if the setting is missing</param>
            <returns>Value of the setting or the default value</returns>
        </member>
        <member name="M:NUnit.Engine.ISettings.RemoveSetting(System.String)">
            <summary>
            Remove a setting from the storage
            </summary>
            <param name="settingName">Name of the setting to remove</param>
        </member>
        <member name="M:NUnit.Engine.ISettings.RemoveGroup(System.String)">
            <summary>
            Remove an entire group of settings from the storage
            </summary>
            <param name="groupName">Name of the group to remove</param>
        </member>
        <member name="M:NUnit.Engine.ISettings.SaveSetting(System.String,System.Object)">
            <summary>
            Save a setting in the storage
            </summary>
            <param name="settingName">Name of the setting to save</param>
            <param name="settingValue">Value to be saved</param>
        </member>
        <member name="T:NUnit.Engine.ITestEngine">
            <summary>
            ITestEngine represents an instance of the test engine.
            Clients wanting to discover, explore or run tests start
            require an instance of the engine, which is generally
            acquired from the TestEngineActivator class.
            </summary>
        </member>
        <member name="P:NUnit.Engine.ITestEngine.Services">
            <summary>
            Gets the IServiceLocator interface, which gives access to
            certain services provided by the engine.
            </summary>
        </member>
        <member name="P:NUnit.Engine.ITestEngine.WorkDirectory">
            <summary>
            Gets and sets the directory path used by the engine for saving files.
            Some services may ignore changes to this path made after initialization.
            The default value is the current directory.
            </summary>
        </member>
        <member name="P:NUnit.Engine.ITestEngine.InternalTraceLevel">
            <summary>
            Gets and sets the InternalTraceLevel used by the engine. Changing this
            setting after initialization will have no effect. The default value
            is the value saved in the NUnit settings.
            </summary>
        </member>
        <member name="M:NUnit.Engine.ITestEngine.Initialize">
             <summary>
             Initialize the engine. This includes initializing mono addins,
             setting the trace level and creating the standard set of services
             used in the Engine.
            
             This interface is not normally called by user code. Programs linking
             only to the nunit.engine.api assembly are given a
             pre-initialized instance of TestEngine. Programs
             that link directly to nunit.engine usually do so
             in order to perform custom initialization.
             </summary>
        </member>
        <member name="M:NUnit.Engine.ITestEngine.GetRunner(NUnit.Engine.TestPackage)">
            <summary>
            Returns a test runner instance for use by clients in discovering,
            exploring and executing tests.
            </summary>
            <param name="package">The TestPackage for which the runner is intended.</param>
            <returns>An ITestRunner.</returns>
        </member>
        <member name="T:NUnit.Engine.ITestEventListener">
            <summary>
            The ITestListener interface is used to receive notices of significant
            events while a test is running. Its single method accepts an Xml string,
            which may represent any event generated by the test framework, the driver
            or any of the runners internal to the engine. Use of Xml means that
            any driver and framework may add additional events and the engine will
            simply pass them on through this interface.
            </summary>
        </member>
        <member name="M:NUnit.Engine.ITestEventListener.OnTestEvent(System.String)">
            <summary>
            Handle a progress report or other event.
            </summary>
            <param name="report">An XML progress report.</param>
        </member>
        <member name="T:NUnit.Engine.ITestFilterBuilder">
            <summary>
            Interface to a TestFilterBuilder, which is used to create TestFilters
            </summary>
        </member>
        <member name="M:NUnit.Engine.ITestFilterBuilder.AddTest(System.String)">
            <summary>
            Add a test to be selected
            </summary>
            <param name="fullName">The full name of the test, as created by NUnit</param>
        </member>
        <member name="M:NUnit.Engine.ITestFilterBuilder.SelectWhere(System.String)">
            <summary>
            Specify what is to be included by the filter using a where clause.
            </summary>
            <param name="whereClause">A where clause that will be parsed by NUnit to create the filter.</param>
        </member>
        <member name="M:NUnit.Engine.ITestFilterBuilder.GetFilter">
            <summary>
            Get a TestFilter constructed according to the criteria specified by the other calls.
            </summary>
            <returns>A TestFilter.</returns>
        </member>
        <member name="T:NUnit.Engine.ITestFilterService">
            <summary>
            The TestFilterService provides builders that can create TestFilters
            </summary>
        </member>
        <member name="M:NUnit.Engine.ITestFilterService.GetTestFilterBuilder">
            <summary>
            Get an uninitialized TestFilterBuilder
            </summary>
        </member>
        <member name="T:NUnit.Engine.ITestRun">
            <summary>
            The ITestRun class represents an ongoing test run.
            </summary>
        </member>
        <member name="P:NUnit.Engine.ITestRun.Result">
            <summary>
            Get the result of the test.
            </summary>
            <returns>An XmlNode representing the test run result</returns>
        </member>
        <member name="M:NUnit.Engine.ITestRun.Wait(System.Int32)">
            <summary>
            Blocks the current thread until the current test run completes
            or the timeout is reached
            </summary>
            <param name="timeout">A <see cref="T:System.Int32"/> that represents the number of milliseconds to wait or -1 milliseconds to wait indefinitely. </param>
            <returns>True if the run completed</returns>
        </member>
        <member name="T:NUnit.Engine.ITestRunner">
            <summary>
            Interface implemented by all test runners.
            </summary>
        </member>
        <member name="P:NUnit.Engine.ITestRunner.IsTestRunning">
            <summary>
            Get a flag indicating whether a test is running
            </summary>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.Load">
            <summary>
            Load a TestPackage for possible execution
            </summary>
            <returns>An XmlNode representing the loaded package.</returns>
            <remarks>
            This method is normally optional, since Explore and Run call
            it automatically when necessary. The method is kept in order
            to make it easier to convert older programs that use it.
            </remarks>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.Unload">
            <summary>
            Unload any loaded TestPackage. If none is loaded,
            the call is ignored.
            </summary>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.Reload">
            <summary>
            Reload the current TestPackage
            </summary>
            <returns>An XmlNode representing the loaded package.</returns>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.CountTestCases(NUnit.Engine.TestFilter)">
            <summary>
            Count the test cases that would be run under
            the specified filter.
            </summary>
            <param name="filter">A TestFilter</param>
            <returns>The count of test cases</returns>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.Run(NUnit.Engine.ITestEventListener,NUnit.Engine.TestFilter)">
            <summary>
            Run the tests in the loaded TestPackage and return a test result. The tests
            are run synchronously and the listener interface is notified as it progresses.
            </summary>
            <param name="listener">The listener that is notified as the run progresses</param>
            <param name="filter">A TestFilter used to select tests</param>
            <returns>An XmlNode giving the result of the test execution</returns>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.RunAsync(NUnit.Engine.ITestEventListener,NUnit.Engine.TestFilter)">
            <summary>
            Start a run of the tests in the loaded TestPackage. The tests are run
            asynchronously and the listener interface is notified as it progresses.
            </summary>
            <param name="listener">The listener that is notified as the run progresses</param>
            <param name="filter">A TestFilter used to select tests</param>
            <returns></returns>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.StopRun(System.Boolean)">
            <summary>
            Cancel the ongoing test run. If no  test is running, the call is ignored.
            </summary>
            <param name="force">If true, cancel any ongoing test threads, otherwise wait for them to complete.</param>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.Explore(NUnit.Engine.TestFilter)">
            <summary>
            Explore a loaded TestPackage and return information about the tests found.
            </summary>
            <param name="filter">The TestFilter to be used in selecting tests to explore.</param>
            <returns>An XmlNode representing the tests found.</returns>
        </member>
        <member name="T:NUnit.Engine.TestEngineActivator">
            <summary>
            TestEngineActivator creates an instance of the test engine and returns an ITestEngine interface.
            </summary>
        </member>
        <member name="M:NUnit.Engine.TestEngineActivator.CreateInstance">
            <summary>
            Create an instance of the test engine.
            </summary>
            <returns>An <see cref="T:NUnit.Engine.ITestEngine"/></returns>
        </member>
        <member name="T:NUnit.Engine.TestFilter">
            <summary>
            Abstract base for all test filters. A filter is represented
            by an XmlNode with &lt;filter&gt; as its topmost element.
            In the console runner, filters serve only to carry this
            XML representation, as all filtering is done by the engine.
            </summary>
        </member>
        <member name="M:NUnit.Engine.TestFilter.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:NUnit.Engine.TestFilter"/> class.
            </summary>
            <param name="xmlText">The XML text that specifies the filter.</param>
        </member>
        <member name="F:NUnit.Engine.TestFilter.Empty">
            <summary>
            The empty filter - one that always passes.
            </summary>
        </member>
        <member name="P:NUnit.Engine.TestFilter.Text">
            <summary>
            Gets the XML representation of this filter as a string.
            </summary>
        </member>
        <member name="T:NUnit.Engine.TestPackage">
            <summary>
            TestPackage holds information about a set of test files to
            be loaded by a TestRunner. Each TestPackage represents
            tests for one or more test files. TestPackages may be named
            or anonymous, depending on the constructor used.
            
            Upon construction, a package is given an ID (string), which
            remains unchanged for the lifetime of the TestPackage instance.
            The package ID is passed to the test framework for use in generating
            test IDs.
            
            A runner that reloads test assemblies and wants the ids to remain stable
            should avoid creating a new package but should instead use the original
            package, changing settings as needed. This gives the best chance for the
            tests in the reloaded assembly to match those originally loaded.
            </summary>
        </member>
        <member name="M:NUnit.Engine.TestPackage.#ctor(System.String)">
            <summary>
            Construct a named TestPackage, specifying a file path for
            the assembly or project to be used.
            </summary>
            <param name="filePath">The file path.</param>
        </member>
        <member name="M:NUnit.Engine.TestPackage.#ctor(System.Collections.Generic.IList{System.String})">
            <summary>
            Construct an anonymous TestPackage that wraps test files.
            </summary>
            <param name="testFiles"></param>
        </member>
        <member name="P:NUnit.Engine.TestPackage.ID">
            <summary>
            Every test package gets a unique ID used to prefix test IDs within that package.
            </summary>
            <remarks>
            The generated ID is only unique for packages created within the same application domain.
            For that reason, NUnit pre-creates all test packages that will be needed.
            </remarks>
        </member>
        <member name="P:NUnit.Engine.TestPackage.Name">
            <summary>
            Gets the name of the package
            </summary>
        </member>
        <member name="P:NUnit.Engine.TestPackage.FullName">
            <summary>
            Gets the path to the file containing tests. It may be
            an assembly or a recognized project type.
            </summary>
        </member>
        <member name="P:NUnit.Engine.TestPackage.SubPackages">
            <summary>
            Gets the list of SubPackages contained in this package
            </summary>
        </member>
        <member name="P:NUnit.Engine.TestPackage.Settings">
            <summary>
            Gets the settings dictionary for this package.
            </summary>
        </member>
        <member name="M:NUnit.Engine.TestPackage.AddSubPackage(NUnit.Engine.TestPackage)">
            <summary>
            Add a subproject to the package.
            </summary>
            <param name="subPackage">The subpackage to be added</param>
        </member>
        <member name="M:NUnit.Engine.TestPackage.AddSetting(System.String,System.Object)">
            <summary>
            Add a setting to a package and all of its subpackages.
            </summary>
            <param name="name">The name of the setting</param>
            <param name="value">The value of the setting</param>
            <remarks>
            Once a package is created, subpackages may have been created
            as well. If you add a setting directly to the Settings dictionary
            of the package, the subpackages are not updated. This method is
            used when the settings are intended to be reflected to all the
            subpackages under the package.
            </remarks>
        </member>
        <member name="M:NUnit.Engine.TestPackage.GetSetting``1(System.String,``0)">
            <summary>
            Return the value of a setting or a default.
            </summary>
            <param name="name">The name of the setting</param>
            <param name="defaultSetting">The default value</param>
            <returns></returns>
        </member>
        <member name="T:NUnit.Engine.TestSelectionParserException">
            <summary>
            TestSelectionParserException is thrown when an error
            is found while parsing the selection expression.
            </summary>
        </member>
        <member name="M:NUnit.Engine.TestSelectionParserException.#ctor(System.String)">
            <summary>
            Construct with a message
            </summary>
        </member>
        <member name="M:NUnit.Engine.TestSelectionParserException.#ctor(System.String,System.Exception)">
            <summary>
            Construct with a message and inner exception
            </summary>
            <param name="message"></param>
            <param name="innerException"></param>
        </member>
        <member name="M:NUnit.Engine.TestSelectionParserException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Serialization constructor
            </summary>
        </member>
    </members>
</doc>
tools\agents\net6.0\nunit.engine.core.dll
md5: ECCC543E0E378618E0741F9DB70272C0 | sha1: D4B8A50281BE4E6780B653DC76DDFCA2A35E3DC9 | sha256: 06753C45CEB2DEC57631B900934541BF0F98A57CD38FDC8D2B7A4500EA19F9BF | sha512: 61602481D3DC3B863F7E069F7FBE33C92282710E11AE2FC09E55C3944CA12932D33B20A2ED4E6B2DBDDC8FE4E7B4246821F4FE19339A0E7858F09B9638F65F55
tools\agents\net6.0\testcentric.engine.metadata.dll
tools\agents\net6.0\nunit.agent.addins
 
tools\agents\net7.0\nunit-agent.dll
md5: D320ECC03FC2B813E284F0846CF21931 | sha1: C439AAB21776419664978D66FA9A81614CA7DF3C | sha256: D5073D2CF8CE4ED4EDA5307C4EC948C69409692AC60257CED6870CDFAE2906BD | sha512: ED8BA035418E8AE23DE47F8574F532A365FDBCEE9B06FE5F7F10547E6142A927FE74327DF232DCEA1E44DC55E6D8769E211AFFEDA1534C35A30BE79A650F42BF
tools\agents\net7.0\nunit-agent.dll.config
<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <!--
   Nunit-agent only runs under .NET 2.0 or higher. 
   The setting    useLegacyV2RuntimeActivationPolicy only applies 
   under .NET 4.0 and permits use of mixed mode assemblies, 
   which would otherwise not load correctly. 
  -->
  <startup useLegacyV2RuntimeActivationPolicy="true">
    <!--
     Nunit-agent is normally run by the console or gui
     runners and not independently. In normal usage, 
     the runner specifies which runtime should be used.
     
     Do NOT add any supportedRuntime elements here, 
     since they may prevent the runner from controlling 
     the runtime that is used!
    -->
  </startup>

  <runtime>
    <!-- Ensure that test exceptions don't crash NUnit -->
    <legacyUnhandledExceptionPolicy enabled="1" />

    <!--
     Since legacyUnhandledExceptionPolicy keeps the console from being killed even though an NUnit framework
     test worker thread is killed, this is needed to prevent a hang. NUnit framework can only handle these
     exceptions when this config element is present. (Or if future versions of NUnit framework drop support
     for partial trust which would enable it to use [HandleProcessCorruptedStateExceptions].)
    -->
    <legacyCorruptedStateExceptionsPolicy enabled="true" />

    <!-- Run partial trust V2 assemblies in full trust under .NET 4.0 -->
    <loadFromRemoteSources enabled="true" />

    <!-- Enable reading source information from Portable and Embedded PDBs when running applications -->
    <!-- built against previous .NET Framework versions on .NET Framework 4.7.2 -->
    <AppContextSwitchOverrides value="Switch.System.Diagnostics.IgnorePortablePDBsInStackTraces=false" />
  </runtime>
  
</configuration>
tools\agents\net7.0\nunit-agent.deps.json
{
  "runtimeTarget": {
    "name": ".NETCoreApp,Version=v7.0",
    "signature": ""
  },
  "compilationOptions": {},
  "targets": {
    ".NETCoreApp,Version=v7.0": {
      "nunit-agent/3.17.0": {
        "dependencies": {
          "nunit.engine.api": "3.17.0",
          "nunit.engine.core": "3.17.0"
        },
        "runtime": {
          "nunit-agent.dll": {}
        }
      },
      "TestCentric.Metadata/2.0.0": {
        "runtime": {
          "lib/netstandard2.0/testcentric.engine.metadata.dll": {
            "assemblyVersion": "2.0.0.0",
            "fileVersion": "2.0.0.0"
          }
        }
      },
      "nunit.engine.api/3.17.0": {
        "runtime": {
          "nunit.engine.api.dll": {}
        }
      },
      "nunit.engine.core/3.17.0": {
        "dependencies": {
          "TestCentric.Metadata": "2.0.0",
          "nunit.engine.api": "3.17.0"
        },
        "runtime": {
          "nunit.engine.core.dll": {}
        }
      }
    }
  },
  "libraries": {
    "nunit-agent/3.17.0": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "TestCentric.Metadata/2.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-uxQYLwa3uX33zm2K9OA75C6uxA2ztOf5cKR2M5sqQxiMxw95IA1gRaKkzUnhu51ez/rJEHqmpmCsccCf+t8dLg==",
      "path": "testcentric.metadata/2.0.0",
      "hashPath": "testcentric.metadata.2.0.0.nupkg.sha512"
    },
    "nunit.engine.api/3.17.0": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "nunit.engine.core/3.17.0": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    }
  }
}
tools\agents\net7.0\nunit-agent.runtimeconfig.json
{
  "runtimeOptions": {
    "tfm": "net7.0",
    "framework": {
      "name": "Microsoft.NETCore.App",
      "version": "7.0.0"
    },
    "configProperties": {
      "System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
      "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": true
    }
  }
}
tools\agents\net7.0\nunit.engine.api.dll
md5: A07C580B5BAC29B68400FC0C6413133D | sha1: EA2ECDA9284B986F0FFCA390BD565236823199C6 | sha256: A8D1BA429B42578D9E1B14BF27516C821CAD9AE1CA9F8A2FC7011163E2BD34BC | sha512: 5681CA7AD1EAA71D7686EF9A7C4E26CE7862B85D802A4BF357CF0324D53420E19DA674B0FD47CCD8643A4998B4BE1D454018BA185FD7AB37CC37B2E3F6E45B07
tools\agents\net7.0\nunit.engine.api.xml
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>nunit.engine.api</name>
    </assembly>
    <members>
        <member name="T:NUnit.Engine.NUnitEngineException">
            <summary>
            NUnitEngineException is thrown when the engine has been
            called with improper values or when a particular facility
            is not available.
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineException.#ctor(System.String)">
            <summary>
            Construct with a message
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineException.#ctor(System.String,System.Exception)">
            <summary>
            Construct with a message and inner exception
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Serialization constructor
            </summary>
        </member>
        <member name="T:NUnit.Engine.NUnitEngineNotFoundException">
            <summary>
            The exception that is thrown if a valid test engine is not found
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineNotFoundException.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:NUnit.Engine.NUnitEngineNotFoundException"/> class.
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineNotFoundException.#ctor(System.Version)">
            <summary>
            Initializes a new instance of the <see cref="T:NUnit.Engine.NUnitEngineNotFoundException"/> class.
            </summary>
            <param name="minVersion">The minimum version.</param>
        </member>
        <member name="T:NUnit.Engine.NUnitEngineUnloadException">
            <summary>
            NUnitEngineUnloadException is thrown when a test run has completed successfully
            but one or more errors were encountered when attempting to unload
            and shut down the test run cleanly.
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.String)">
            <summary>
            Construct with a message
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.String,System.Exception)">
            <summary>
            Construct with a message and inner exception
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.Collections.Generic.ICollection{System.Exception})">
            <summary>
            Construct with a message and a collection of exceptions.
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Serialization constructor.
            </summary>
        </member>
        <member name="P:NUnit.Engine.NUnitEngineUnloadException.AggregatedExceptions">
            <summary>
            Gets the collection of exceptions .
            </summary>
        </member>
        <member name="T:NUnit.Engine.Extensibility.ExtensionAttribute">
            <summary>
            The ExtensionAttribute is used to identify a class that is intended
            to serve as an extension.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.ExtensionAttribute.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:NUnit.Engine.Extensibility.ExtensionAttribute"/> class.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.Path">
            <summary>
            A unique string identifying the ExtensionPoint for which this Extension is 
            intended. This is an optional field provided NUnit is able to deduce the
            ExtensionPoint from the Type of the extension class.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.Description">
            <summary>
            An optional description of what the extension does.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.Enabled">
            <summary>
            Flag indicating whether the extension is enabled.
            </summary>
            <value><c>true</c> if enabled; otherwise, <c>false</c>.</value>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.EngineVersion">
            <summary>
            The minimum Engine version for which this extension is designed
            </summary>
        </member>
        <member name="T:NUnit.Engine.Extensibility.ExtensionPointAttribute">
            <summary>
            ExtensionPointAttribute is used at the assembly level to identify and
            document any ExtensionPoints supported by the assembly.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.ExtensionPointAttribute.#ctor(System.String,System.Type)">
            <summary>
            Construct an ExtensionPointAttribute
            </summary>
            <param name="path">A unique string identifying the extension point.</param>
            <param name="type">The required Type of any extension that is installed at this extension point.</param>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionPointAttribute.Path">
            <summary>
            The unique string identifying this ExtensionPoint. This identifier
            is typically formatted as a path using '/' and the set of extension 
            points is sometimes viewed as forming a tree.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionPointAttribute.Type">
            <summary>
            The required Type (usually an interface) of any extension that is 
            installed at this ExtensionPoint.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionPointAttribute.Description">
            <summary>
            An optional description of the purpose of the ExtensionPoint
            </summary>
        </member>
        <member name="T:NUnit.Engine.Extensibility.ExtensionPropertyAttribute">
            <summary>
            The ExtensionPropertyAttribute is used to specify named properties for an extension.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.ExtensionPropertyAttribute.#ctor(System.String,System.String)">
            <summary>
            Construct an ExtensionPropertyAttribute
            </summary>
            <param name="name">The name of the property</param>
            <param name="value">The property value</param>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionPropertyAttribute.Name">
            <summary>
            The name of the property.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionPropertyAttribute.Value">
            <summary>
            The property value
            </summary>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IDriverFactory">
            <summary>
            Interface implemented by a Type that knows how to create a driver for a test assembly.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IDriverFactory.IsSupportedTestFramework(System.Reflection.AssemblyName)">
            <summary>
            Gets a flag indicating whether a given AssemblyName
            represents a test framework supported by this factory.
            </summary>
            <param name="reference">An AssemblyName referring to the possible test framework.</param>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IDriverFactory.GetDriver(System.Reflection.AssemblyName)">
            <summary>
            Gets a driver for a given test assembly and a framework
            which the assembly is already known to reference.
            </summary>
            <param name="reference">An AssemblyName referring to the test framework.</param>
            <returns></returns>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IExtensionNode">
            <summary>
            The IExtensionNode interface is implemented by a class that represents a
            single extension being installed on a particular extension point.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.TypeName">
            <summary>
            Gets the full name of the Type of the extension object.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.Enabled">
            <summary>
            Gets a value indicating whether this <see cref="T:NUnit.Engine.Extensibility.IExtensionNode"/> is enabled.
            </summary>
            <value><c>true</c> if enabled; otherwise, <c>false</c>.</value>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.Path">
            <summary>
            Gets the unique string identifying the ExtensionPoint for which
            this Extension is intended. This identifier may be supplied by the attribute
            marking the extension or deduced by NUnit from the Type of the extension class.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.Description">
            <summary>
            Gets an optional description of what the extension does.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.TargetFramework">
            <summary>
            The TargetFramework of the extension assembly.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.PropertyNames">
            <summary>
            Gets a collection of the names of all this extension's properties
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IExtensionNode.GetValues(System.String)">
            <summary>
            Gets a collection of the values of a particular named property
            If none are present, returns an empty enumerator.
            </summary>
            <param name="name">The property name</param>
            <returns>A collection of values</returns>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.AssemblyPath">
            <summary>
            The path to the assembly implementing this extension.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.AssemblyVersion">
            <summary>
            The version of the assembly implementing this extension.
            </summary>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IExtensionPoint">
            <summary>
            An ExtensionPoint represents a single point in the TestEngine
            that may be extended by user addins and extensions.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionPoint.Path">
            <summary>
            Gets the unique path identifying this extension point.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionPoint.Description">
            <summary>
            Gets the description of this extension point. May be null.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionPoint.TypeName">
            <summary>
            Gets the FullName of the Type required for any extension to be installed at this extension point.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionPoint.Extensions">
            <summary>
            Gets an enumeration of IExtensionNodes for extensions installed on this extension point.
            </summary>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IFrameworkDriver">
            <summary>
            The IFrameworkDriver interface is implemented by a class that
            is able to use an external framework to explore or run tests
            under the engine.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IFrameworkDriver.ID">
            <summary>
            Gets and sets the unique identifier for this driver,
            used to ensure that test ids are unique across drivers.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.Load(System.String,System.Collections.Generic.IDictionary{System.String,System.Object})">
            <summary>
            Loads the tests in an assembly.
            </summary>
            <returns>An Xml string representing the loaded test</returns>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.CountTestCases(System.String)">
            <summary>
            Count the test cases that would be executed.
            </summary>
            <param name="filter">An XML string representing the TestFilter to use in counting the tests</param>
            <returns>The number of test cases counted</returns>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.Run(NUnit.Engine.ITestEventListener,System.String)">
            <summary>
            Executes the tests in an assembly.
            </summary>
            <param name="listener">An ITestEventHandler that receives progress notices</param>
            <param name="filter">A XML string representing the filter that controls which tests are executed</param>
            <returns>An Xml string representing the result</returns>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.Explore(System.String)">
            <summary>
            Returns information about the tests in an assembly.
            </summary>
            <param name="filter">An XML string representing the filter that controls which tests are included</param>
            <returns>An Xml string representing the tests</returns>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.StopRun(System.Boolean)">
            <summary>
            Cancel the ongoing test run. If no  test is running, the call is ignored.
            </summary>
            <param name="force">If true, cancel any ongoing test threads, otherwise wait for them to complete.</param>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IProject">
            <summary>
            Interface for the various project types that the engine can load.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IProject.ProjectPath">
            <summary>
            Gets the path to the file storing this project, if any.
            If the project has not been saved, this is null.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IProject.ActiveConfigName">
            <summary>
            Gets the active configuration, as defined
            by the particular project.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IProject.ConfigNames">
            <summary>
            Gets a list of the configs for this project
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IProject.GetTestPackage">
            <summary>
            Gets a test package for the primary or active
            configuration within the project. The package 
            includes all the assemblies and any settings
            specified in the project format.
            </summary>
            <returns>A TestPackage</returns>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IProject.GetTestPackage(System.String)">
            <summary>
            Gets a TestPackage for a specific configuration
            within the project. The package includes all the
            assemblies and any settings specified in the 
            project format.
            </summary>
            <param name="configName">The name of the config to use</param>
            <returns>A TestPackage for the named configuration.</returns>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IProjectLoader">
            <summary>
            The IProjectLoader interface is implemented by any class
            that knows how to load projects in a specific format.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IProjectLoader.CanLoadFrom(System.String)">
            <summary>
            Returns true if the file indicated is one that this
            loader knows how to load.
            </summary>
            <param name="path">The path of the project file</param>
            <returns>True if the loader knows how to load this file, otherwise false</returns>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IProjectLoader.LoadFrom(System.String)">
            <summary>
            Loads a project of a known format.
            </summary>
            <param name="path">The path of the project file</param>
            <returns>An IProject interface to the loaded project or null if the project cannot be loaded</returns>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IResultWriter">
            <summary>
            Common interface for objects that process and write out test results
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IResultWriter.CheckWritability(System.String)">
            <summary>
            Checks if the output path is writable. If the output is not
            writable, this method should throw an exception.
            </summary>
            <param name="outputPath"></param>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IResultWriter.WriteResultFile(System.Xml.XmlNode,System.String)">
            <summary>
            Writes result to the specified output path.
            </summary>
            <param name="resultNode">XmlNode for the result</param>
            <param name="outputPath">Path to which it should be written</param>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IResultWriter.WriteResultFile(System.Xml.XmlNode,System.IO.TextWriter)">
            <summary>
            Writes result to a TextWriter.
            </summary>
            <param name="resultNode">XmlNode for the result</param>
            <param name="writer">TextWriter to which it should be written</param>
        </member>
        <member name="T:NUnit.Engine.Extensibility.TypeExtensionPointAttribute">
            <summary>
            TypeExtensionPointAttribute is used to bind an extension point
            to a class or interface.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.#ctor(System.String)">
            <summary>
            Construct a TypeExtensionPointAttribute, specifying the path.
            </summary>
            <param name="path">A unique string identifying the extension point.</param>
        </member>
        <member name="M:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.#ctor">
            <summary>
            Construct an TypeExtensionPointAttribute, without specifying the path.
            The extension point will use a path constructed based on the interface
            or class to which the attribute is applied.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.Path">
            <summary>
            The unique string identifying this ExtensionPoint. This identifier
            is typically formatted as a path using '/' and the set of extension 
            points is sometimes viewed as forming a tree.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.Description">
            <summary>
            An optional description of the purpose of the ExtensionPoint
            </summary>
        </member>
        <member name="T:NUnit.Engine.IAvailableRuntimes">
            <summary>
            Interface that returns a list of available runtime frameworks.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IAvailableRuntimes.AvailableRuntimes">
            <summary>
            Gets a list of available runtime frameworks.
            </summary>
        </member>
        <member name="T:NUnit.Engine.IExtensionService">
            <summary>
            The IExtensionService interface allows a runner to manage extensions.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IExtensionService.ExtensionPoints">
            <summary>
            Gets an enumeration of all ExtensionPoints in the engine.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IExtensionService.Extensions">
            <summary>
            Gets an enumeration of all installed Extensions.
            </summary>
        </member>
        <member name="M:NUnit.Engine.IExtensionService.GetExtensionPoint(System.String)">
            <summary>
            Get an ExtensionPoint based on its unique identifying path.
            </summary>
        </member>
        <member name="M:NUnit.Engine.IExtensionService.GetExtensionNodes(System.String)">
            <summary>
            Get an enumeration of ExtensionNodes based on their identifying path.
            </summary>
        </member>
        <member name="M:NUnit.Engine.IExtensionService.EnableExtension(System.String,System.Boolean)">
            <summary>
            Enable or disable an extension
            </summary>
            <param name="typeName"></param>
            <param name="enabled"></param>
        </member>
        <member name="T:NUnit.Engine.ILogger">
            <summary>
            Interface for logging within the engine
            </summary>
        </member>
        <member name="M:NUnit.Engine.ILogger.Error(System.String)">
            <summary>
            Logs the specified message at the error level.
            </summary>
            <param name="message">The message.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Error(System.String,System.Object[])">
            <summary>
            Logs the specified message at the error level.
            </summary>
            <param name="format">The message.</param>
            <param name="args">The arguments.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Warning(System.String)">
            <summary>
            Logs the specified message at the warning level.
            </summary>
            <param name="message">The message.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Warning(System.String,System.Object[])">
            <summary>
            Logs the specified message at the warning level.
            </summary>
            <param name="format">The message.</param>
            <param name="args">The arguments.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Info(System.String)">
            <summary>
            Logs the specified message at the info level.
            </summary>
            <param name="message">The message.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Info(System.String,System.Object[])">
            <summary>
            Logs the specified message at the info level.
            </summary>
            <param name="format">The message.</param>
            <param name="args">The arguments.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Debug(System.String)">
            <summary>
            Logs the specified message at the debug level.
            </summary>
            <param name="message">The message.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Debug(System.String,System.Object[])">
            <summary>
            Logs the specified message at the debug level.
            </summary>
            <param name="format">The message.</param>
            <param name="args">The arguments.</param>
        </member>
        <member name="T:NUnit.Engine.ILogging">
            <summary>
            Interface to abstract getting loggers
            </summary>
        </member>
        <member name="M:NUnit.Engine.ILogging.GetLogger(System.String)">
            <summary>
            Gets the logger.
            </summary>
            <param name="name">The name of the logger to get.</param>
            <returns></returns>
        </member>
        <member name="T:NUnit.Engine.InternalTraceLevel">
            <summary>
            InternalTraceLevel is an enumeration controlling the
            level of detailed presented in the internal log.
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Default">
            <summary>
            Use the default settings as specified by the user.
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Off">
            <summary>
            Do not display any trace messages
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Error">
            <summary>
            Display Error messages only
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Warning">
            <summary>
            Display Warning level and higher messages
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Info">
            <summary>
            Display informational and higher messages
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Debug">
            <summary>
            Display debug messages and higher - i.e. all messages
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Verbose">
            <summary>
            Display debug messages and higher - i.e. all messages
            </summary>
        </member>
        <member name="T:NUnit.Engine.IRecentFiles">
            <summary>
            The IRecentFiles interface is used to isolate the app
            from various implementations of recent files.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRecentFiles.MaxFiles">
            <summary>
            The max number of files saved
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRecentFiles.Entries">
            <summary>
            Get a list of all the file entries
            </summary>
            <returns>The most recent file list</returns>
        </member>
        <member name="M:NUnit.Engine.IRecentFiles.SetMostRecent(System.String)">
            <summary>
            Set the most recent file name, reordering
            the saved names as needed and removing the oldest
            if the max number of files would be exceeded.
            The current CLR version is used to create the entry.
            </summary>
        </member>
        <member name="M:NUnit.Engine.IRecentFiles.Remove(System.String)">
            <summary>
            Remove a file from the list
            </summary>
            <param name="fileName">The name of the file to remove</param>
        </member>
        <member name="T:NUnit.Engine.IResultService">
            <summary>
            IResultWriterService provides result writers for a specified
            well-known format.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IResultService.Formats">
            <summary>
            Gets an array of the available formats
            </summary>
        </member>
        <member name="M:NUnit.Engine.IResultService.GetResultWriter(System.String,System.Object[])">
            <summary>
            Gets a ResultWriter for a given format and set of arguments.
            </summary>
            <param name="format">The name of the format to be used</param>
            <param name="args">A set of arguments to be used in constructing the writer or null if non arguments are needed</param>
            <returns>An IResultWriter</returns>
        </member>
        <member name="T:NUnit.Engine.IRuntimeFramework">
            <summary>
            Interface implemented by objects representing a runtime framework.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRuntimeFramework.Id">
            <summary>
            Gets the inique Id for this runtime, such as "net-4.5"
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRuntimeFramework.DisplayName">
            <summary>
            Gets the display name of the framework, such as ".NET 4.5"
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRuntimeFramework.FrameworkVersion">
            <summary>
            Gets the framework version: usually contains two components, Major
            and Minor, which match the corresponding CLR components, but not always.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRuntimeFramework.ClrVersion">
            <summary>
            Gets the Version of the CLR for this framework
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRuntimeFramework.Profile">
            <summary>
            Gets a string representing the particular profile installed,
            or null if there is no profile. Currently. the only defined 
            values are Full and Client.
            </summary>
        </member>
        <member name="T:NUnit.Engine.IRuntimeFrameworkService">
            <summary>
            Implemented by a type that provides information about the
            current and other available runtimes.
            </summary>
        </member>
        <member name="M:NUnit.Engine.IRuntimeFrameworkService.IsAvailable(System.String)">
            <summary>
            Returns true if the runtime framework represented by
            the string passed as an argument is available.
            </summary>
            <param name="framework">A string representing a framework, like 'net-4.0'</param>
            <returns>True if the framework is available, false if unavailable or nonexistent</returns>
        </member>
        <member name="M:NUnit.Engine.IRuntimeFrameworkService.SelectRuntimeFramework(NUnit.Engine.TestPackage)">
             <summary>
             Selects a target runtime framework for a TestPackage based on
             the settings in the package and the assemblies themselves.
             The package RuntimeFramework setting may be updated as a 
             result and the selected runtime is returned.
            
             Note that if a package has subpackages, the subpackages may run on a different
             framework to the top-level package. In future, this method should
             probably not return a simple string, and instead require runners
             to inspect the test package structure, to find all desired frameworks.
             </summary>
             <param name="package">A TestPackage</param>
             <returns>The selected RuntimeFramework</returns>
        </member>
        <member name="T:NUnit.Engine.ServiceStatus">
            <summary>
            Enumeration representing the status of a service
            </summary>
        </member>
        <member name="F:NUnit.Engine.ServiceStatus.Stopped">
            <summary>Service was never started or has been stopped</summary>
        </member>
        <member name="F:NUnit.Engine.ServiceStatus.Started">
            <summary>Started successfully</summary>
        </member>
        <member name="F:NUnit.Engine.ServiceStatus.Error">
            <summary>Service failed to start and is unavailable</summary>
        </member>
        <member name="T:NUnit.Engine.IService">
            <summary>
            The IService interface is implemented by all Services. Although it
            is extensible, it does not reside in the Extensibility namespace
            because it is so widely used by the engine.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IService.ServiceContext">
            <summary>
            The ServiceContext
            </summary>
        </member>
        <member name="P:NUnit.Engine.IService.Status">
            <summary>
            Gets the ServiceStatus of this service
            </summary>
        </member>
        <member name="M:NUnit.Engine.IService.StartService">
            <summary>
            Initialize the Service
            </summary>
        </member>
        <member name="M:NUnit.Engine.IService.StopService">
            <summary>
            Do any cleanup needed before terminating the service
            </summary>
        </member>
        <member name="T:NUnit.Engine.IServiceLocator">
            <summary>
            IServiceLocator allows clients to locate any NUnit services
            for which the interface is referenced. In normal use, this
            linits it to those services using interfaces defined in the 
            nunit.engine.api assembly.
            </summary>
        </member>
        <member name="M:NUnit.Engine.IServiceLocator.GetService``1">
            <summary>
            Return a specified type of service
            </summary>
        </member>
        <member name="M:NUnit.Engine.IServiceLocator.GetService(System.Type)">
            <summary>
            Return a specified type of service
            </summary>
        </member>
        <member name="T:NUnit.Engine.SettingsEventHandler">
            <summary>
            Event handler for settings changes
            </summary>
            <param name="sender">The sender.</param>
            <param name="args">The <see cref="T:NUnit.Engine.SettingsEventArgs"/> instance containing the event data.</param>
        </member>
        <member name="T:NUnit.Engine.SettingsEventArgs">
            <summary>
            Event argument for settings changes
            </summary>
        </member>
        <member name="M:NUnit.Engine.SettingsEventArgs.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:NUnit.Engine.SettingsEventArgs"/> class.
            </summary>
            <param name="settingName">Name of the setting that has changed.</param>
        </member>
        <member name="P:NUnit.Engine.SettingsEventArgs.SettingName">
            <summary>
            Gets the name of the setting that has changed
            </summary>
        </member>
        <member name="T:NUnit.Engine.ISettings">
            <summary>
            The ISettings interface is used to access all user
            settings and options.
            </summary>
        </member>
        <member name="E:NUnit.Engine.ISettings.Changed">
            <summary>
            Occurs when the settings are changed.
            </summary>
        </member>
        <member name="M:NUnit.Engine.ISettings.GetSetting(System.String)">
            <summary>
            Load a setting from the storage.
            </summary>
            <param name="settingName">Name of the setting to load</param>
            <returns>Value of the setting or null</returns>
        </member>
        <member name="M:NUnit.Engine.ISettings.GetSetting``1(System.String,``0)">
            <summary>
            Load a setting from the storage or return a default value
            </summary>
            <param name="settingName">Name of the setting to load</param>
            <param name="defaultValue">Value to return if the setting is missing</param>
            <returns>Value of the setting or the default value</returns>
        </member>
        <member name="M:NUnit.Engine.ISettings.RemoveSetting(System.String)">
            <summary>
            Remove a setting from the storage
            </summary>
            <param name="settingName">Name of the setting to remove</param>
        </member>
        <member name="M:NUnit.Engine.ISettings.RemoveGroup(System.String)">
            <summary>
            Remove an entire group of settings from the storage
            </summary>
            <param name="groupName">Name of the group to remove</param>
        </member>
        <member name="M:NUnit.Engine.ISettings.SaveSetting(System.String,System.Object)">
            <summary>
            Save a setting in the storage
            </summary>
            <param name="settingName">Name of the setting to save</param>
            <param name="settingValue">Value to be saved</param>
        </member>
        <member name="T:NUnit.Engine.ITestEngine">
            <summary>
            ITestEngine represents an instance of the test engine.
            Clients wanting to discover, explore or run tests start
            require an instance of the engine, which is generally
            acquired from the TestEngineActivator class.
            </summary>
        </member>
        <member name="P:NUnit.Engine.ITestEngine.Services">
            <summary>
            Gets the IServiceLocator interface, which gives access to
            certain services provided by the engine.
            </summary>
        </member>
        <member name="P:NUnit.Engine.ITestEngine.WorkDirectory">
            <summary>
            Gets and sets the directory path used by the engine for saving files.
            Some services may ignore changes to this path made after initialization.
            The default value is the current directory.
            </summary>
        </member>
        <member name="P:NUnit.Engine.ITestEngine.InternalTraceLevel">
            <summary>
            Gets and sets the InternalTraceLevel used by the engine. Changing this
            setting after initialization will have no effect. The default value
            is the value saved in the NUnit settings.
            </summary>
        </member>
        <member name="M:NUnit.Engine.ITestEngine.Initialize">
             <summary>
             Initialize the engine. This includes initializing mono addins,
             setting the trace level and creating the standard set of services
             used in the Engine.
            
             This interface is not normally called by user code. Programs linking
             only to the nunit.engine.api assembly are given a
             pre-initialized instance of TestEngine. Programs
             that link directly to nunit.engine usually do so
             in order to perform custom initialization.
             </summary>
        </member>
        <member name="M:NUnit.Engine.ITestEngine.GetRunner(NUnit.Engine.TestPackage)">
            <summary>
            Returns a test runner instance for use by clients in discovering,
            exploring and executing tests.
            </summary>
            <param name="package">The TestPackage for which the runner is intended.</param>
            <returns>An ITestRunner.</returns>
        </member>
        <member name="T:NUnit.Engine.ITestEventListener">
            <summary>
            The ITestListener interface is used to receive notices of significant
            events while a test is running. Its single method accepts an Xml string,
            which may represent any event generated by the test framework, the driver
            or any of the runners internal to the engine. Use of Xml means that
            any driver and framework may add additional events and the engine will
            simply pass them on through this interface.
            </summary>
        </member>
        <member name="M:NUnit.Engine.ITestEventListener.OnTestEvent(System.String)">
            <summary>
            Handle a progress report or other event.
            </summary>
            <param name="report">An XML progress report.</param>
        </member>
        <member name="T:NUnit.Engine.ITestFilterBuilder">
            <summary>
            Interface to a TestFilterBuilder, which is used to create TestFilters
            </summary>
        </member>
        <member name="M:NUnit.Engine.ITestFilterBuilder.AddTest(System.String)">
            <summary>
            Add a test to be selected
            </summary>
            <param name="fullName">The full name of the test, as created by NUnit</param>
        </member>
        <member name="M:NUnit.Engine.ITestFilterBuilder.SelectWhere(System.String)">
            <summary>
            Specify what is to be included by the filter using a where clause.
            </summary>
            <param name="whereClause">A where clause that will be parsed by NUnit to create the filter.</param>
        </member>
        <member name="M:NUnit.Engine.ITestFilterBuilder.GetFilter">
            <summary>
            Get a TestFilter constructed according to the criteria specified by the other calls.
            </summary>
            <returns>A TestFilter.</returns>
        </member>
        <member name="T:NUnit.Engine.ITestFilterService">
            <summary>
            The TestFilterService provides builders that can create TestFilters
            </summary>
        </member>
        <member name="M:NUnit.Engine.ITestFilterService.GetTestFilterBuilder">
            <summary>
            Get an uninitialized TestFilterBuilder
            </summary>
        </member>
        <member name="T:NUnit.Engine.ITestRun">
            <summary>
            The ITestRun class represents an ongoing test run.
            </summary>
        </member>
        <member name="P:NUnit.Engine.ITestRun.Result">
            <summary>
            Get the result of the test.
            </summary>
            <returns>An XmlNode representing the test run result</returns>
        </member>
        <member name="M:NUnit.Engine.ITestRun.Wait(System.Int32)">
            <summary>
            Blocks the current thread until the current test run completes
            or the timeout is reached
            </summary>
            <param name="timeout">A <see cref="T:System.Int32"/> that represents the number of milliseconds to wait or -1 milliseconds to wait indefinitely. </param>
            <returns>True if the run completed</returns>
        </member>
        <member name="T:NUnit.Engine.ITestRunner">
            <summary>
            Interface implemented by all test runners.
            </summary>
        </member>
        <member name="P:NUnit.Engine.ITestRunner.IsTestRunning">
            <summary>
            Get a flag indicating whether a test is running
            </summary>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.Load">
            <summary>
            Load a TestPackage for possible execution
            </summary>
            <returns>An XmlNode representing the loaded package.</returns>
            <remarks>
            This method is normally optional, since Explore and Run call
            it automatically when necessary. The method is kept in order
            to make it easier to convert older programs that use it.
            </remarks>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.Unload">
            <summary>
            Unload any loaded TestPackage. If none is loaded,
            the call is ignored.
            </summary>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.Reload">
            <summary>
            Reload the current TestPackage
            </summary>
            <returns>An XmlNode representing the loaded package.</returns>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.CountTestCases(NUnit.Engine.TestFilter)">
            <summary>
            Count the test cases that would be run under
            the specified filter.
            </summary>
            <param name="filter">A TestFilter</param>
            <returns>The count of test cases</returns>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.Run(NUnit.Engine.ITestEventListener,NUnit.Engine.TestFilter)">
            <summary>
            Run the tests in the loaded TestPackage and return a test result. The tests
            are run synchronously and the listener interface is notified as it progresses.
            </summary>
            <param name="listener">The listener that is notified as the run progresses</param>
            <param name="filter">A TestFilter used to select tests</param>
            <returns>An XmlNode giving the result of the test execution</returns>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.RunAsync(NUnit.Engine.ITestEventListener,NUnit.Engine.TestFilter)">
            <summary>
            Start a run of the tests in the loaded TestPackage. The tests are run
            asynchronously and the listener interface is notified as it progresses.
            </summary>
            <param name="listener">The listener that is notified as the run progresses</param>
            <param name="filter">A TestFilter used to select tests</param>
            <returns></returns>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.StopRun(System.Boolean)">
            <summary>
            Cancel the ongoing test run. If no  test is running, the call is ignored.
            </summary>
            <param name="force">If true, cancel any ongoing test threads, otherwise wait for them to complete.</param>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.Explore(NUnit.Engine.TestFilter)">
            <summary>
            Explore a loaded TestPackage and return information about the tests found.
            </summary>
            <param name="filter">The TestFilter to be used in selecting tests to explore.</param>
            <returns>An XmlNode representing the tests found.</returns>
        </member>
        <member name="T:NUnit.Engine.TestEngineActivator">
            <summary>
            TestEngineActivator creates an instance of the test engine and returns an ITestEngine interface.
            </summary>
        </member>
        <member name="M:NUnit.Engine.TestEngineActivator.CreateInstance">
            <summary>
            Create an instance of the test engine.
            </summary>
            <returns>An <see cref="T:NUnit.Engine.ITestEngine"/></returns>
        </member>
        <member name="T:NUnit.Engine.TestFilter">
            <summary>
            Abstract base for all test filters. A filter is represented
            by an XmlNode with &lt;filter&gt; as its topmost element.
            In the console runner, filters serve only to carry this
            XML representation, as all filtering is done by the engine.
            </summary>
        </member>
        <member name="M:NUnit.Engine.TestFilter.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:NUnit.Engine.TestFilter"/> class.
            </summary>
            <param name="xmlText">The XML text that specifies the filter.</param>
        </member>
        <member name="F:NUnit.Engine.TestFilter.Empty">
            <summary>
            The empty filter - one that always passes.
            </summary>
        </member>
        <member name="P:NUnit.Engine.TestFilter.Text">
            <summary>
            Gets the XML representation of this filter as a string.
            </summary>
        </member>
        <member name="T:NUnit.Engine.TestPackage">
            <summary>
            TestPackage holds information about a set of test files to
            be loaded by a TestRunner. Each TestPackage represents
            tests for one or more test files. TestPackages may be named
            or anonymous, depending on the constructor used.
            
            Upon construction, a package is given an ID (string), which
            remains unchanged for the lifetime of the TestPackage instance.
            The package ID is passed to the test framework for use in generating
            test IDs.
            
            A runner that reloads test assemblies and wants the ids to remain stable
            should avoid creating a new package but should instead use the original
            package, changing settings as needed. This gives the best chance for the
            tests in the reloaded assembly to match those originally loaded.
            </summary>
        </member>
        <member name="M:NUnit.Engine.TestPackage.#ctor(System.String)">
            <summary>
            Construct a named TestPackage, specifying a file path for
            the assembly or project to be used.
            </summary>
            <param name="filePath">The file path.</param>
        </member>
        <member name="M:NUnit.Engine.TestPackage.#ctor(System.Collections.Generic.IList{System.String})">
            <summary>
            Construct an anonymous TestPackage that wraps test files.
            </summary>
            <param name="testFiles"></param>
        </member>
        <member name="P:NUnit.Engine.TestPackage.ID">
            <summary>
            Every test package gets a unique ID used to prefix test IDs within that package.
            </summary>
            <remarks>
            The generated ID is only unique for packages created within the same application domain.
            For that reason, NUnit pre-creates all test packages that will be needed.
            </remarks>
        </member>
        <member name="P:NUnit.Engine.TestPackage.Name">
            <summary>
            Gets the name of the package
            </summary>
        </member>
        <member name="P:NUnit.Engine.TestPackage.FullName">
            <summary>
            Gets the path to the file containing tests. It may be
            an assembly or a recognized project type.
            </summary>
        </member>
        <member name="P:NUnit.Engine.TestPackage.SubPackages">
            <summary>
            Gets the list of SubPackages contained in this package
            </summary>
        </member>
        <member name="P:NUnit.Engine.TestPackage.Settings">
            <summary>
            Gets the settings dictionary for this package.
            </summary>
        </member>
        <member name="M:NUnit.Engine.TestPackage.AddSubPackage(NUnit.Engine.TestPackage)">
            <summary>
            Add a subproject to the package.
            </summary>
            <param name="subPackage">The subpackage to be added</param>
        </member>
        <member name="M:NUnit.Engine.TestPackage.AddSetting(System.String,System.Object)">
            <summary>
            Add a setting to a package and all of its subpackages.
            </summary>
            <param name="name">The name of the setting</param>
            <param name="value">The value of the setting</param>
            <remarks>
            Once a package is created, subpackages may have been created
            as well. If you add a setting directly to the Settings dictionary
            of the package, the subpackages are not updated. This method is
            used when the settings are intended to be reflected to all the
            subpackages under the package.
            </remarks>
        </member>
        <member name="M:NUnit.Engine.TestPackage.GetSetting``1(System.String,``0)">
            <summary>
            Return the value of a setting or a default.
            </summary>
            <param name="name">The name of the setting</param>
            <param name="defaultSetting">The default value</param>
            <returns></returns>
        </member>
        <member name="T:NUnit.Engine.TestSelectionParserException">
            <summary>
            TestSelectionParserException is thrown when an error
            is found while parsing the selection expression.
            </summary>
        </member>
        <member name="M:NUnit.Engine.TestSelectionParserException.#ctor(System.String)">
            <summary>
            Construct with a message
            </summary>
        </member>
        <member name="M:NUnit.Engine.TestSelectionParserException.#ctor(System.String,System.Exception)">
            <summary>
            Construct with a message and inner exception
            </summary>
            <param name="message"></param>
            <param name="innerException"></param>
        </member>
        <member name="M:NUnit.Engine.TestSelectionParserException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Serialization constructor
            </summary>
        </member>
    </members>
</doc>
tools\agents\net7.0\nunit.engine.core.dll
md5: ECCC543E0E378618E0741F9DB70272C0 | sha1: D4B8A50281BE4E6780B653DC76DDFCA2A35E3DC9 | sha256: 06753C45CEB2DEC57631B900934541BF0F98A57CD38FDC8D2B7A4500EA19F9BF | sha512: 61602481D3DC3B863F7E069F7FBE33C92282710E11AE2FC09E55C3944CA12932D33B20A2ED4E6B2DBDDC8FE4E7B4246821F4FE19339A0E7858F09B9638F65F55
tools\agents\net7.0\testcentric.engine.metadata.dll
tools\agents\net7.0\nunit.agent.addins
 
tools\agents\net8.0\nunit-agent.dll
md5: CBF5A094EC80664ED227A1A7DD29A592 | sha1: 7F99E464010DDD988D9DBE3BDB094A3BECCB119E | sha256: CDC69368D62D710E1AE49216D3D0C9F9085A24A97E0186B86A00F8E6B2675813 | sha512: 64B5EF17E9A926A0F6F14B39D2A3BC76DC7DEBD9787B05973C2338CEB1E326CD0F113566B5F7554EECD1D59D1B5F4158E27E028731B1A9C2CFECE64257DF7457
tools\agents\net8.0\nunit-agent.dll.config
<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <!--
   Nunit-agent only runs under .NET 2.0 or higher. 
   The setting    useLegacyV2RuntimeActivationPolicy only applies 
   under .NET 4.0 and permits use of mixed mode assemblies, 
   which would otherwise not load correctly. 
  -->
  <startup useLegacyV2RuntimeActivationPolicy="true">
    <!--
     Nunit-agent is normally run by the console or gui
     runners and not independently. In normal usage, 
     the runner specifies which runtime should be used.
     
     Do NOT add any supportedRuntime elements here, 
     since they may prevent the runner from controlling 
     the runtime that is used!
    -->
  </startup>

  <runtime>
    <!-- Ensure that test exceptions don't crash NUnit -->
    <legacyUnhandledExceptionPolicy enabled="1" />

    <!--
     Since legacyUnhandledExceptionPolicy keeps the console from being killed even though an NUnit framework
     test worker thread is killed, this is needed to prevent a hang. NUnit framework can only handle these
     exceptions when this config element is present. (Or if future versions of NUnit framework drop support
     for partial trust which would enable it to use [HandleProcessCorruptedStateExceptions].)
    -->
    <legacyCorruptedStateExceptionsPolicy enabled="true" />

    <!-- Run partial trust V2 assemblies in full trust under .NET 4.0 -->
    <loadFromRemoteSources enabled="true" />

    <!-- Enable reading source information from Portable and Embedded PDBs when running applications -->
    <!-- built against previous .NET Framework versions on .NET Framework 4.7.2 -->
    <AppContextSwitchOverrides value="Switch.System.Diagnostics.IgnorePortablePDBsInStackTraces=false" />
  </runtime>
  
</configuration>
tools\agents\net8.0\nunit-agent.deps.json
{
  "runtimeTarget": {
    "name": ".NETCoreApp,Version=v8.0",
    "signature": ""
  },
  "compilationOptions": {},
  "targets": {
    ".NETCoreApp,Version=v8.0": {
      "nunit-agent/3.17.0": {
        "dependencies": {
          "nunit.engine.api": "3.17.0",
          "nunit.engine.core": "3.17.0"
        },
        "runtime": {
          "nunit-agent.dll": {}
        }
      },
      "TestCentric.Metadata/2.0.0": {
        "runtime": {
          "lib/netstandard2.0/testcentric.engine.metadata.dll": {
            "assemblyVersion": "2.0.0.0",
            "fileVersion": "2.0.0.0"
          }
        }
      },
      "nunit.engine.api/3.17.0": {
        "runtime": {
          "nunit.engine.api.dll": {}
        }
      },
      "nunit.engine.core/3.17.0": {
        "dependencies": {
          "TestCentric.Metadata": "2.0.0",
          "nunit.engine.api": "3.17.0"
        },
        "runtime": {
          "nunit.engine.core.dll": {}
        }
      }
    }
  },
  "libraries": {
    "nunit-agent/3.17.0": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "TestCentric.Metadata/2.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-uxQYLwa3uX33zm2K9OA75C6uxA2ztOf5cKR2M5sqQxiMxw95IA1gRaKkzUnhu51ez/rJEHqmpmCsccCf+t8dLg==",
      "path": "testcentric.metadata/2.0.0",
      "hashPath": "testcentric.metadata.2.0.0.nupkg.sha512"
    },
    "nunit.engine.api/3.17.0": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "nunit.engine.core/3.17.0": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    }
  }
}
tools\agents\net8.0\nunit-agent.runtimeconfig.json
{
  "runtimeOptions": {
    "tfm": "net8.0",
    "framework": {
      "name": "Microsoft.NETCore.App",
      "version": "8.0.0"
    },
    "configProperties": {
      "System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
      "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": true
    }
  }
}
tools\agents\net8.0\nunit.engine.api.dll
md5: A07C580B5BAC29B68400FC0C6413133D | sha1: EA2ECDA9284B986F0FFCA390BD565236823199C6 | sha256: A8D1BA429B42578D9E1B14BF27516C821CAD9AE1CA9F8A2FC7011163E2BD34BC | sha512: 5681CA7AD1EAA71D7686EF9A7C4E26CE7862B85D802A4BF357CF0324D53420E19DA674B0FD47CCD8643A4998B4BE1D454018BA185FD7AB37CC37B2E3F6E45B07
tools\agents\net8.0\nunit.engine.api.xml
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>nunit.engine.api</name>
    </assembly>
    <members>
        <member name="T:NUnit.Engine.NUnitEngineException">
            <summary>
            NUnitEngineException is thrown when the engine has been
            called with improper values or when a particular facility
            is not available.
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineException.#ctor(System.String)">
            <summary>
            Construct with a message
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineException.#ctor(System.String,System.Exception)">
            <summary>
            Construct with a message and inner exception
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Serialization constructor
            </summary>
        </member>
        <member name="T:NUnit.Engine.NUnitEngineNotFoundException">
            <summary>
            The exception that is thrown if a valid test engine is not found
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineNotFoundException.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:NUnit.Engine.NUnitEngineNotFoundException"/> class.
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineNotFoundException.#ctor(System.Version)">
            <summary>
            Initializes a new instance of the <see cref="T:NUnit.Engine.NUnitEngineNotFoundException"/> class.
            </summary>
            <param name="minVersion">The minimum version.</param>
        </member>
        <member name="T:NUnit.Engine.NUnitEngineUnloadException">
            <summary>
            NUnitEngineUnloadException is thrown when a test run has completed successfully
            but one or more errors were encountered when attempting to unload
            and shut down the test run cleanly.
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.String)">
            <summary>
            Construct with a message
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.String,System.Exception)">
            <summary>
            Construct with a message and inner exception
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.Collections.Generic.ICollection{System.Exception})">
            <summary>
            Construct with a message and a collection of exceptions.
            </summary>
        </member>
        <member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Serialization constructor.
            </summary>
        </member>
        <member name="P:NUnit.Engine.NUnitEngineUnloadException.AggregatedExceptions">
            <summary>
            Gets the collection of exceptions .
            </summary>
        </member>
        <member name="T:NUnit.Engine.Extensibility.ExtensionAttribute">
            <summary>
            The ExtensionAttribute is used to identify a class that is intended
            to serve as an extension.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.ExtensionAttribute.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:NUnit.Engine.Extensibility.ExtensionAttribute"/> class.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.Path">
            <summary>
            A unique string identifying the ExtensionPoint for which this Extension is 
            intended. This is an optional field provided NUnit is able to deduce the
            ExtensionPoint from the Type of the extension class.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.Description">
            <summary>
            An optional description of what the extension does.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.Enabled">
            <summary>
            Flag indicating whether the extension is enabled.
            </summary>
            <value><c>true</c> if enabled; otherwise, <c>false</c>.</value>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.EngineVersion">
            <summary>
            The minimum Engine version for which this extension is designed
            </summary>
        </member>
        <member name="T:NUnit.Engine.Extensibility.ExtensionPointAttribute">
            <summary>
            ExtensionPointAttribute is used at the assembly level to identify and
            document any ExtensionPoints supported by the assembly.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.ExtensionPointAttribute.#ctor(System.String,System.Type)">
            <summary>
            Construct an ExtensionPointAttribute
            </summary>
            <param name="path">A unique string identifying the extension point.</param>
            <param name="type">The required Type of any extension that is installed at this extension point.</param>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionPointAttribute.Path">
            <summary>
            The unique string identifying this ExtensionPoint. This identifier
            is typically formatted as a path using '/' and the set of extension 
            points is sometimes viewed as forming a tree.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionPointAttribute.Type">
            <summary>
            The required Type (usually an interface) of any extension that is 
            installed at this ExtensionPoint.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionPointAttribute.Description">
            <summary>
            An optional description of the purpose of the ExtensionPoint
            </summary>
        </member>
        <member name="T:NUnit.Engine.Extensibility.ExtensionPropertyAttribute">
            <summary>
            The ExtensionPropertyAttribute is used to specify named properties for an extension.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.ExtensionPropertyAttribute.#ctor(System.String,System.String)">
            <summary>
            Construct an ExtensionPropertyAttribute
            </summary>
            <param name="name">The name of the property</param>
            <param name="value">The property value</param>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionPropertyAttribute.Name">
            <summary>
            The name of the property.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.ExtensionPropertyAttribute.Value">
            <summary>
            The property value
            </summary>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IDriverFactory">
            <summary>
            Interface implemented by a Type that knows how to create a driver for a test assembly.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IDriverFactory.IsSupportedTestFramework(System.Reflection.AssemblyName)">
            <summary>
            Gets a flag indicating whether a given AssemblyName
            represents a test framework supported by this factory.
            </summary>
            <param name="reference">An AssemblyName referring to the possible test framework.</param>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IDriverFactory.GetDriver(System.Reflection.AssemblyName)">
            <summary>
            Gets a driver for a given test assembly and a framework
            which the assembly is already known to reference.
            </summary>
            <param name="reference">An AssemblyName referring to the test framework.</param>
            <returns></returns>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IExtensionNode">
            <summary>
            The IExtensionNode interface is implemented by a class that represents a
            single extension being installed on a particular extension point.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.TypeName">
            <summary>
            Gets the full name of the Type of the extension object.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.Enabled">
            <summary>
            Gets a value indicating whether this <see cref="T:NUnit.Engine.Extensibility.IExtensionNode"/> is enabled.
            </summary>
            <value><c>true</c> if enabled; otherwise, <c>false</c>.</value>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.Path">
            <summary>
            Gets the unique string identifying the ExtensionPoint for which
            this Extension is intended. This identifier may be supplied by the attribute
            marking the extension or deduced by NUnit from the Type of the extension class.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.Description">
            <summary>
            Gets an optional description of what the extension does.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.TargetFramework">
            <summary>
            The TargetFramework of the extension assembly.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.PropertyNames">
            <summary>
            Gets a collection of the names of all this extension's properties
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IExtensionNode.GetValues(System.String)">
            <summary>
            Gets a collection of the values of a particular named property
            If none are present, returns an empty enumerator.
            </summary>
            <param name="name">The property name</param>
            <returns>A collection of values</returns>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.AssemblyPath">
            <summary>
            The path to the assembly implementing this extension.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionNode.AssemblyVersion">
            <summary>
            The version of the assembly implementing this extension.
            </summary>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IExtensionPoint">
            <summary>
            An ExtensionPoint represents a single point in the TestEngine
            that may be extended by user addins and extensions.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionPoint.Path">
            <summary>
            Gets the unique path identifying this extension point.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionPoint.Description">
            <summary>
            Gets the description of this extension point. May be null.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionPoint.TypeName">
            <summary>
            Gets the FullName of the Type required for any extension to be installed at this extension point.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IExtensionPoint.Extensions">
            <summary>
            Gets an enumeration of IExtensionNodes for extensions installed on this extension point.
            </summary>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IFrameworkDriver">
            <summary>
            The IFrameworkDriver interface is implemented by a class that
            is able to use an external framework to explore or run tests
            under the engine.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IFrameworkDriver.ID">
            <summary>
            Gets and sets the unique identifier for this driver,
            used to ensure that test ids are unique across drivers.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.Load(System.String,System.Collections.Generic.IDictionary{System.String,System.Object})">
            <summary>
            Loads the tests in an assembly.
            </summary>
            <returns>An Xml string representing the loaded test</returns>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.CountTestCases(System.String)">
            <summary>
            Count the test cases that would be executed.
            </summary>
            <param name="filter">An XML string representing the TestFilter to use in counting the tests</param>
            <returns>The number of test cases counted</returns>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.Run(NUnit.Engine.ITestEventListener,System.String)">
            <summary>
            Executes the tests in an assembly.
            </summary>
            <param name="listener">An ITestEventHandler that receives progress notices</param>
            <param name="filter">A XML string representing the filter that controls which tests are executed</param>
            <returns>An Xml string representing the result</returns>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.Explore(System.String)">
            <summary>
            Returns information about the tests in an assembly.
            </summary>
            <param name="filter">An XML string representing the filter that controls which tests are included</param>
            <returns>An Xml string representing the tests</returns>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.StopRun(System.Boolean)">
            <summary>
            Cancel the ongoing test run. If no  test is running, the call is ignored.
            </summary>
            <param name="force">If true, cancel any ongoing test threads, otherwise wait for them to complete.</param>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IProject">
            <summary>
            Interface for the various project types that the engine can load.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IProject.ProjectPath">
            <summary>
            Gets the path to the file storing this project, if any.
            If the project has not been saved, this is null.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IProject.ActiveConfigName">
            <summary>
            Gets the active configuration, as defined
            by the particular project.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.IProject.ConfigNames">
            <summary>
            Gets a list of the configs for this project
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IProject.GetTestPackage">
            <summary>
            Gets a test package for the primary or active
            configuration within the project. The package 
            includes all the assemblies and any settings
            specified in the project format.
            </summary>
            <returns>A TestPackage</returns>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IProject.GetTestPackage(System.String)">
            <summary>
            Gets a TestPackage for a specific configuration
            within the project. The package includes all the
            assemblies and any settings specified in the 
            project format.
            </summary>
            <param name="configName">The name of the config to use</param>
            <returns>A TestPackage for the named configuration.</returns>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IProjectLoader">
            <summary>
            The IProjectLoader interface is implemented by any class
            that knows how to load projects in a specific format.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IProjectLoader.CanLoadFrom(System.String)">
            <summary>
            Returns true if the file indicated is one that this
            loader knows how to load.
            </summary>
            <param name="path">The path of the project file</param>
            <returns>True if the loader knows how to load this file, otherwise false</returns>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IProjectLoader.LoadFrom(System.String)">
            <summary>
            Loads a project of a known format.
            </summary>
            <param name="path">The path of the project file</param>
            <returns>An IProject interface to the loaded project or null if the project cannot be loaded</returns>
        </member>
        <member name="T:NUnit.Engine.Extensibility.IResultWriter">
            <summary>
            Common interface for objects that process and write out test results
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IResultWriter.CheckWritability(System.String)">
            <summary>
            Checks if the output path is writable. If the output is not
            writable, this method should throw an exception.
            </summary>
            <param name="outputPath"></param>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IResultWriter.WriteResultFile(System.Xml.XmlNode,System.String)">
            <summary>
            Writes result to the specified output path.
            </summary>
            <param name="resultNode">XmlNode for the result</param>
            <param name="outputPath">Path to which it should be written</param>
        </member>
        <member name="M:NUnit.Engine.Extensibility.IResultWriter.WriteResultFile(System.Xml.XmlNode,System.IO.TextWriter)">
            <summary>
            Writes result to a TextWriter.
            </summary>
            <param name="resultNode">XmlNode for the result</param>
            <param name="writer">TextWriter to which it should be written</param>
        </member>
        <member name="T:NUnit.Engine.Extensibility.TypeExtensionPointAttribute">
            <summary>
            TypeExtensionPointAttribute is used to bind an extension point
            to a class or interface.
            </summary>
        </member>
        <member name="M:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.#ctor(System.String)">
            <summary>
            Construct a TypeExtensionPointAttribute, specifying the path.
            </summary>
            <param name="path">A unique string identifying the extension point.</param>
        </member>
        <member name="M:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.#ctor">
            <summary>
            Construct an TypeExtensionPointAttribute, without specifying the path.
            The extension point will use a path constructed based on the interface
            or class to which the attribute is applied.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.Path">
            <summary>
            The unique string identifying this ExtensionPoint. This identifier
            is typically formatted as a path using '/' and the set of extension 
            points is sometimes viewed as forming a tree.
            </summary>
        </member>
        <member name="P:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.Description">
            <summary>
            An optional description of the purpose of the ExtensionPoint
            </summary>
        </member>
        <member name="T:NUnit.Engine.IAvailableRuntimes">
            <summary>
            Interface that returns a list of available runtime frameworks.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IAvailableRuntimes.AvailableRuntimes">
            <summary>
            Gets a list of available runtime frameworks.
            </summary>
        </member>
        <member name="T:NUnit.Engine.IExtensionService">
            <summary>
            The IExtensionService interface allows a runner to manage extensions.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IExtensionService.ExtensionPoints">
            <summary>
            Gets an enumeration of all ExtensionPoints in the engine.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IExtensionService.Extensions">
            <summary>
            Gets an enumeration of all installed Extensions.
            </summary>
        </member>
        <member name="M:NUnit.Engine.IExtensionService.GetExtensionPoint(System.String)">
            <summary>
            Get an ExtensionPoint based on its unique identifying path.
            </summary>
        </member>
        <member name="M:NUnit.Engine.IExtensionService.GetExtensionNodes(System.String)">
            <summary>
            Get an enumeration of ExtensionNodes based on their identifying path.
            </summary>
        </member>
        <member name="M:NUnit.Engine.IExtensionService.EnableExtension(System.String,System.Boolean)">
            <summary>
            Enable or disable an extension
            </summary>
            <param name="typeName"></param>
            <param name="enabled"></param>
        </member>
        <member name="T:NUnit.Engine.ILogger">
            <summary>
            Interface for logging within the engine
            </summary>
        </member>
        <member name="M:NUnit.Engine.ILogger.Error(System.String)">
            <summary>
            Logs the specified message at the error level.
            </summary>
            <param name="message">The message.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Error(System.String,System.Object[])">
            <summary>
            Logs the specified message at the error level.
            </summary>
            <param name="format">The message.</param>
            <param name="args">The arguments.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Warning(System.String)">
            <summary>
            Logs the specified message at the warning level.
            </summary>
            <param name="message">The message.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Warning(System.String,System.Object[])">
            <summary>
            Logs the specified message at the warning level.
            </summary>
            <param name="format">The message.</param>
            <param name="args">The arguments.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Info(System.String)">
            <summary>
            Logs the specified message at the info level.
            </summary>
            <param name="message">The message.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Info(System.String,System.Object[])">
            <summary>
            Logs the specified message at the info level.
            </summary>
            <param name="format">The message.</param>
            <param name="args">The arguments.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Debug(System.String)">
            <summary>
            Logs the specified message at the debug level.
            </summary>
            <param name="message">The message.</param>
        </member>
        <member name="M:NUnit.Engine.ILogger.Debug(System.String,System.Object[])">
            <summary>
            Logs the specified message at the debug level.
            </summary>
            <param name="format">The message.</param>
            <param name="args">The arguments.</param>
        </member>
        <member name="T:NUnit.Engine.ILogging">
            <summary>
            Interface to abstract getting loggers
            </summary>
        </member>
        <member name="M:NUnit.Engine.ILogging.GetLogger(System.String)">
            <summary>
            Gets the logger.
            </summary>
            <param name="name">The name of the logger to get.</param>
            <returns></returns>
        </member>
        <member name="T:NUnit.Engine.InternalTraceLevel">
            <summary>
            InternalTraceLevel is an enumeration controlling the
            level of detailed presented in the internal log.
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Default">
            <summary>
            Use the default settings as specified by the user.
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Off">
            <summary>
            Do not display any trace messages
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Error">
            <summary>
            Display Error messages only
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Warning">
            <summary>
            Display Warning level and higher messages
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Info">
            <summary>
            Display informational and higher messages
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Debug">
            <summary>
            Display debug messages and higher - i.e. all messages
            </summary>
        </member>
        <member name="F:NUnit.Engine.InternalTraceLevel.Verbose">
            <summary>
            Display debug messages and higher - i.e. all messages
            </summary>
        </member>
        <member name="T:NUnit.Engine.IRecentFiles">
            <summary>
            The IRecentFiles interface is used to isolate the app
            from various implementations of recent files.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRecentFiles.MaxFiles">
            <summary>
            The max number of files saved
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRecentFiles.Entries">
            <summary>
            Get a list of all the file entries
            </summary>
            <returns>The most recent file list</returns>
        </member>
        <member name="M:NUnit.Engine.IRecentFiles.SetMostRecent(System.String)">
            <summary>
            Set the most recent file name, reordering
            the saved names as needed and removing the oldest
            if the max number of files would be exceeded.
            The current CLR version is used to create the entry.
            </summary>
        </member>
        <member name="M:NUnit.Engine.IRecentFiles.Remove(System.String)">
            <summary>
            Remove a file from the list
            </summary>
            <param name="fileName">The name of the file to remove</param>
        </member>
        <member name="T:NUnit.Engine.IResultService">
            <summary>
            IResultWriterService provides result writers for a specified
            well-known format.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IResultService.Formats">
            <summary>
            Gets an array of the available formats
            </summary>
        </member>
        <member name="M:NUnit.Engine.IResultService.GetResultWriter(System.String,System.Object[])">
            <summary>
            Gets a ResultWriter for a given format and set of arguments.
            </summary>
            <param name="format">The name of the format to be used</param>
            <param name="args">A set of arguments to be used in constructing the writer or null if non arguments are needed</param>
            <returns>An IResultWriter</returns>
        </member>
        <member name="T:NUnit.Engine.IRuntimeFramework">
            <summary>
            Interface implemented by objects representing a runtime framework.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRuntimeFramework.Id">
            <summary>
            Gets the inique Id for this runtime, such as "net-4.5"
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRuntimeFramework.DisplayName">
            <summary>
            Gets the display name of the framework, such as ".NET 4.5"
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRuntimeFramework.FrameworkVersion">
            <summary>
            Gets the framework version: usually contains two components, Major
            and Minor, which match the corresponding CLR components, but not always.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRuntimeFramework.ClrVersion">
            <summary>
            Gets the Version of the CLR for this framework
            </summary>
        </member>
        <member name="P:NUnit.Engine.IRuntimeFramework.Profile">
            <summary>
            Gets a string representing the particular profile installed,
            or null if there is no profile. Currently. the only defined 
            values are Full and Client.
            </summary>
        </member>
        <member name="T:NUnit.Engine.IRuntimeFrameworkService">
            <summary>
            Implemented by a type that provides information about the
            current and other available runtimes.
            </summary>
        </member>
        <member name="M:NUnit.Engine.IRuntimeFrameworkService.IsAvailable(System.String)">
            <summary>
            Returns true if the runtime framework represented by
            the string passed as an argument is available.
            </summary>
            <param name="framework">A string representing a framework, like 'net-4.0'</param>
            <returns>True if the framework is available, false if unavailable or nonexistent</returns>
        </member>
        <member name="M:NUnit.Engine.IRuntimeFrameworkService.SelectRuntimeFramework(NUnit.Engine.TestPackage)">
             <summary>
             Selects a target runtime framework for a TestPackage based on
             the settings in the package and the assemblies themselves.
             The package RuntimeFramework setting may be updated as a 
             result and the selected runtime is returned.
            
             Note that if a package has subpackages, the subpackages may run on a different
             framework to the top-level package. In future, this method should
             probably not return a simple string, and instead require runners
             to inspect the test package structure, to find all desired frameworks.
             </summary>
             <param name="package">A TestPackage</param>
             <returns>The selected RuntimeFramework</returns>
        </member>
        <member name="T:NUnit.Engine.ServiceStatus">
            <summary>
            Enumeration representing the status of a service
            </summary>
        </member>
        <member name="F:NUnit.Engine.ServiceStatus.Stopped">
            <summary>Service was never started or has been stopped</summary>
        </member>
        <member name="F:NUnit.Engine.ServiceStatus.Started">
            <summary>Started successfully</summary>
        </member>
        <member name="F:NUnit.Engine.ServiceStatus.Error">
            <summary>Service failed to start and is unavailable</summary>
        </member>
        <member name="T:NUnit.Engine.IService">
            <summary>
            The IService interface is implemented by all Services. Although it
            is extensible, it does not reside in the Extensibility namespace
            because it is so widely used by the engine.
            </summary>
        </member>
        <member name="P:NUnit.Engine.IService.ServiceContext">
            <summary>
            The ServiceContext
            </summary>
        </member>
        <member name="P:NUnit.Engine.IService.Status">
            <summary>
            Gets the ServiceStatus of this service
            </summary>
        </member>
        <member name="M:NUnit.Engine.IService.StartService">
            <summary>
            Initialize the Service
            </summary>
        </member>
        <member name="M:NUnit.Engine.IService.StopService">
            <summary>
            Do any cleanup needed before terminating the service
            </summary>
        </member>
        <member name="T:NUnit.Engine.IServiceLocator">
            <summary>
            IServiceLocator allows clients to locate any NUnit services
            for which the interface is referenced. In normal use, this
            linits it to those services using interfaces defined in the 
            nunit.engine.api assembly.
            </summary>
        </member>
        <member name="M:NUnit.Engine.IServiceLocator.GetService``1">
            <summary>
            Return a specified type of service
            </summary>
        </member>
        <member name="M:NUnit.Engine.IServiceLocator.GetService(System.Type)">
            <summary>
            Return a specified type of service
            </summary>
        </member>
        <member name="T:NUnit.Engine.SettingsEventHandler">
            <summary>
            Event handler for settings changes
            </summary>
            <param name="sender">The sender.</param>
            <param name="args">The <see cref="T:NUnit.Engine.SettingsEventArgs"/> instance containing the event data.</param>
        </member>
        <member name="T:NUnit.Engine.SettingsEventArgs">
            <summary>
            Event argument for settings changes
            </summary>
        </member>
        <member name="M:NUnit.Engine.SettingsEventArgs.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:NUnit.Engine.SettingsEventArgs"/> class.
            </summary>
            <param name="settingName">Name of the setting that has changed.</param>
        </member>
        <member name="P:NUnit.Engine.SettingsEventArgs.SettingName">
            <summary>
            Gets the name of the setting that has changed
            </summary>
        </member>
        <member name="T:NUnit.Engine.ISettings">
            <summary>
            The ISettings interface is used to access all user
            settings and options.
            </summary>
        </member>
        <member name="E:NUnit.Engine.ISettings.Changed">
            <summary>
            Occurs when the settings are changed.
            </summary>
        </member>
        <member name="M:NUnit.Engine.ISettings.GetSetting(System.String)">
            <summary>
            Load a setting from the storage.
            </summary>
            <param name="settingName">Name of the setting to load</param>
            <returns>Value of the setting or null</returns>
        </member>
        <member name="M:NUnit.Engine.ISettings.GetSetting``1(System.String,``0)">
            <summary>
            Load a setting from the storage or return a default value
            </summary>
            <param name="settingName">Name of the setting to load</param>
            <param name="defaultValue">Value to return if the setting is missing</param>
            <returns>Value of the setting or the default value</returns>
        </member>
        <member name="M:NUnit.Engine.ISettings.RemoveSetting(System.String)">
            <summary>
            Remove a setting from the storage
            </summary>
            <param name="settingName">Name of the setting to remove</param>
        </member>
        <member name="M:NUnit.Engine.ISettings.RemoveGroup(System.String)">
            <summary>
            Remove an entire group of settings from the storage
            </summary>
            <param name="groupName">Name of the group to remove</param>
        </member>
        <member name="M:NUnit.Engine.ISettings.SaveSetting(System.String,System.Object)">
            <summary>
            Save a setting in the storage
            </summary>
            <param name="settingName">Name of the setting to save</param>
            <param name="settingValue">Value to be saved</param>
        </member>
        <member name="T:NUnit.Engine.ITestEngine">
            <summary>
            ITestEngine represents an instance of the test engine.
            Clients wanting to discover, explore or run tests start
            require an instance of the engine, which is generally
            acquired from the TestEngineActivator class.
            </summary>
        </member>
        <member name="P:NUnit.Engine.ITestEngine.Services">
            <summary>
            Gets the IServiceLocator interface, which gives access to
            certain services provided by the engine.
            </summary>
        </member>
        <member name="P:NUnit.Engine.ITestEngine.WorkDirectory">
            <summary>
            Gets and sets the directory path used by the engine for saving files.
            Some services may ignore changes to this path made after initialization.
            The default value is the current directory.
            </summary>
        </member>
        <member name="P:NUnit.Engine.ITestEngine.InternalTraceLevel">
            <summary>
            Gets and sets the InternalTraceLevel used by the engine. Changing this
            setting after initialization will have no effect. The default value
            is the value saved in the NUnit settings.
            </summary>
        </member>
        <member name="M:NUnit.Engine.ITestEngine.Initialize">
             <summary>
             Initialize the engine. This includes initializing mono addins,
             setting the trace level and creating the standard set of services
             used in the Engine.
            
             This interface is not normally called by user code. Programs linking
             only to the nunit.engine.api assembly are given a
             pre-initialized instance of TestEngine. Programs
             that link directly to nunit.engine usually do so
             in order to perform custom initialization.
             </summary>
        </member>
        <member name="M:NUnit.Engine.ITestEngine.GetRunner(NUnit.Engine.TestPackage)">
            <summary>
            Returns a test runner instance for use by clients in discovering,
            exploring and executing tests.
            </summary>
            <param name="package">The TestPackage for which the runner is intended.</param>
            <returns>An ITestRunner.</returns>
        </member>
        <member name="T:NUnit.Engine.ITestEventListener">
            <summary>
            The ITestListener interface is used to receive notices of significant
            events while a test is running. Its single method accepts an Xml string,
            which may represent any event generated by the test framework, the driver
            or any of the runners internal to the engine. Use of Xml means that
            any driver and framework may add additional events and the engine will
            simply pass them on through this interface.
            </summary>
        </member>
        <member name="M:NUnit.Engine.ITestEventListener.OnTestEvent(System.String)">
            <summary>
            Handle a progress report or other event.
            </summary>
            <param name="report">An XML progress report.</param>
        </member>
        <member name="T:NUnit.Engine.ITestFilterBuilder">
            <summary>
            Interface to a TestFilterBuilder, which is used to create TestFilters
            </summary>
        </member>
        <member name="M:NUnit.Engine.ITestFilterBuilder.AddTest(System.String)">
            <summary>
            Add a test to be selected
            </summary>
            <param name="fullName">The full name of the test, as created by NUnit</param>
        </member>
        <member name="M:NUnit.Engine.ITestFilterBuilder.SelectWhere(System.String)">
            <summary>
            Specify what is to be included by the filter using a where clause.
            </summary>
            <param name="whereClause">A where clause that will be parsed by NUnit to create the filter.</param>
        </member>
        <member name="M:NUnit.Engine.ITestFilterBuilder.GetFilter">
            <summary>
            Get a TestFilter constructed according to the criteria specified by the other calls.
            </summary>
            <returns>A TestFilter.</returns>
        </member>
        <member name="T:NUnit.Engine.ITestFilterService">
            <summary>
            The TestFilterService provides builders that can create TestFilters
            </summary>
        </member>
        <member name="M:NUnit.Engine.ITestFilterService.GetTestFilterBuilder">
            <summary>
            Get an uninitialized TestFilterBuilder
            </summary>
        </member>
        <member name="T:NUnit.Engine.ITestRun">
            <summary>
            The ITestRun class represents an ongoing test run.
            </summary>
        </member>
        <member name="P:NUnit.Engine.ITestRun.Result">
            <summary>
            Get the result of the test.
            </summary>
            <returns>An XmlNode representing the test run result</returns>
        </member>
        <member name="M:NUnit.Engine.ITestRun.Wait(System.Int32)">
            <summary>
            Blocks the current thread until the current test run completes
            or the timeout is reached
            </summary>
            <param name="timeout">A <see cref="T:System.Int32"/> that represents the number of milliseconds to wait or -1 milliseconds to wait indefinitely. </param>
            <returns>True if the run completed</returns>
        </member>
        <member name="T:NUnit.Engine.ITestRunner">
            <summary>
            Interface implemented by all test runners.
            </summary>
        </member>
        <member name="P:NUnit.Engine.ITestRunner.IsTestRunning">
            <summary>
            Get a flag indicating whether a test is running
            </summary>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.Load">
            <summary>
            Load a TestPackage for possible execution
            </summary>
            <returns>An XmlNode representing the loaded package.</returns>
            <remarks>
            This method is normally optional, since Explore and Run call
            it automatically when necessary. The method is kept in order
            to make it easier to convert older programs that use it.
            </remarks>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.Unload">
            <summary>
            Unload any loaded TestPackage. If none is loaded,
            the call is ignored.
            </summary>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.Reload">
            <summary>
            Reload the current TestPackage
            </summary>
            <returns>An XmlNode representing the loaded package.</returns>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.CountTestCases(NUnit.Engine.TestFilter)">
            <summary>
            Count the test cases that would be run under
            the specified filter.
            </summary>
            <param name="filter">A TestFilter</param>
            <returns>The count of test cases</returns>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.Run(NUnit.Engine.ITestEventListener,NUnit.Engine.TestFilter)">
            <summary>
            Run the tests in the loaded TestPackage and return a test result. The tests
            are run synchronously and the listener interface is notified as it progresses.
            </summary>
            <param name="listener">The listener that is notified as the run progresses</param>
            <param name="filter">A TestFilter used to select tests</param>
            <returns>An XmlNode giving the result of the test execution</returns>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.RunAsync(NUnit.Engine.ITestEventListener,NUnit.Engine.TestFilter)">
            <summary>
            Start a run of the tests in the loaded TestPackage. The tests are run
            asynchronously and the listener interface is notified as it progresses.
            </summary>
            <param name="listener">The listener that is notified as the run progresses</param>
            <param name="filter">A TestFilter used to select tests</param>
            <returns></returns>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.StopRun(System.Boolean)">
            <summary>
            Cancel the ongoing test run. If no  test is running, the call is ignored.
            </summary>
            <param name="force">If true, cancel any ongoing test threads, otherwise wait for them to complete.</param>
        </member>
        <member name="M:NUnit.Engine.ITestRunner.Explore(NUnit.Engine.TestFilter)">
            <summary>
            Explore a loaded TestPackage and return information about the tests found.
            </summary>
            <param name="filter">The TestFilter to be used in selecting tests to explore.</param>
            <returns>An XmlNode representing the tests found.</returns>
        </member>
        <member name="T:NUnit.Engine.TestEngineActivator">
            <summary>
            TestEngineActivator creates an instance of the test engine and returns an ITestEngine interface.
            </summary>
        </member>
        <member name="M:NUnit.Engine.TestEngineActivator.CreateInstance">
            <summary>
            Create an instance of the test engine.
            </summary>
            <returns>An <see cref="T:NUnit.Engine.ITestEngine"/></returns>
        </member>
        <member name="T:NUnit.Engine.TestFilter">
            <summary>
            Abstract base for all test filters. A filter is represented
            by an XmlNode with &lt;filter&gt; as its topmost element.
            In the console runner, filters serve only to carry this
            XML representation, as all filtering is done by the engine.
            </summary>
        </member>
        <member name="M:NUnit.Engine.TestFilter.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:NUnit.Engine.TestFilter"/> class.
            </summary>
            <param name="xmlText">The XML text that specifies the filter.</param>
        </member>
        <member name="F:NUnit.Engine.TestFilter.Empty">
            <summary>
            The empty filter - one that always passes.
            </summary>
        </member>
        <member name="P:NUnit.Engine.TestFilter.Text">
            <summary>
            Gets the XML representation of this filter as a string.
            </summary>
        </member>
        <member name="T:NUnit.Engine.TestPackage">
            <summary>
            TestPackage holds information about a set of test files to
            be loaded by a TestRunner. Each TestPackage represents
            tests for one or more test files. TestPackages may be named
            or anonymous, depending on the constructor used.
            
            Upon construction, a package is given an ID (string), which
            remains unchanged for the lifetime of the TestPackage instance.
            The package ID is passed to the test framework for use in generating
            test IDs.
            
            A runner that reloads test assemblies and wants the ids to remain stable
            should avoid creating a new package but should instead use the original
            package, changing settings as needed. This gives the best chance for the
            tests in the reloaded assembly to match those originally loaded.
            </summary>
        </member>
        <member name="M:NUnit.Engine.TestPackage.#ctor(System.String)">
            <summary>
            Construct a named TestPackage, specifying a file path for
            the assembly or project to be used.
            </summary>
            <param name="filePath">The file path.</param>
        </member>
        <member name="M:NUnit.Engine.TestPackage.#ctor(System.Collections.Generic.IList{System.String})">
            <summary>
            Construct an anonymous TestPackage that wraps test files.
            </summary>
            <param name="testFiles"></param>
        </member>
        <member name="P:NUnit.Engine.TestPackage.ID">
            <summary>
            Every test package gets a unique ID used to prefix test IDs within that package.
            </summary>
            <remarks>
            The generated ID is only unique for packages created within the same application domain.
            For that reason, NUnit pre-creates all test packages that will be needed.
            </remarks>
        </member>
        <member name="P:NUnit.Engine.TestPackage.Name">
            <summary>
            Gets the name of the package
            </summary>
        </member>
        <member name="P:NUnit.Engine.TestPackage.FullName">
            <summary>
            Gets the path to the file containing tests. It may be
            an assembly or a recognized project type.
            </summary>
        </member>
        <member name="P:NUnit.Engine.TestPackage.SubPackages">
            <summary>
            Gets the list of SubPackages contained in this package
            </summary>
        </member>
        <member name="P:NUnit.Engine.TestPackage.Settings">
            <summary>
            Gets the settings dictionary for this package.
            </summary>
        </member>
        <member name="M:NUnit.Engine.TestPackage.AddSubPackage(NUnit.Engine.TestPackage)">
            <summary>
            Add a subproject to the package.
            </summary>
            <param name="subPackage">The subpackage to be added</param>
        </member>
        <member name="M:NUnit.Engine.TestPackage.AddSetting(System.String,System.Object)">
            <summary>
            Add a setting to a package and all of its subpackages.
            </summary>
            <param name="name">The name of the setting</param>
            <param name="value">The value of the setting</param>
            <remarks>
            Once a package is created, subpackages may have been created
            as well. If you add a setting directly to the Settings dictionary
            of the package, the subpackages are not updated. This method is
            used when the settings are intended to be reflected to all the
            subpackages under the package.
            </remarks>
        </member>
        <member name="M:NUnit.Engine.TestPackage.GetSetting``1(System.String,``0)">
            <summary>
            Return the value of a setting or a default.
            </summary>
            <param name="name">The name of the setting</param>
            <param name="defaultSetting">The default value</param>
            <returns></returns>
        </member>
        <member name="T:NUnit.Engine.TestSelectionParserException">
            <summary>
            TestSelectionParserException is thrown when an error
            is found while parsing the selection expression.
            </summary>
        </member>
        <member name="M:NUnit.Engine.TestSelectionParserException.#ctor(System.String)">
            <summary>
            Construct with a message
            </summary>
        </member>
        <member name="M:NUnit.Engine.TestSelectionParserException.#ctor(System.String,System.Exception)">
            <summary>
            Construct with a message and inner exception
            </summary>
            <param name="message"></param>
            <param name="innerException"></param>
        </member>
        <member name="M:NUnit.Engine.TestSelectionParserException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Serialization constructor
            </summary>
        </member>
    </members>
</doc>
tools\agents\net8.0\nunit.engine.core.dll
md5: 61C6ACA39B289C57D7F6E583B819907D | sha1: 324C1A15DC1497DC0826A209E20140C717AEDB24 | sha256: 334E89C789C0780434317F3D1DB93CBA8486BEE902F45D1A4B4042B0B59AD20B | sha512: 5718EFAB54589FCBDB7971A5E4FCC0195B9B206197D5AACDE3525CBDC556A8BCD58C6307BDDE342865542D54C0C0D39178643D4B6863868B6552CD90D56557AE
tools\agents\net8.0\testcentric.engine.metadata.dll
tools\agents\net8.0\nunit.agent.addins
 

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
NUnit 3 Console Runner 3.16.3 47355 Tuesday, February 21, 2023 Approved
NUnit 3 Console Runner 3.16.2 4039 Wednesday, January 11, 2023 Approved
NUnit 3 Console Runner 3.16.1 783 Wednesday, January 4, 2023 Approved
NUnit 3 Console Runner 3.16.0 4340 Tuesday, November 15, 2022 Approved
NUnit 3 Console Runner 3.15.2 13597 Wednesday, June 29, 2022 Approved
NUnit 3 Console Runner 3.15.1 97 Wednesday, June 29, 2022 Approved
NUnit 3 Console Runner 3.15.0 14262 Thursday, February 10, 2022 Approved
NUnit 3 Console Runner 3.15.0-beta1 77 Monday, February 7, 2022 Approved
NUnit 3 Console Runner 3.14.0 3828 Saturday, January 15, 2022 Approved
NUnit 3 Console Runner 3.13.2 1698 Thursday, January 6, 2022 Approved
NUnit 3 Console Runner 3.13.1 282 Tuesday, January 4, 2022 Approved
NUnit 3 Console Runner 3.13.0 3209 Wednesday, December 1, 2021 Approved
NUnit 3 Console Runner 3.12.0 32782 Sunday, January 17, 2021 Approved
NUnit 3 Console Runner 3.12.0-beta1 573 Saturday, August 1, 2020 Approved
NUnit 3 Console Runner 3.11.1 24157 Monday, February 17, 2020 Approved
NUnit 3 Console Runner 3.10.0 38248 Sunday, March 24, 2019 Approved
NUnit 3 Console Runner 3.9.0 11460 Thursday, September 6, 2018 Approved
NUnit 3 Console Runner 3.8.0 28447 Tuesday, January 30, 2018 Approved
NUnit 3 Console Runner 3.7.0 1969 Friday, July 14, 2017 Approved
NUnit 3 Console Runner 3.6.1 7493 Friday, July 7, 2017 Approved

This package has no dependencies.

Discussion for the NUnit 3 Console Runner Package

Ground Rules:

  • This discussion is only about NUnit 3 Console Runner and the NUnit 3 Console Runner package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or NUnit 3 Console Runner, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus