Downloads:
9,836
Downloads of v 1.3.1:
265
Last Update:
07 Mar 2020
Package Maintainer(s):
Software Author(s):
- Charlie Poole
Tags:
testcentric nunit gui runner test centric testing tddTestCentric Runner for NUnit
This is not the latest version of TestCentric Runner for NUnit available.
- 1
- 2
- 3
1.3.1 | Updated: 07 Mar 2020
Downloads:
9,836
Downloads of v 1.3.1:
265
Maintainer(s):
Software Author(s):
- Charlie Poole
TestCentric Runner for NUnit 1.3.1
This is not the latest version of TestCentric Runner for NUnit available.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Charlie Poole. The inclusion of Charlie Poole trademark(s), if any, upon this webpage is solely to identify Charlie Poole goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
Validation Testing Passed
Verification Testing Passed
DetailsScan Testing Resulted in Flagged:
This package was submitted (and approved) prior to automated virus scanning integration into the package moderation processs.
We recommend clicking the "Details" link to make your own decision on installing this package.
Deployment Method: Individual Install, Upgrade, & Uninstall
To install TestCentric Runner for NUnit, run the following command from the command line or from PowerShell:
To upgrade TestCentric Runner for NUnit, run the following command from the command line or from PowerShell:
To uninstall TestCentric Runner for NUnit, run the following command from the command line or from PowerShell:
Deployment Method:
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
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
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
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download testcentric-gui --internalize --version=1.3.1 --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade testcentric-gui -y --source="'INTERNAL REPO URL'" --version="'1.3.1'" [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 testcentric-gui -y --source="'INTERNAL REPO URL'" --version="'1.3.1'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install testcentric-gui
win_chocolatey:
name: testcentric-gui
version: '1.3.1'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'testcentric-gui' do
action :install
source 'INTERNAL REPO URL'
version '1.3.1'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller testcentric-gui
{
Name = "testcentric-gui"
Version = "1.3.1"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'testcentric-gui':
ensure => '1.3.1',
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.
This package was approved as a trusted package on 07 Mar 2020.
The TestCentric Runner for NUnit (TestCentric) is a GUI runner aimed at eventually supporting a range of .NET testing frameworks. In the 1.x release series, we are concentrating on support of NUnit tests. The user interface is based on the layout and feature set of the of the original NUnit GUI, with the internals modified so as to run NUnit 3 tests.
This package includes the both the standard TestCentric GUI runner (testcentric.exe
) and an experiental runner (tc-next.exe
) which is available for... wait for it... experimentation! The package incorporates the TestCentric test engine, a modified version of the NUnit engine.
Features
Most features of the NUnit V2 Gui runner are supported. See CHANGES.txt for more detailed information.
NUnit engine extensions are supported but no extensions are bundled with the GUI itself. They must be installed separately using chocolatey. In particular, to run NUnit V2 tests, you should install the NUnit V2 Framework Driver Extension.
Warning: When using the GUI chocolatey package, only chocolatey-packaged extensions will be availble. This is by design.
Prerequisites
TestCentric requires .NET 4.5 or later in order to function, although your tests may run in a separate process under other framework versions.
Projects with tests to be run under TestCentric must already have some version of the NUnit framework installed separtely.
<?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>
md5: A698F05AFA2F62205E49C4E00E4A3460 | sha1: 1635D4CE8C8F68FEDDB9960E20B69731D737C575 | sha256: 1817D535C129C1BBFC9504486001B1703167163706A0059722C1A68D55E7F7B0 | sha512: 42360B17BB5DFF6057BF5012B033E3D86948B3B94AFBDB18FD60F8A4BBB09B1F5F96AB36273309F8D475ED148D7B3C2887A574CB4BF4E3A858EDB2B011AB6B77
<?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>
md5: 93772807ED2ED5D2C1A65CB135A0DBAE | sha1: 332AEE1CBF3A50C702BF3B1FCF1832FD168F2B29 | sha256: F326A6A7A3D5B5BFBA2855BA7ED1B5F0D7111812B19FC425B86A9EEB39EED67F | sha512: DFFDBD7B6B5A9A0400618BE6D6228C8D5CAE257F7E0A70F118956B8331C160CE38D7CA470AC5A0C8FDD92C8A9C7E5DF433FA2630B2531415080E1549C7D76777
<?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>
md5: B921DE70AAFA253FD56AC57467CD6BEB | sha1: EEE4475BDD5EFE54BD8B115ADADFFD1802B3D8A0 | sha256: 29EAC6A7BB614D6A6AA3FC11A827603EC1329560205EA9FE2BA1E19C42540A45 | sha512: 8C15ABB85716A935D4F529403FA37CCCA6432410D74EC4A2309844E3B73F9420278F71697793A93718BFE91996770B85EC5E8CE7E651B58AA922CCA1EA0CEA94
<?xml version="1.0"?>
<doc>
<assembly>
<name>testcentric.engine.api</name>
</assembly>
<members>
<member name="T:TestCentric.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:TestCentric.Engine.NUnitEngineException.#ctor(System.String)">
<summary>
Construct with a message
</summary>
</member>
<member name="M:TestCentric.Engine.NUnitEngineException.#ctor(System.String,System.Exception)">
<summary>
Construct with a message and inner exception
</summary>
</member>
<member name="M:TestCentric.Engine.NUnitEngineException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serialization constructor
</summary>
</member>
<member name="T:TestCentric.Engine.NUnitEngineNotFoundException">
<summary>
The exception that is thrown if a valid test engine is not found
</summary>
</member>
<member name="M:TestCentric.Engine.NUnitEngineNotFoundException.#ctor">
<summary>
Initializes a new instance of the <see cref="T:TestCentric.Engine.NUnitEngineNotFoundException"/> class.
</summary>
</member>
<member name="M:TestCentric.Engine.NUnitEngineNotFoundException.#ctor(System.Version)">
<summary>
Initializes a new instance of the <see cref="T:TestCentric.Engine.NUnitEngineNotFoundException"/> class.
</summary>
<param name="minVersion">The minimum version.</param>
</member>
<member name="T:TestCentric.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:TestCentric.Engine.NUnitEngineUnloadException.#ctor(System.String)">
<summary>
Construct with a message
</summary>
</member>
<member name="M:TestCentric.Engine.NUnitEngineUnloadException.#ctor(System.String,System.Exception)">
<summary>
Construct with a message and inner exception
</summary>
</member>
<member name="M:TestCentric.Engine.NUnitEngineUnloadException.#ctor(System.Collections.Generic.ICollection{System.Exception})">
<summary>
Construct with a message and a collection of exceptions.
</summary>
</member>
<member name="M:TestCentric.Engine.NUnitEngineUnloadException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serialization constructor.
</summary>
</member>
<member name="P:TestCentric.Engine.NUnitEngineUnloadException.AggregatedExceptions">
<summary>
Gets the collection of exceptions .
</summary>
</member>
<member name="T:TestCentric.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:TestCentric.Engine.Extensibility.ExtensionAttribute.#ctor">
<summary>
Initializes a new instance of the <see cref="T:TestCentric.Engine.Extensibility.ExtensionAttribute"/> class.
</summary>
</member>
<member name="P:TestCentric.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:TestCentric.Engine.Extensibility.ExtensionAttribute.Description">
<summary>
An optional description of what the extension does.
</summary>
</member>
<member name="P:TestCentric.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:TestCentric.Engine.Extensibility.ExtensionAttribute.EngineVersion">
<summary>
The minimum Engine version for which this extension is designed
</summary>
</member>
<member name="T:TestCentric.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:TestCentric.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:TestCentric.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:TestCentric.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:TestCentric.Engine.Extensibility.ExtensionPointAttribute.Description">
<summary>
An optional description of the purpose of the ExtensionPoint
</summary>
</member>
<member name="T:TestCentric.Engine.Extensibility.ExtensionPropertyAttribute">
<summary>
The ExtensionPropertyAttribute is used to specify named properties for an extension.
</summary>
</member>
<member name="M:TestCentric.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:TestCentric.Engine.Extensibility.ExtensionPropertyAttribute.Name">
<summary>
The name of the property.
</summary>
</member>
<member name="P:TestCentric.Engine.Extensibility.ExtensionPropertyAttribute.Value">
<summary>
The property value
</summary>
</member>
<member name="T:TestCentric.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:TestCentric.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:TestCentric.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:TestCentric.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:TestCentric.Engine.Extensibility.IExtensionNode.TypeName">
<summary>
Gets the full name of the Type of the extension object.
</summary>
</member>
<member name="P:TestCentric.Engine.Extensibility.IExtensionNode.Enabled">
<summary>
Gets a value indicating whether this <see cref="T:TestCentric.Engine.Extensibility.IExtensionNode"/> is enabled.
</summary>
<value><c>true</c> if enabled; otherwise, <c>false</c>.</value>
</member>
<member name="P:TestCentric.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:TestCentric.Engine.Extensibility.IExtensionNode.Description">
<summary>
Gets an optional description of what the extension does.
</summary>
</member>
<member name="P:TestCentric.Engine.Extensibility.IExtensionNode.TargetFramework">
<summary>
The TargetFramework of the extension assembly.
</summary>
</member>
<member name="P:TestCentric.Engine.Extensibility.IExtensionNode.PropertyNames">
<summary>
Gets a collection of the names of all this extension's properties
</summary>
</member>
<member name="M:TestCentric.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:TestCentric.Engine.Extensibility.IExtensionNode.AssemblyPath">
<summary>
The path to the assembly implementing this extension.
</summary>
</member>
<member name="P:TestCentric.Engine.Extensibility.IExtensionNode.AssemblyVersion">
<summary>
The version of the assembly implementing this extension.
</summary>
</member>
<member name="T:TestCentric.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:TestCentric.Engine.Extensibility.IExtensionPoint.Path">
<summary>
Gets the unique path identifying this extension point.
</summary>
</member>
<member name="P:TestCentric.Engine.Extensibility.IExtensionPoint.Description">
<summary>
Gets the description of this extension point. May be null.
</summary>
</member>
<member name="P:TestCentric.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:TestCentric.Engine.Extensibility.IExtensionPoint.Extensions">
<summary>
Gets an enumeration of IExtensionNodes for extensions installed on this extension point.
</summary>
</member>
<member name="T:TestCentric.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:TestCentric.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:TestCentric.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:TestCentric.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:TestCentric.Engine.Extensibility.IFrameworkDriver.Run(TestCentric.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:TestCentric.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:TestCentric.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:TestCentric.Engine.Extensibility.IProject">
<summary>
Interface for the various project types that the engine can load.
</summary>
</member>
<member name="P:TestCentric.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:TestCentric.Engine.Extensibility.IProject.ActiveConfigName">
<summary>
Gets the active configuration, as defined
by the particular project.
</summary>
</member>
<member name="P:TestCentric.Engine.Extensibility.IProject.ConfigNames">
<summary>
Gets a list of the configs for this project
</summary>
</member>
<member name="M:TestCentric.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:TestCentric.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:TestCentric.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:TestCentric.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:TestCentric.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:TestCentric.Engine.Extensibility.IResultWriter">
<summary>
Common interface for objects that process and write out test results
</summary>
</member>
<member name="M:TestCentric.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:TestCentric.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:TestCentric.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:TestCentric.Engine.Extensibility.TypeExtensionPointAttribute">
<summary>
TypeExtensionPointAttribute is used to bind an extension point
to a class or interface.
</summary>
</member>
<member name="M:TestCentric.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:TestCentric.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:TestCentric.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:TestCentric.Engine.Extensibility.TypeExtensionPointAttribute.Description">
<summary>
An optional description of the purpose of the ExtensionPoint
</summary>
</member>
<member name="T:TestCentric.Engine.IAvailableRuntimes">
<summary>
Interface that returns a list of available runtime frameworks.
</summary>
</member>
<member name="P:TestCentric.Engine.IAvailableRuntimes.AvailableRuntimes">
<summary>
Gets a list of available runtime frameworks.
</summary>
</member>
<member name="T:TestCentric.Engine.IExtensionService">
<summary>
The IExtensionService interface allows a runner to manage extensions.
</summary>
</member>
<member name="P:TestCentric.Engine.IExtensionService.ExtensionPoints">
<summary>
Gets an enumeration of all ExtensionPoints in the engine.
</summary>
</member>
<member name="P:TestCentric.Engine.IExtensionService.Extensions">
<summary>
Gets an enumeration of all installed Extensions.
</summary>
</member>
<member name="M:TestCentric.Engine.IExtensionService.GetExtensionPoint(System.String)">
<summary>
Get an ExtensionPoint based on its unique identifying path.
</summary>
</member>
<member name="M:TestCentric.Engine.IExtensionService.GetExtensionNodes(System.String)">
<summary>
Get an enumeration of ExtensionNodes based on their identifying path.
</summary>
</member>
<member name="M:TestCentric.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:TestCentric.Engine.ILogger">
<summary>
Interface for logging within the engine
</summary>
</member>
<member name="M:TestCentric.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:TestCentric.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:TestCentric.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:TestCentric.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:TestCentric.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:TestCentric.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:TestCentric.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:TestCentric.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:TestCentric.Engine.ILogging">
<summary>
Interface to abstract getting loggers
</summary>
</member>
<member name="M:TestCentric.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:TestCentric.Engine.InternalTraceLevel">
<summary>
InternalTraceLevel is an enumeration controlling the
level of detailed presented in the internal log.
</summary>
</member>
<member name="F:TestCentric.Engine.InternalTraceLevel.Default">
<summary>
Use the default settings as specified by the user.
</summary>
</member>
<member name="F:TestCentric.Engine.InternalTraceLevel.Off">
<summary>
Do not display any trace messages
</summary>
</member>
<member name="F:TestCentric.Engine.InternalTraceLevel.Error">
<summary>
Display Error messages only
</summary>
</member>
<member name="F:TestCentric.Engine.InternalTraceLevel.Warning">
<summary>
Display Warning level and higher messages
</summary>
</member>
<member name="F:TestCentric.Engine.InternalTraceLevel.Info">
<summary>
Display informational and higher messages
</summary>
</member>
<member name="F:TestCentric.Engine.InternalTraceLevel.Debug">
<summary>
Display debug messages and higher - i.e. all messages
</summary>
</member>
<member name="F:TestCentric.Engine.InternalTraceLevel.Verbose">
<summary>
Display debug messages and higher - i.e. all messages
</summary>
</member>
<member name="T:TestCentric.Engine.IProjectService">
<summary>
The IProjectService interface is implemented by ProjectService.
It knows how to load projects in a specific format and can expand
TestPackages based on projects.
</summary>
</member>
<member name="M:TestCentric.Engine.IProjectService.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:TestCentric.Engine.IProjectService.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="M:TestCentric.Engine.IProjectService.ExpandProjectPackage(TestCentric.Engine.TestPackage)">
<summary>
Expands a TestPackage based on a known project format, populating it
with the project contents and any settings the project provides.
Note that the package file path must be checked to ensure that it is
a known project format before calling this method.
</summary>
<param name="package">The TestPackage to be expanded</param>
</member>
<member name="T:TestCentric.Engine.IResultService">
<summary>
IResultWriterService provides result writers for a specified
well-known format.
</summary>
</member>
<member name="P:TestCentric.Engine.IResultService.Formats">
<summary>
Gets an array of the available formats
</summary>
</member>
<member name="M:TestCentric.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:TestCentric.Engine.IRuntimeFramework">
<summary>
Interface implemented by objects representing a runtime framework.
</summary>
</member>
<member name="P:TestCentric.Engine.IRuntimeFramework.Id">
<summary>
Gets the inique Id for this runtime, such as "net-4.5"
</summary>
</member>
<member name="P:TestCentric.Engine.IRuntimeFramework.DisplayName">
<summary>
Gets the display name of the framework, such as ".NET 4.5"
</summary>
</member>
<member name="P:TestCentric.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:TestCentric.Engine.IRuntimeFramework.ClrVersion">
<summary>
Gets the Version of the CLR for this framework
</summary>
</member>
<member name="P:TestCentric.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:TestCentric.Engine.IRuntimeFrameworkService">
<summary>
Implemented by a type that provides information about the
current and other available runtimes.
</summary>
</member>
<member name="M:TestCentric.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:TestCentric.Engine.IRuntimeFrameworkService.SelectRuntimeFramework(TestCentric.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:TestCentric.Engine.ServiceStatus">
<summary>
Enumeration representing the status of a service
</summary>
</member>
<member name="F:TestCentric.Engine.ServiceStatus.Stopped">
<summary>Service was never started or has been stopped</summary>
</member>
<member name="F:TestCentric.Engine.ServiceStatus.Started">
<summary>Started successfully</summary>
</member>
<member name="F:TestCentric.Engine.ServiceStatus.Error">
<summary>Service failed to start and is unavailable</summary>
</member>
<member name="T:TestCentric.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:TestCentric.Engine.IService.ServiceContext">
<summary>
The ServiceContext
</summary>
</member>
<member name="P:TestCentric.Engine.IService.Status">
<summary>
Gets the ServiceStatus of this service
</summary>
</member>
<member name="M:TestCentric.Engine.IService.StartService">
<summary>
Initialize the Service
</summary>
</member>
<member name="M:TestCentric.Engine.IService.StopService">
<summary>
Do any cleanup needed before terminating the service
</summary>
</member>
<member name="T:TestCentric.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
testcentric.engine.api assembly.
</summary>
</member>
<member name="M:TestCentric.Engine.IServiceLocator.GetService``1">
<summary>
Return a specified type of service
</summary>
</member>
<member name="M:TestCentric.Engine.IServiceLocator.GetService(System.Type)">
<summary>
Return a specified type of service
</summary>
</member>
<member name="T:TestCentric.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:TestCentric.Engine.ITestEngine.Services">
<summary>
Gets the IServiceLocator interface, which gives access to
certain services provided by the engine.
</summary>
</member>
<member name="P:TestCentric.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:TestCentric.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:TestCentric.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 testcentric.engine.api assembly are given a
pre-initialized instance of TestEngine. Programs
that link directly to testcentric.engine usually do so
in order to perform custom initialization.
</summary>
</member>
<member name="M:TestCentric.Engine.ITestEngine.GetRunner(TestCentric.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:TestCentric.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:TestCentric.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:TestCentric.Engine.ITestFilterBuilder">
<summary>
Interface to a TestFilterBuilder, which is used to create TestFilters
</summary>
</member>
<member name="M:TestCentric.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:TestCentric.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:TestCentric.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:TestCentric.Engine.ITestFilterService">
<summary>
The TestFilterService provides builders that can create TestFilters
</summary>
</member>
<member name="M:TestCentric.Engine.ITestFilterService.GetTestFilterBuilder">
<summary>
Get an uninitialized TestFilterBuilder
</summary>
</member>
<member name="T:TestCentric.Engine.ITestRun">
<summary>
The ITestRun class represents an ongoing test run.
</summary>
</member>
<member name="P:TestCentric.Engine.ITestRun.Result">
<summary>
Get the result of the test.
</summary>
<returns>An XmlNode representing the test run result</returns>
</member>
<member name="M:TestCentric.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:TestCentric.Engine.ITestRunner">
<summary>
Interface implemented by all test runners.
</summary>
</member>
<member name="P:TestCentric.Engine.ITestRunner.IsTestRunning">
<summary>
Get a flag indicating whether a test is running
</summary>
</member>
<member name="M:TestCentric.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:TestCentric.Engine.ITestRunner.Unload">
<summary>
Unload any loaded TestPackage. If none is loaded,
the call is ignored.
</summary>
</member>
<member name="M:TestCentric.Engine.ITestRunner.Reload">
<summary>
Reload the current TestPackage
</summary>
<returns>An XmlNode representing the loaded package.</returns>
</member>
<member name="M:TestCentric.Engine.ITestRunner.CountTestCases(TestCentric.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:TestCentric.Engine.ITestRunner.Run(TestCentric.Engine.ITestEventListener,TestCentric.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:TestCentric.Engine.ITestRunner.RunAsync(TestCentric.Engine.ITestEventListener,TestCentric.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:TestCentric.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:TestCentric.Engine.ITestRunner.Explore(TestCentric.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:TestCentric.Engine.TestEngineActivator">
<summary>
TestEngineActivator creates an instance of the test engine and returns an ITestEngine interface.
</summary>
</member>
<member name="M:TestCentric.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:TestCentric.Engine.NUnitEngineNotFoundException">Thrown when a test engine of the required minimum version is not found</exception>
<returns>An <see cref="T:TestCentric.Engine.ITestEngine"/></returns>
</member>
<member name="M:TestCentric.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:TestCentric.Engine.NUnitEngineNotFoundException">Thrown when a test engine of the required minimum version is not found</exception>
<returns>An <see cref="T:TestCentric.Engine.ITestEngine"/></returns>
</member>
<member name="T:TestCentric.Engine.TestFilter">
<summary>
Abstract base for all test filters. A filter is represented
by an XmlNode with <filter> 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:TestCentric.Engine.TestFilter.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:TestCentric.Engine.TestFilter"/> class.
</summary>
<param name="xmlText">The XML text that specifies the filter.</param>
</member>
<member name="F:TestCentric.Engine.TestFilter.Empty">
<summary>
The empty filter - one that always passes.
</summary>
</member>
<member name="P:TestCentric.Engine.TestFilter.Text">
<summary>
Gets the XML representation of this filter as a string.
</summary>
</member>
<member name="T:TestCentric.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:TestCentric.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:TestCentric.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:TestCentric.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="M:TestCentric.Engine.TestPackage.SetID(System.String)">
<summary>
Set the ID on a package that has already been created. This is separate from the
ID property itself because it's a temporary addition, necessitated by the way
projects work. It allows us to reload a project using a new config without changing
the test IDs. A broad engine API change may be needed to handle this correctly.
</summary>
<param name="id"></param>
</member>
<member name="P:TestCentric.Engine.TestPackage.Name">
<summary>
Gets the name of the package
</summary>
</member>
<member name="P:TestCentric.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:TestCentric.Engine.TestPackage.SubPackages">
<summary>
Gets the list of SubPackages contained in this package
</summary>
</member>
<member name="P:TestCentric.Engine.TestPackage.Settings">
<summary>
Gets the settings dictionary for this package.
</summary>
</member>
<member name="M:TestCentric.Engine.TestPackage.AddSubPackage(TestCentric.Engine.TestPackage)">
<summary>
Add a subproject to the package.
</summary>
<param name="subPackage">The subpackage to be added</param>
</member>
<member name="M:TestCentric.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:TestCentric.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:TestCentric.Engine.TestSelectionParserException">
<summary>
TestSelectionParserException is thrown when an error
is found while parsing the selection expression.
</summary>
</member>
<member name="M:TestCentric.Engine.TestSelectionParserException.#ctor(System.String)">
<summary>
Construct with a message
</summary>
</member>
<member name="M:TestCentric.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:TestCentric.Engine.TestSelectionParserException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serialization constructor
</summary>
</member>
</members>
</doc>
md5: E5A9849F39666814E4DFBD843C28BBC2 | sha1: 055A6FA6648FC92F76D49CB6CAD266F6406B2E03 | sha256: 257D0730C6DD7918E8BC499C791D948610EB341C2E5E99A45679814FDA641127 | sha512: 456A9C8D205C0FCFAD9DAA90CD4A2ED1EF0FF165944C8B421D5658D7473B7A69329C1ACB8D1487F8C9BE2F57CEA86393960594048A215F8F484819B2AA6ADAE5
<?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>
md5: 3F5674328EAE8CC76193A560E2BF190D | sha1: 54E5832CA0067C4AE641E127D9A74E0E60C472A0 | sha256: BA60BD4B1E36305292D1860CACE1BCF07F6564DD96E58FDB5F0F24A90158BCE8 | sha512: FCC9D0ABD4975A4B1063039EE96647EDCFE8778E6BBF43BD3A7175A4FFD7CC5DE2BD1A1B2C369D82D32956A06FEE12081168922D04A96E6D70BCC49284250482
<?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>
md5: 8FF07D2F969CDF4E0083860A119FDE87 | sha1: 8545B804067A3A0A46E3264E4CB980619AAD4960 | sha256: 93D709D248F4F45B430FA766235C9F6BD3A02061B8F764BD5356A400521587D2 | sha512: 8CA8915E9A73C779ACF3FE508EA5A20DF2FE08B836CAA0E604A3E4D040F4FB9A257DDA080E0B175C8198AB370CDD3FCACF00CF30AB2290E915147747C4E2B955
<?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>
md5: EF6A6D03474F23641FC466593B12AE22 | sha1: D392F66A95E010F4A90719E101E89CD8D22A9788 | sha256: 1436C81276107DD12D1654C011B83401EEE86041A88BE2ABC18A3F69161532BA | sha512: 404047AD291AF503765B40CC98EBF1A8F5EF01CBEDC64EA49402C2A640A34281938E446685F590F38FE1792C0A54F4C86A328E6979C3A7F6C498570307551FEF
<?xml version="1.0"?>
<doc>
<assembly>
<name>testcentric.engine.api</name>
</assembly>
<members>
<member name="T:TestCentric.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:TestCentric.Engine.NUnitEngineException.#ctor(System.String)">
<summary>
Construct with a message
</summary>
</member>
<member name="M:TestCentric.Engine.NUnitEngineException.#ctor(System.String,System.Exception)">
<summary>
Construct with a message and inner exception
</summary>
</member>
<member name="M:TestCentric.Engine.NUnitEngineException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serialization constructor
</summary>
</member>
<member name="T:TestCentric.Engine.NUnitEngineNotFoundException">
<summary>
The exception that is thrown if a valid test engine is not found
</summary>
</member>
<member name="M:TestCentric.Engine.NUnitEngineNotFoundException.#ctor">
<summary>
Initializes a new instance of the <see cref="T:TestCentric.Engine.NUnitEngineNotFoundException"/> class.
</summary>
</member>
<member name="M:TestCentric.Engine.NUnitEngineNotFoundException.#ctor(System.Version)">
<summary>
Initializes a new instance of the <see cref="T:TestCentric.Engine.NUnitEngineNotFoundException"/> class.
</summary>
<param name="minVersion">The minimum version.</param>
</member>
<member name="T:TestCentric.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:TestCentric.Engine.NUnitEngineUnloadException.#ctor(System.String)">
<summary>
Construct with a message
</summary>
</member>
<member name="M:TestCentric.Engine.NUnitEngineUnloadException.#ctor(System.String,System.Exception)">
<summary>
Construct with a message and inner exception
</summary>
</member>
<member name="M:TestCentric.Engine.NUnitEngineUnloadException.#ctor(System.Collections.Generic.ICollection{System.Exception})">
<summary>
Construct with a message and a collection of exceptions.
</summary>
</member>
<member name="M:TestCentric.Engine.NUnitEngineUnloadException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serialization constructor.
</summary>
</member>
<member name="P:TestCentric.Engine.NUnitEngineUnloadException.AggregatedExceptions">
<summary>
Gets the collection of exceptions .
</summary>
</member>
<member name="T:TestCentric.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:TestCentric.Engine.Extensibility.ExtensionAttribute.#ctor">
<summary>
Initializes a new instance of the <see cref="T:TestCentric.Engine.Extensibility.ExtensionAttribute"/> class.
</summary>
</member>
<member name="P:TestCentric.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:TestCentric.Engine.Extensibility.ExtensionAttribute.Description">
<summary>
An optional description of what the extension does.
</summary>
</member>
<member name="P:TestCentric.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:TestCentric.Engine.Extensibility.ExtensionAttribute.EngineVersion">
<summary>
The minimum Engine version for which this extension is designed
</summary>
</member>
<member name="T:TestCentric.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:TestCentric.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:TestCentric.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:TestCentric.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:TestCentric.Engine.Extensibility.ExtensionPointAttribute.Description">
<summary>
An optional description of the purpose of the ExtensionPoint
</summary>
</member>
<member name="T:TestCentric.Engine.Extensibility.ExtensionPropertyAttribute">
<summary>
The ExtensionPropertyAttribute is used to specify named properties for an extension.
</summary>
</member>
<member name="M:TestCentric.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:TestCentric.Engine.Extensibility.ExtensionPropertyAttribute.Name">
<summary>
The name of the property.
</summary>
</member>
<member name="P:TestCentric.Engine.Extensibility.ExtensionPropertyAttribute.Value">
<summary>
The property value
</summary>
</member>
<member name="T:TestCentric.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:TestCentric.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:TestCentric.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:TestCentric.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:TestCentric.Engine.Extensibility.IExtensionNode.TypeName">
<summary>
Gets the full name of the Type of the extension object.
</summary>
</member>
<member name="P:TestCentric.Engine.Extensibility.IExtensionNode.Enabled">
<summary>
Gets a value indicating whether this <see cref="T:TestCentric.Engine.Extensibility.IExtensionNode"/> is enabled.
</summary>
<value><c>true</c> if enabled; otherwise, <c>false</c>.</value>
</member>
<member name="P:TestCentric.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:TestCentric.Engine.Extensibility.IExtensionNode.Description">
<summary>
Gets an optional description of what the extension does.
</summary>
</member>
<member name="P:TestCentric.Engine.Extensibility.IExtensionNode.TargetFramework">
<summary>
The TargetFramework of the extension assembly.
</summary>
</member>
<member name="P:TestCentric.Engine.Extensibility.IExtensionNode.PropertyNames">
<summary>
Gets a collection of the names of all this extension's properties
</summary>
</member>
<member name="M:TestCentric.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:TestCentric.Engine.Extensibility.IExtensionNode.AssemblyPath">
<summary>
The path to the assembly implementing this extension.
</summary>
</member>
<member name="P:TestCentric.Engine.Extensibility.IExtensionNode.AssemblyVersion">
<summary>
The version of the assembly implementing this extension.
</summary>
</member>
<member name="T:TestCentric.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:TestCentric.Engine.Extensibility.IExtensionPoint.Path">
<summary>
Gets the unique path identifying this extension point.
</summary>
</member>
<member name="P:TestCentric.Engine.Extensibility.IExtensionPoint.Description">
<summary>
Gets the description of this extension point. May be null.
</summary>
</member>
<member name="P:TestCentric.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:TestCentric.Engine.Extensibility.IExtensionPoint.Extensions">
<summary>
Gets an enumeration of IExtensionNodes for extensions installed on this extension point.
</summary>
</member>
<member name="T:TestCentric.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:TestCentric.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:TestCentric.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:TestCentric.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:TestCentric.Engine.Extensibility.IFrameworkDriver.Run(TestCentric.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:TestCentric.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:TestCentric.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:TestCentric.Engine.Extensibility.IProject">
<summary>
Interface for the various project types that the engine can load.
</summary>
</member>
<member name="P:TestCentric.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:TestCentric.Engine.Extensibility.IProject.ActiveConfigName">
<summary>
Gets the active configuration, as defined
by the particular project.
</summary>
</member>
<member name="P:TestCentric.Engine.Extensibility.IProject.ConfigNames">
<summary>
Gets a list of the configs for this project
</summary>
</member>
<member name="M:TestCentric.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:TestCentric.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:TestCentric.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:TestCentric.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:TestCentric.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:TestCentric.Engine.Extensibility.IResultWriter">
<summary>
Common interface for objects that process and write out test results
</summary>
</member>
<member name="M:TestCentric.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:TestCentric.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:TestCentric.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:TestCentric.Engine.Extensibility.TypeExtensionPointAttribute">
<summary>
TypeExtensionPointAttribute is used to bind an extension point
to a class or interface.
</summary>
</member>
<member name="M:TestCentric.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:TestCentric.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:TestCentric.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:TestCentric.Engine.Extensibility.TypeExtensionPointAttribute.Description">
<summary>
An optional description of the purpose of the ExtensionPoint
</summary>
</member>
<member name="T:TestCentric.Engine.IAvailableRuntimes">
<summary>
Interface that returns a list of available runtime frameworks.
</summary>
</member>
<member name="P:TestCentric.Engine.IAvailableRuntimes.AvailableRuntimes">
<summary>
Gets a list of available runtime frameworks.
</summary>
</member>
<member name="T:TestCentric.Engine.IExtensionService">
<summary>
The IExtensionService interface allows a runner to manage extensions.
</summary>
</member>
<member name="P:TestCentric.Engine.IExtensionService.ExtensionPoints">
<summary>
Gets an enumeration of all ExtensionPoints in the engine.
</summary>
</member>
<member name="P:TestCentric.Engine.IExtensionService.Extensions">
<summary>
Gets an enumeration of all installed Extensions.
</summary>
</member>
<member name="M:TestCentric.Engine.IExtensionService.GetExtensionPoint(System.String)">
<summary>
Get an ExtensionPoint based on its unique identifying path.
</summary>
</member>
<member name="M:TestCentric.Engine.IExtensionService.GetExtensionNodes(System.String)">
<summary>
Get an enumeration of ExtensionNodes based on their identifying path.
</summary>
</member>
<member name="M:TestCentric.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:TestCentric.Engine.ILogger">
<summary>
Interface for logging within the engine
</summary>
</member>
<member name="M:TestCentric.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:TestCentric.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:TestCentric.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:TestCentric.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:TestCentric.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:TestCentric.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:TestCentric.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:TestCentric.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:TestCentric.Engine.ILogging">
<summary>
Interface to abstract getting loggers
</summary>
</member>
<member name="M:TestCentric.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:TestCentric.Engine.InternalTraceLevel">
<summary>
InternalTraceLevel is an enumeration controlling the
level of detailed presented in the internal log.
</summary>
</member>
<member name="F:TestCentric.Engine.InternalTraceLevel.Default">
<summary>
Use the default settings as specified by the user.
</summary>
</member>
<member name="F:TestCentric.Engine.InternalTraceLevel.Off">
<summary>
Do not display any trace messages
</summary>
</member>
<member name="F:TestCentric.Engine.InternalTraceLevel.Error">
<summary>
Display Error messages only
</summary>
</member>
<member name="F:TestCentric.Engine.InternalTraceLevel.Warning">
<summary>
Display Warning level and higher messages
</summary>
</member>
<member name="F:TestCentric.Engine.InternalTraceLevel.Info">
<summary>
Display informational and higher messages
</summary>
</member>
<member name="F:TestCentric.Engine.InternalTraceLevel.Debug">
<summary>
Display debug messages and higher - i.e. all messages
</summary>
</member>
<member name="F:TestCentric.Engine.InternalTraceLevel.Verbose">
<summary>
Display debug messages and higher - i.e. all messages
</summary>
</member>
<member name="T:TestCentric.Engine.IProjectService">
<summary>
The IProjectService interface is implemented by ProjectService.
It knows how to load projects in a specific format and can expand
TestPackages based on projects.
</summary>
</member>
<member name="M:TestCentric.Engine.IProjectService.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:TestCentric.Engine.IProjectService.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="M:TestCentric.Engine.IProjectService.ExpandProjectPackage(TestCentric.Engine.TestPackage)">
<summary>
Expands a TestPackage based on a known project format, populating it
with the project contents and any settings the project provides.
Note that the package file path must be checked to ensure that it is
a known project format before calling this method.
</summary>
<param name="package">The TestPackage to be expanded</param>
</member>
<member name="T:TestCentric.Engine.IResultService">
<summary>
IResultWriterService provides result writers for a specified
well-known format.
</summary>
</member>
<member name="P:TestCentric.Engine.IResultService.Formats">
<summary>
Gets an array of the available formats
</summary>
</member>
<member name="M:TestCentric.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:TestCentric.Engine.IRuntimeFramework">
<summary>
Interface implemented by objects representing a runtime framework.
</summary>
</member>
<member name="P:TestCentric.Engine.IRuntimeFramework.Id">
<summary>
Gets the inique Id for this runtime, such as "net-4.5"
</summary>
</member>
<member name="P:TestCentric.Engine.IRuntimeFramework.DisplayName">
<summary>
Gets the display name of the framework, such as ".NET 4.5"
</summary>
</member>
<member name="P:TestCentric.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:TestCentric.Engine.IRuntimeFramework.ClrVersion">
<summary>
Gets the Version of the CLR for this framework
</summary>
</member>
<member name="P:TestCentric.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:TestCentric.Engine.IRuntimeFrameworkService">
<summary>
Implemented by a type that provides information about the
current and other available runtimes.
</summary>
</member>
<member name="M:TestCentric.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:TestCentric.Engine.IRuntimeFrameworkService.SelectRuntimeFramework(TestCentric.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:TestCentric.Engine.ServiceStatus">
<summary>
Enumeration representing the status of a service
</summary>
</member>
<member name="F:TestCentric.Engine.ServiceStatus.Stopped">
<summary>Service was never started or has been stopped</summary>
</member>
<member name="F:TestCentric.Engine.ServiceStatus.Started">
<summary>Started successfully</summary>
</member>
<member name="F:TestCentric.Engine.ServiceStatus.Error">
<summary>Service failed to start and is unavailable</summary>
</member>
<member name="T:TestCentric.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:TestCentric.Engine.IService.ServiceContext">
<summary>
The ServiceContext
</summary>
</member>
<member name="P:TestCentric.Engine.IService.Status">
<summary>
Gets the ServiceStatus of this service
</summary>
</member>
<member name="M:TestCentric.Engine.IService.StartService">
<summary>
Initialize the Service
</summary>
</member>
<member name="M:TestCentric.Engine.IService.StopService">
<summary>
Do any cleanup needed before terminating the service
</summary>
</member>
<member name="T:TestCentric.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
testcentric.engine.api assembly.
</summary>
</member>
<member name="M:TestCentric.Engine.IServiceLocator.GetService``1">
<summary>
Return a specified type of service
</summary>
</member>
<member name="M:TestCentric.Engine.IServiceLocator.GetService(System.Type)">
<summary>
Return a specified type of service
</summary>
</member>
<member name="T:TestCentric.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:TestCentric.Engine.ITestEngine.Services">
<summary>
Gets the IServiceLocator interface, which gives access to
certain services provided by the engine.
</summary>
</member>
<member name="P:TestCentric.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:TestCentric.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:TestCentric.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 testcentric.engine.api assembly are given a
pre-initialized instance of TestEngine. Programs
that link directly to testcentric.engine usually do so
in order to perform custom initialization.
</summary>
</member>
<member name="M:TestCentric.Engine.ITestEngine.GetRunner(TestCentric.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:TestCentric.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:TestCentric.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:TestCentric.Engine.ITestFilterBuilder">
<summary>
Interface to a TestFilterBuilder, which is used to create TestFilters
</summary>
</member>
<member name="M:TestCentric.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:TestCentric.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:TestCentric.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:TestCentric.Engine.ITestFilterService">
<summary>
The TestFilterService provides builders that can create TestFilters
</summary>
</member>
<member name="M:TestCentric.Engine.ITestFilterService.GetTestFilterBuilder">
<summary>
Get an uninitialized TestFilterBuilder
</summary>
</member>
<member name="T:TestCentric.Engine.ITestRun">
<summary>
The ITestRun class represents an ongoing test run.
</summary>
</member>
<member name="P:TestCentric.Engine.ITestRun.Result">
<summary>
Get the result of the test.
</summary>
<returns>An XmlNode representing the test run result</returns>
</member>
<member name="M:TestCentric.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:TestCentric.Engine.ITestRunner">
<summary>
Interface implemented by all test runners.
</summary>
</member>
<member name="P:TestCentric.Engine.ITestRunner.IsTestRunning">
<summary>
Get a flag indicating whether a test is running
</summary>
</member>
<member name="M:TestCentric.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:TestCentric.Engine.ITestRunner.Unload">
<summary>
Unload any loaded TestPackage. If none is loaded,
the call is ignored.
</summary>
</member>
<member name="M:TestCentric.Engine.ITestRunner.Reload">
<summary>
Reload the current TestPackage
</summary>
<returns>An XmlNode representing the loaded package.</returns>
</member>
<member name="M:TestCentric.Engine.ITestRunner.CountTestCases(TestCentric.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:TestCentric.Engine.ITestRunner.Run(TestCentric.Engine.ITestEventListener,TestCentric.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:TestCentric.Engine.ITestRunner.RunAsync(TestCentric.Engine.ITestEventListener,TestCentric.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:TestCentric.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:TestCentric.Engine.ITestRunner.Explore(TestCentric.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:TestCentric.Engine.TestEngineActivator">
<summary>
TestEngineActivator creates an instance of the test engine and returns an ITestEngine interface.
</summary>
</member>
<member name="M:TestCentric.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:TestCentric.Engine.NUnitEngineNotFoundException">Thrown when a test engine of the required minimum version is not found</exception>
<returns>An <see cref="T:TestCentric.Engine.ITestEngine"/></returns>
</member>
<member name="M:TestCentric.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:TestCentric.Engine.NUnitEngineNotFoundException">Thrown when a test engine of the required minimum version is not found</exception>
<returns>An <see cref="T:TestCentric.Engine.ITestEngine"/></returns>
</member>
<member name="T:TestCentric.Engine.TestFilter">
<summary>
Abstract base for all test filters. A filter is represented
by an XmlNode with <filter> 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:TestCentric.Engine.TestFilter.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:TestCentric.Engine.TestFilter"/> class.
</summary>
<param name="xmlText">The XML text that specifies the filter.</param>
</member>
<member name="F:TestCentric.Engine.TestFilter.Empty">
<summary>
The empty filter - one that always passes.
</summary>
</member>
<member name="P:TestCentric.Engine.TestFilter.Text">
<summary>
Gets the XML representation of this filter as a string.
</summary>
</member>
<member name="T:TestCentric.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:TestCentric.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:TestCentric.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:TestCentric.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="M:TestCentric.Engine.TestPackage.SetID(System.String)">
<summary>
Set the ID on a package that has already been created. This is separate from the
ID property itself because it's a temporary addition, necessitated by the way
projects work. It allows us to reload a project using a new config without changing
the test IDs. A broad engine API change may be needed to handle this correctly.
</summary>
<param name="id"></param>
</member>
<member name="P:TestCentric.Engine.TestPackage.Name">
<summary>
Gets the name of the package
</summary>
</member>
<member name="P:TestCentric.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:TestCentric.Engine.TestPackage.SubPackages">
<summary>
Gets the list of SubPackages contained in this package
</summary>
</member>
<member name="P:TestCentric.Engine.TestPackage.Settings">
<summary>
Gets the settings dictionary for this package.
</summary>
</member>
<member name="M:TestCentric.Engine.TestPackage.AddSubPackage(TestCentric.Engine.TestPackage)">
<summary>
Add a subproject to the package.
</summary>
<param name="subPackage">The subpackage to be added</param>
</member>
<member name="M:TestCentric.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:TestCentric.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:TestCentric.Engine.TestSelectionParserException">
<summary>
TestSelectionParserException is thrown when an error
is found while parsing the selection expression.
</summary>
</member>
<member name="M:TestCentric.Engine.TestSelectionParserException.#ctor(System.String)">
<summary>
Construct with a message
</summary>
</member>
<member name="M:TestCentric.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:TestCentric.Engine.TestSelectionParserException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serialization constructor
</summary>
</member>
</members>
</doc>
md5: 43520D06F39DA56B8E374547EC4BBC12 | sha1: 793F2C043F32759BF87A3B16C451146B88838159 | sha256: FF34D3E7BD842D67C838F8266B203FBE9E9F18FD4CD0DF96FE0CAEAB8DFE5F9F | sha512: 3B3374DE8B15F694AD0F19871D2DCF1476505DF33D1CD3AC42413507139DA46867BF1F5BED5221B90E01FBCE4AB481BE538AAFD98D0C4F9D96B66D5A718DD2F9
TestCentric Runner for NUnit 1.3.1 - March 6, 2020
This release corrects a critical problem in the 1.3.0 release. None of the
1.3.0 packages included agents for use under .NET 4.0 and higher. This
release adds those agents.
Issues Resolved
* 535 FIXED: Cannot load test assembly after 1.3 update
* 536 Restructuring the build.cake script
* 537 FIXED: Missing files in Release 1.3.0
* 538 Add package checking tasks to build
TestCentric Runner for NUnit 1.3.0 - February 23, 2020
General
* A NuGet package is now available on nuget.org. While we continue to
recommend use of the chocolatey.org package for most developers, because
it provides a central installation point for use with all projects, a
number of users requested a nuget package as well.
NOTE: Whichever installation package you use, you should install any
needed extensions using the same package source.
GUI
* The runtime selection menu is now disabled when tests are being run in
process, since no other runtime is available within the GUI process.
Engine
* The UserSettings service is no longer part of the engine but is handled
directly in the GUI. This is not considered a breaking change, since
the engine is not yet released separately from the GUI.
* A new PackageSettings service has been added to the engine. Its job
is to analyze all packages, examine assemblies and set default
parameters for executing them.
* A pair of agents are provided for .NET 4.0 in addition to the existing
.NET 2.0 agents. In addition, the engine is now built for both runtimes
and agents use the appropriate version. The GUI itself uses the 4.0 engine.
Issues Resolved
* 457 Remove UserSettings from the engine
* 466 Update Copyright headers in all files
* 475 Engine Tests will only run in process under GUI
* 476 Eliminate use of Mono.Cecil from engine core assembly
* 479 Refactor RuntimeFramework to eliminate unneeded selection options
* 480 Determine versions of .NET Core we want to support.
* 483 Disable Runtime menu when running in process
* 487 Determine supported platforms for the engine.
* 488 Integrate engine build output
* 489 Run tests for .NET Core
* 499 Engine Tests don't run under .NET Core 2.1
* 502 Create new Service to manage PackageSettings
* 505 Reorganize output to allow agents for various runtimes and both 32-bit and 64-bit execution
* 513 Modify logic of TestAgency to initiate correct agents
* 514 Upgrade engine to target .NET 4.0
* 517 Net40 engine.core build
* 518 Create agent process executable for .NET Framework 4.0 and higher
* 522 Update nuget and chocolatey packages
* 523 Create a nuget package for the GUI
* 528 Chocolatey package should use TestCentric icon
* 526 Update nuget package
* 531 Create tasks in build script for publishing packages
TestCentric Runner for NUnit 1.2.0 - December 17, 2019
This release is primarily marked by the elimination of our
dependency on the NUnit Engine in preparation for moving
forward with features that require engine changes.
GUI
* Inprocess test execution has been deprecated
Experimental GUI
* The GUI font may be changed from the View menu
* One or more files may be added to those open
* Rerun on Change has been implemented
Test Model
Engine
* We now use the TestCentric Engine, Version 0.1, replacing the NUnit Engine.
The new engine is based on the NUnit 3.11 engine, with modifications.
* Engine recognizes and runs assemblies that target .NET Framework 4.6 and up.
* Engine now recognizes .NET Core assemblies and gives an error message
if the user attempts to open one.
* The RecentFilesService is no longer available.
Issues Resolved
* 215 Experimental GUI: Allow setting the gui font
* 217 Experimental GUI: Add files to those already open
* 233 Experimental GUI: Rerun on Change
* 426 Switch to use of separate TestCentric Engine build
* 445 Better error message when attempting to load .NET Core assemblies
* 447 FIXED: Engine will not recognize .NET Framework versions beyond 4.5
* 449 FIXED: GUI window doesn't retain size between runs
* 454 Deprecate in-process execution
* 455 Remove RecentFilesService from engine
* 456 Rename engine to testcentric engine
* 461 Convert all projects to use Package References
* 470 Remove deprecated "Single" option for ProcessModel
* 473 Establish Initial Version for TestCentric engine
TestCentric Runner for NUnit 1.1.0 - November 9, 2019
General
This release includes new features beyond the 1.0 release, together with some bug fixes.
Features
* The configuration to be loaded may be specified in the GUI.
* A new dialog allows setting parameters for the test run.
* Test Results may be saved in any format for which an extension has been installed.
* Additional test label options are supported.
* The GUI uses a custom build of the latest version of the NUnit engine.
* Includes version 0.16 of the experimental GUI.
Issues Resolved
* 4 Save test results in alternative formats
* 77 Setting up test parameters from gui
* 193 Experimental GUI: Passing parameters from GUI to Tests
* 216 Experimental GUI: Set project configuration to use
* 275 Add --debug-agent option to the TestCentric GUI
* 276 Deprecate old nunit-gui application on Chocolatey
* 315 Reorganize Settings
* 340 FIXED: Unable to run selected NUnit V2 tests
* 347 Add TextOutput labelling of final test result
* 372 Add command line option for specifying results file location
* 394 Update engine
* 395 Display version and path of loaded extensions
* 397 Fix unhandled NullReferenceException thrown when test fails with Assert.Fail()
* 399 Show the test assembly name in the main view's title bar.
* 402 Set Project Configuration to use
* 406 FIXED: Appveyor rebuild causes error
* 412 Update link to Chocolatey package
* 414 FIXED: Testcentric.exe needs icon
* 415 Better installation documentation
* 424 Use common dialog for extensions
* 427 Ensure that agent exes are copied as part of building the project
* 430 FIXED: Index out of range exception when adding a test file
* 432 FIXED: TestParametersDialog enables Remove and Edit on startup
TestCentric Runner for NUnit 1.0.1 - August 15, 2019
General
This release fixes a critical error discovered after the release of 1.0.0.
Features
* Includes version 0.15.1 of the experimental GUI
Issues Resolved
* 325 Deploy development builds automatically
* 380 Automate testing of packages
* 388 FIXED: NUnit process with multiple assemblies will not load
TestCentric Runner for NUnit 1.0.0 - July 27, 2019
General
This is the final release of version 1.0 of the TestCentric Runner for NUnit, which is
primarily based on the layout and feature set of the original NUnit V2 GUI runner with
internals modified so as to run NUnit3 tests. Certain changes were made because of
differences in how NUnit3 works and are described below under Features.
This new GUI runner was created by the TestCentric team: Charlie Poole, Mikkel Bundgaard,
Manfred Lange, Stefano Nuzzo and Robert Snyder. Community members who contributed code to
this release include Jeff Kryzer, zBrianW, Joseph Musser and Mattias Karlsson. Countless
other folks contributed by filing issues, asking questions and making suggestions.
Features
* TestCentric relies on the NUnit engine to load and run tests. Features that require
an engine extension are only available if the appropriate extension is installed. In
particular, this includes the ability to open both NUnit and Visual Studio projects,
run NUNit V2 tests and save results in V2 format.
* All direct access to NUnit project contents, such as editing, saving and adding
configurations, has been removed. The user should use a separate editor such as
the NUnit Project Editor to perform those tasks.
* Because the GUI runs under .NET 4.5 or higher, any tests that you cause to execute
in-process will run under that version of the framework. In some cases, this may give
different results. By default, tests are run in a separate process and use the target
framework for which they were built. We recommend you stick with the default.
* The File menu no longer has entries for Load Fixture or Clear Fixture. New menu
items to select Process and AppDomain options for loading have been added and the
corresponding Settings pages removed.
* The Project top level menu has been removed since it was mostly used to contain
entries related to NUnit projects. The "Add Projects" entry has been replaced by
"Add Files" on the File menu.
* The Tools menu no longer has entries for Exception Details or Test Assemblies.
The Open Log Directory entry has been replaced with Open Work Directory.
* The Result Tabs (Errors and Failures, Tests Not Run, and Text Output) may no
longer be hidden. The Text Output tab only displays Console output and the ability
to tailor it's contents has been removed with the exception of the option to label
tests by name in various ways.
* Version 0.15 of the Experimental GUI is included.
Known Problems
* TestCentric uses the test id to select individual tests to be run. This is not
currently supported by the V2 framework driver, which throws an exception when
an id filter is encountered. The result for the GUI is that it is not possible
to select individual tests for execution if any V2 framework tests are loaded.
For that reason, we recommend that you only use this release for NUnit 3 tests.
This problem will be fixed when a new version of the V2 driver is available,
which includes support for an id filter.
Issues Resolved
* 7 Credit for all contributors
* 8 Icon and Logo for TestCentric
* 224 FIXED: Appveyor build doesn't use generated identifier to tag packages
* 375 Clean up GUI About box
* 378 Ensure that error message displays when exception is thrown in engine
TestCentric Runner for NUnit 1.0.0-Beta4 - July 17, 2019
General
This is the fourth beta release of the TestCentric Runner for NUnit. While it is still beta,
it is feature-complete. Since the actual execution of tests is done by the NUnit engine
rather than the GUI itself, it's probably reasonable for developers to use this on the
desktop, provided their CI is based on a stable production-level NUnit runner, such as
the NUnit 3 Console Runner or the NUnit 3 VS adapter.
Features
* Version 0.14 of the Experimental GUI is included.
Issues Resolved
* 368 FIXED: Arguments to --process option for GUI don't match NUnit console.
* 369 Merge Options classes for two GUIs and move to common assembly.
* 370 FIXED: Beta3: unhandled .net exception
TestCentric Runner for NUnit 1.0.0-Beta3 - July 14, 2019
General
This is the third beta release of the TestCentric Runner for NUnit. While it is still beta,
it is feature-complete. Since the actual execution of tests is done by the NUnit engine
rather than the GUI itself, it's probably reasonable for developers to use this on the
desktop, provided their CI is based on a stable production-level NUnit runner, such as
the NUnit 3 Console Runner or the NUnit 3 VS adapter.
Features
* Version 0.13 of the Experimental GUI is included.
* Added command-line options --process, --domain, --inprocess, --x86 and --agents.
Issues Resolved
* 139 FIXED: Stop Button to interrupt infinite loop
* 287 Assembly or project full name not shown
* 337 FIXED: Stopping a long running test from TestCentric gui does not stop right away
* 350 FIXED: Installed Extensions fields not cleared
* 352 Incorporate NUnit Engine as a subtree
* 357 Review whether File menu settings should be saved
* 358 FIXED: Assemblies Running in Parallel (Regardless of Settings)
* 361 FIXED: Process Model setting includes Single rather than Separate
* 364 FIXED: Experimental GUI: Proper icons are not displayed for warnings and failures
TestCentric Runner for NUnit 1.0.0-Beta2 - May 30, 2019
General
This is the second beta release of the TestCentric Runner for NUnit. While it is still beta,
it is feature-complete. Since the actual execution of tests is done by the NUnit engine
rather than the GUI itself, it's probably reasonable for developers to use this on the
desktop, provided their CI is based on a stable production-level NUnit runner, such as
the NUnit 3 Console Runner or the NUnit 3 VS adapter.
Features
* Version 0.12 of the Experimental GUI is included with support for user-defined icons
and immediate text output display.
Issues Resolved
* 5 Add online docs for the GUI
* 229 Experimental GUI: Multiple and user-defined tree icons
* 236 Experimental GUI: missing test output
* 326 Update CONTRIBUTING.md
* 328 FIXED: Reloading loads the assembly multiple times
* 327 Document how TestCentric GUI is versioned
* 333 FIXED: InvalidOperationException is thrown from RunStarting event handler
* 336 FIXED: In TestCentric gui, Selected Categories are cleared on Reload
* 345 Show names of settings in Text Output settings dialog
TestCentric Runner for NUnit 1.0.0-Beta - April 13, 2019
General
This is the beta release of the TestCentric Runner for NUnit. While it is still beta,
it is feature-complete. Since the actual execution of tests is done by the NUnit engine
rather than the GUI itself, it's probably reasonable for developers to use this on the
desktop, provided their CI is based on a stable production-level NUnit runner, such as
the NUnit 3 Console Runner or the NUnit 3 VS adapter.
Features
* Version 0.11 of the Experimental GUI is included with support for saving test results,
reload on change and reload on run.
Issues Resolved
22 Create new signing key for TestCentric
212 Experimental GUI: Need SaveResults menu item
213 Experimental GUI: Reload on change
226 Display time in a more natural format
232 Experimental GUI: Reload on Run
306 FIXED: Save TestResult Dialog not initialized correctly
318 Disable ReRun on Change setting
TestCentric Runner for NUnit 1.0.0-Alpha4 - April 5, 2019
General
This is the fourth alpha release of the TestCentric Runner for NUnit. It is not yet recommended
for use in production work.
Features
* Entries now appear in the tree display for any projects loaded
* The GUI now uses a custom built version of the engine, based on the NUnit 3.10 engine.
Issues Resolved
164 Update NSubstitute to version 4.0
241 Terminate nunit-agent.exe / nunit-agent-x86.exe once they are no longer in use
273 FIXED: No project elements are present in the test XML received from the engine
285 FIXED: NUnit Agent locks dll
288 FIXED: Property dialog not showing assembly process id or appdomain name
290 Need a way to locate and examine log files
292 Remove project editor integration
294 Document differences from the NUnit V2 GUI
299 FIXED: Choosing "Run as X86" from menu doesn't actually load the X86 agent.
301 FIXED Tree icons of previous run do not clear when starting second run
304 FIXED Use new 3.10 release of NUnit engine
TestCentric Runner for NUnit 1.0.0-Alpha3 - February 27, 2019
General
This is the third alpha release of the TestCentric Runner for NUnit. It is not yet recommended
for use in production work.
Features
* The Experimental GUI, which was previously a separate project, is now included along with the standard TestCentric GUI.
* Assemblies and projects are now loadable using all process and domain settings.
* Process and domain settings are now part of the File menu.
* A custom engine build is included while waiting for the next NUnit engine release.
* The zip and chocolatey packagegs now include pdb files.
Issues Resolved
18 FIXED: Reload on Change not working
138 Double click test to start it
153 Changing font should affect status bar
154 FIXED: When opening solution file non-test assemblies cause an error message
155 FIXED: Redundant menu items under View | Tree
156 FIXED: Changing checkbox setting should not change default
159 FIXED: Project name not shown in tree
161 Create separate GUI Components assembly
163 Create Linux build.
165 Review and merge build script with experimental GUI script
170 Review and merge components assembly
175 FIXED: Start and stop button are misaligned
178 Status Bar height should adjust to font
182 Integrate ToolStripItem and ToolStripMenuItem Elements
185 FIXED: Not building Mono 5.10 or 4.6 under Travis
189 Merge experimental GUI into standard GUI project
238 FIXED: Categories on test fixtures not considered in test list design (Experimental)
251 Show file names when loading
253 FIXED: Add file to open files is broken
256 Use DialogManager to display open and save dialogs
257 FIXED: Error on reload when running in process
261 Run tests under 3.9 console runner
263 FIXED: Cannot load nunit test solution in process
264 Use custom build of NUnit engine
269 FIXED: No option to run using default process model or domain usage
274 Eliminate Default Setting Page for process model and domain usage
278 Include pdb files in packages
279 Remove engine version hack in build script
TestCentric Runner for NUnit 1.0.0-Alpha2 - November 11, 2018
General
This is the second alpha release of the TestCentric Runner for NUnit. It is not yet recommended
for use in production work.
Features
* The GUI now uses the NUnit 3.9 engine
* Reloading on each Run is now functional.
* Alternate images for the tree are now implemented.
* Saving and Restoring the visual state is now implemented.
Issues Resolved
12 Use UpDown counter for number of recent files to display
15 FIXED: Alternate Tree Images not working
21 FIXED: Disabling Shadow Copy is Ignored
76 FIXED: Exception "Cross-thread operation not valid: Control 'progressBar' accessed from a thread other than the thread it was created on."
93 FIXED: NRE when starting the GUI
95 Implement MVP for main form and sub-views
99 FIXED: Scrolling not working correctly for ErrorDisplay
100 Don't display "Test-Run" as root node in tree with only one assembly
115 FIXED: Zero Length VisualState.xml file results in exception
132 Create TestCentric.Common assembly
144 Update NUnit Engine to 3.9
TestCentric Runner for NUnit 1.0.0-Alpha1 - August 3, 2018
General
This is the initial alpha release of the TestCentric Runner for NUnit. It is not yet recommended
for use in production work.
Features
This GUI runner resembles the NUnit V2 GUI, but since it runs NUnit 3 tests the internal implementation
is entirely new. In addition, features not available or not easily supported in NUnit 3 have been
removed. Some key differences from the V2 GUI are...
* The GUI itself targets .NET 4.5, rather than 2.0.
* We use chocolatey as the primary distribution method for the GUI. This makes extensions that are
also installed through chocolatey available when running under the GUI. A zip file is also provided.
* Displaying tests as a flat list of fixtures is not supported.
* Merging tests in the same namespace across assemblies is not supported.
* The GUI no longer understands the layout of NUnit project files, which is taken care of by the
NUnit test engine. Consequently, menu items relating to creating, editiong and saving such files
are no longer present.
* The ability to open project files, including NUnit and VS projects, is dependent on the presence
of the approprate engine extensions, which are not bundled with the GUI.
Issues Resolved
1 Select Target Framework for the GUI
2 Review of Initial Upload
9 Update the About box
10 Correct name for program in --help option
13 FIXED: Number of Recent Files has no effect
14 FIXED: Tree always cleared of results on reload
16 FIXED: Flat list of TestFixtures not working
17 FIXED: Reload on Run not working
19 FIXED: Principal Policy not working
20 FIXED: InternalTrace level not honored
24 FIXED: Setting number of agents has no effect
26 FIXED: Clear Results Setting is on wrong page
27 Create CI Build Script
28 FIXED: "Clear All" and "Check Failed" has no effect
29 FIXED: "Run" context menu is never enabled
32 Renaming test-centric to testcentric
33 Restore Tree-based Setting Dialog
39 FIXED: Cannot run the tests in TestCentric.Gui.Model.Tests.dll more than once
42 FIXED: Not possible to run explicit tests using the GUI
50 Review and reorganize Settings for NUnit 3
52 FIXED: Show CheckBoxes throws NRE
61 Disable or remove non-functional elements on Settings pages
62 FIXED: Switching between full and mini gui display doesn't happen immediately
63 FIXED: Check files exist setting has no effect
64 Better error message when an assembly is not found
66 FIXED: Project editor menu item not working.
67 FIXED: Show Checkboxes menu and settings elements are inconsistent
68 Save results menu should be disabled when no test has been run
71 FIXED: Multiple files on command-line or in file open dialog not opened
73 Multiple loaded files have no root in tree
80 Standardize naming of TestCentric packages and executables
83 Update tests to use NUnit 3.10.1
md5: 2373959173DAFC6615D782A5E8D1EC15 | sha1: C2BAEEFC716EDAED34838BCA3B52DD43076FBF01 | sha256: 5D237BD30DF5FA3821BEBBEE7DF6E87B4281337829D43C40E9FEE1A0599A7C8A | sha512: 3B179E0BFEDAE7A23CE8E98AA9C7649688656C4E900EFC407EA8A22C39E774941A1EB17ED02C342B1D95DFC00EAAABE3BB6949685A3B9CF2D018D33B922B2D61
Copyright (c) 2018-2019 Charlie Poole
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.
md5: 3D4A4F72FF8281FB8624C062121E8CD0 | sha1: 8747C11210686A2277F6E1755E660E24258023DA | sha256: 80DB0C28D53072ACD056793A8258925FFAE212C6433955758D31010B403CEA0D | sha512: 6EB87F4C9B570AA4BFE83AA5A9C1281372ADA124FC18429ACDF2B1697CC5114E7242AAD31F98984F305C0A536BB2D3F87EF9D884F777A93712810C223CC15E61
The TestCentric GUI Runner 1.0 is based in part on the NUnit 2.x GUI Runner,
with portions of the code...
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
The TestCentric GUI Runner uses the NUnit 3 Test Engine to run tests...
Copyright (c) 2017-2019 Charlie Poole, Rob Prouse
md5: 7231E4FF54C6CCF9734043D4EFD75120 | sha1: EF4EF47FF98106FAB66EA7E095641C22380D86EF | sha256: FBE0F9DAA8F0917FB3CDBE64196820FBBD222D4269CDD9C29C1E7179BF44FB3C | sha512: 43F97B1458777E3B71A79DB2C43B0418F1E67458169B422CB5C6886FD9B644B58E574162EB7AC4C6EF018EA199748E72FA886AFB2E621542CA005A890B104780
md5: 473C0461D18A1A3919C1E796F2D6F639 | sha1: 6C82898F8673D61B26F6E3D56D1793983264DEFC | sha256: C25669E73DCFAAF311FDA14D5E05545CD06B8CAD4E471651122BFA4203B387D0 | sha512: 03F9E9905B0C090F2158CA668BCFB73D0130DC4B8A462AC88298EDEE872BF3FD8BF561E0C53071CB7DA9109CF27CCB2B20C1EFCB11480079447A6A800FBBECD0
md5: EF6A6D03474F23641FC466593B12AE22 | sha1: D392F66A95E010F4A90719E101E89CD8D22A9788 | sha256: 1436C81276107DD12D1654C011B83401EEE86041A88BE2ABC18A3F69161532BA | sha512: 404047AD291AF503765B40CC98EBF1A8F5EF01CBEDC64EA49402C2A640A34281938E446685F590F38FE1792C0A54F4C86A328E6979C3A7F6C498570307551FEF
md5: 43520D06F39DA56B8E374547EC4BBC12 | sha1: 793F2C043F32759BF87A3B16C451146B88838159 | sha256: FF34D3E7BD842D67C838F8266B203FBE9E9F18FD4CD0DF96FE0CAEAB8DFE5F9F | sha512: 3B3374DE8B15F694AD0F19871D2DCF1476505DF33D1CD3AC42413507139DA46867BF1F5BED5221B90E01FBCE4AB481BE538AAFD98D0C4F9D96B66D5A718DD2F9
md5: 78C3D40003FC3C060DF2A2CE04624E82 | sha1: 4A5539546D920D42BE5E0DD4B2EC8B70B8C02418 | sha256: 28F70E9FFB211EEC8C7A4DE0FBF60ECF0F7D991D62730D891BC750D672B0679E | sha512: 4AD13047D29D6FC0AEA774883CC7BAA8A86D5CC1448FEDFA6D6D47CE5AA5C4374571F6A4E79C4239010A30E42BC29F8AE448BE58F60F431295BE2FDA94150336
md5: 8DC75C482C128B461D9F1893B2AE68FE | sha1: 3058E845211458E2E2523EBD06CDC9729B738F02 | sha256: 882542CC190247F1A73A90B506F5A99807FB4301E3CC4B658C397BC2DC4935D3 | sha512: 189B0F9B0C043BAE6815DBCB3CA768C2BFF4461114E93316D0EBE87C569CC563DBA5010AE96A9B4D665F72DE1161A6B0FC21B4B7B47D48003D6E1FA5C135867C
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<!--
The GUI only runs under .NET 2.0 or higher. The
useLegacyV2RuntimeActivationPolicy setting only
applies under .NET 4.0 and permits use of mixed
mode assemblies, which would otherwise not load
correctly.
-->
<startup useLegacyV2RuntimeActivationPolicy="true">
<!-- Comment out the next line to force use of .NET 4.0 -->
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/></startup>
<runtime>
<!-- Ensure that test exceptions don't crash NUnit -->
<legacyUnhandledExceptionPolicy enabled="1"/>
<!-- Run partial trust V2 assemblies in full trust under .NET 4.0 -->
<loadFromRemoteSources enabled="true"/>
<!-- Look for addins in the addins directory for now -->
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<probing privatePath="lib;addins"/>
</assemblyBinding>
</runtime>
</configuration>
md5: D667155CB3D1495A56A77C9E8D27DF09 | sha1: 0E8302E9D403975247A703AC5CFEB91E50011DE4 | sha256: 9FB60BD11E84BAB2660BE83BC37D71D197A31AEEE1481E1895B2F452704FCA93 | sha512: F9432D156B094DA78709DA97042436632B694A28117592B010AD28FE71F9BC61B727D04B6F9DDF4D900E53F3939A54D13B85600617B4263184BC67CBBC352B73
md5: 9C8D99321DBD19922982808892AEECAF | sha1: D012AC9CB36569D3B061CFAD372B0F45DF1D165A | sha256: D635336283B82942AB7877F0F10454A34E239702CD55161520860E9516B16C25 | sha512: 9E465795CA10D693BE3830105B081C0F29C3B55A8352E73E3AA6E4C5C758E7913D5FF6CD35A461EDEFF24258B899FD851BFB74B8A87F673B88D2F1D951374C4B
md5: 0349D07D03AABA2A59504609391DDED2 | sha1: C7D6A737DC77D59082BE511F1047502B3BE12B43 | sha256: 7A54D3E7ECF7734C3F51AE897D0FE479E06D4F79FA5B4ACDC2944E2C849C1F64 | sha512: 329CD8B5723059F2DBE4A3DF65364FBB7619AD9A6B881D91A6539AC63FC1475012A3AE09D6A696F6E23CD5F8BF47A2718DBBC827993EEFF633EBA89024BE0F5B
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 author of the software, Charlie Poole.
Any binaries will be identical to other package types published by the
author at https://github.com/TestCentric/testcentric-gui.
Log in or click on link to see number of positives.
- Mono.Cecil.dll (80db0c28d530) - ## / 71
- testcentric.engine.api.dll (1436c8127610) - ## / 72
- testcentric.engine.metadata.dll (39cc73d212e0) - ## / 72
- testcentric.engine.api.dll (29eac6a7bb61) - ## / 71
- testcentric.engine.metadata.dll (5e5c2461d1bc) - ## / 71
- testcentric-gui.1.3.1.nupkg (0159ee7b36b6) - ## / 65
- Experimental.Gui.Runner.dll (5d237bd30df5) - ## / 72
- nunit.uiexception.dll (fbe0f9daa8f0) - ## / 72
- tc-next.exe (ec5c435d86e4) - ## / 72
- TestCentric.Common.dll (c25669e73dcf) - ## / 69
- testcentric.engine.core.dll (ff34d3e7bd84) - ## / 70
- testcentric.engine.dll (28f70e9ffb21) - ## / 70
- testcentric.exe (882542cc1902) - ## / 72
- TestCentric.Gui.Components.dll (9fb60bd11e84) - ## / 71
- TestCentric.Gui.Model.dll (d635336283b8) - ## / 71
- TestCentric.Gui.Runner.dll (7a54d3e7ecf7) - ## / 70
- testcentric-agent-x86.exe (1817d535c129) - ## / 72
- testcentric-agent.exe (f326a6a7a3d5) - ## / 72
- testcentric.engine.core.dll (257d0730c6dd) - ## / 70
- testcentric-agent-x86.exe (ba60bd4b1e36) - ## / 73
- testcentric-agent.exe (93d709d248f4) - ## / 72
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 |
---|---|---|---|---|
testcentric-gui 2.0.0-beta6 | 39 | Wednesday, October 16, 2024 | Approved | |
testcentric-gui 2.0.0-beta5 | 125 | Thursday, May 16, 2024 | Approved | |
testcentric-gui 2.0.0-beta4 | 555 | Thursday, November 23, 2023 | Approved | |
testcentric-gui 2.0.0-beta3-1 | 72 | Wednesday, October 25, 2023 | Approved | |
testcentric-gui 2.0.0-beta3 | 27 | Sunday, October 22, 2023 | Exempted | |
testcentric-gui 2.0.0-beta2 | 71 | Monday, September 4, 2023 | Approved | |
TestCentric Runner for NUnit 2.0.0-beta1 | 146 | Tuesday, May 9, 2023 | Exempted | |
TestCentric Runner for NUnit 2.0.0-alpha8 | 110 | Tuesday, April 25, 2023 | Approved | |
TestCentric Runner for NUnit 2.0.0-alpha7 | 64 | Monday, February 6, 2023 | Approved | |
TestCentric Runner for NUnit 2.0.0-alpha6 | 101 | Saturday, June 18, 2022 | Approved | |
TestCentric Runner for NUnit 2.0.0-alpha5 | 90 | Saturday, May 14, 2022 | Approved | |
TestCentric Runner for NUnit 2.0.0-alpha4 | 191 | Sunday, October 3, 2021 | Approved | |
TestCentric Runner for NUnit 2.0.0-alpha3 | 83 | Thursday, September 30, 2021 | Approved | |
TestCentric Runner for NUnit 2.0.0-alpha2 | 229 | Sunday, August 15, 2021 | Approved | |
TestCentric Runner for NUnit 2.0.0-alpha1 | 125 | Thursday, July 1, 2021 | Approved | |
testcentric-gui 1.7.0 | 92 | Saturday, September 28, 2024 | Approved | |
TestCentric Runner for NUnit 1.6.4 | 1057 | Friday, December 2, 2022 | Approved | |
TestCentric Runner for NUnit 1.6.3 | 182 | Monday, August 1, 2022 | Approved | |
TestCentric Runner for NUnit 1.6.2 | 628 | Thursday, March 25, 2021 | Approved | |
TestCentric Runner for NUnit 1.6.1 | 230 | Sunday, January 17, 2021 | Approved | |
TestCentric Runner for NUnit 1.6.0 | 159 | Monday, January 11, 2021 | Approved | |
TestCentric Runner for NUnit 1.5.3 | 155 | Thursday, December 24, 2020 | Approved | |
TestCentric Runner for NUnit 1.5.2 | 169 | Thursday, December 17, 2020 | Approved | |
TestCentric Runner for NUnit 1.5.1 | 148 | Tuesday, December 15, 2020 | Approved | |
TestCentric Runner for NUnit 1.5.0 | 140 | Wednesday, December 9, 2020 | Approved | |
TestCentric Runner for NUnit 1.4.1 | 288 | Friday, September 4, 2020 | Approved | |
TestCentric Runner for NUnit 1.4.0 | 472 | Friday, May 1, 2020 | Approved | |
TestCentric Runner for NUnit 1.3.3 | 205 | Saturday, April 18, 2020 | Approved | |
TestCentric Runner for NUnit 1.3.3-rc1 | 156 | Friday, April 17, 2020 | Approved | |
TestCentric Runner for NUnit 1.3.2 | 237 | Tuesday, April 7, 2020 | Approved | |
TestCentric Runner for NUnit 1.3.1 | 265 | Saturday, March 7, 2020 | Approved | |
TestCentric Runner for NUnit 1.3.0 | 212 | Tuesday, February 25, 2020 | Approved | |
TestCentric Runner for NUnit 1.2.0 | 226 | Sunday, February 16, 2020 | Approved | |
TestCentric Runner for NUnit 1.1.0 | 414 | Saturday, November 9, 2019 | Approved | |
TestCentric Runner for NUnit 1.0.1 | 293 | Friday, August 16, 2019 | Approved | |
TestCentric Runner for NUnit 1.0.0 | 269 | Saturday, July 27, 2019 | Approved | |
TestCentric Runner for NUnit 1.0-beta4 | 212 | Wednesday, July 17, 2019 | Exempted | |
TestCentric Runner for NUnit 1.0-beta3 | 181 | Sunday, July 14, 2019 | Exempted | |
TestCentric Runner for NUnit 1.0-beta2 | 214 | Thursday, May 30, 2019 | Exempted | |
TestCentric Runner for NUnit 1.0-beta | 217 | Saturday, April 13, 2019 | Exempted | |
TestCentric Runner for NUnit 1.0-alpha4 | 228 | Saturday, April 6, 2019 | Exempted | |
TestCentric Runner for NUnit 1.0-alpha3 | 217 | Wednesday, February 27, 2019 | Exempted | |
TestCentric Runner for NUnit 1.0-alpha2 | 233 | Tuesday, November 13, 2018 | Exempted | |
TestCentric Runner for NUnit 1.0-alpha1 | 243 | Friday, August 3, 2018 | Exempted |
Copyright (c) 2018-2019 Charlie Poole
This package has no dependencies.
Ground Rules:
- This discussion is only about TestCentric Runner for NUnit and the TestCentric Runner for NUnit 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 TestCentric Runner for NUnit, 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.