Welcome to the Chocolatey Community Package Repository! The packages found in this section of the site are provided, maintained, and moderated by the community.
Moderation
Every version of each package undergoes a rigorous moderation process before it goes live that typically includes:
- Security, consistency, and quality checking
- Installation testing
- Virus checking through VirusTotal
- Human moderators who give final review and sign off
More detail at Security and Moderation.
Organizational Use
If you are an organization using Chocolatey, we want your experience to be fully reliable. Due to the nature of this publicly offered repository, reliability cannot be guaranteed. Packages offered here are subject to distribution rights, which means they may need to reach out further to the internet to the official locations to download files at runtime.
Fortunately, distribution rights do not apply for internal use. With any edition of Chocolatey (including the free open source edition), you can host your own packages and cache or internalize existing community packages.
Disclaimer
Your use of the packages on this site means you understand they are not supported or guaranteed in any way. Learn more...
-
STEP1
Package Review
-
STEP2
Integration Method
-
STEP3
Internal Repo Url
-
STEP4
Environment Setup
-
STEP5
Install Script
Step 1: Review Your Packages
Step 2: Choose Your Integration Method
Step 3: Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
Step 3: Copy Your Script or Download Config
Option 1: Copy Script
Option 2: Download Config
Step 4: 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 packages and push them to a repository
Download Packages
-
Open Source
-
Download the packages:
Download Packages - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
-
For package and dependencies run:
- Automate package internalization
-
Run: (additional options)
Step 5: Copy Your Script
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:
## 1. REQUIREMENTS ##
### Here are the requirements necessary to ensure this is successful.
### a. Internal/Private Cloud Repository Set Up ###
#### You'll need an internal/private cloud repository you can use. These are
#### generally really quick to set up and there are quite a few options.
#### Chocolatey Software recommends Nexus, Artifactory Pro, or ProGet as they
#### are repository servers and will give you the ability to manage multiple
#### repositories and types from one server installation.
### b. Download Chocolatey Package and Put on Internal Repository ###
#### You need to have downloaded the Chocolatey package as well.
#### Please see https://chocolatey.org/install#organization
### c. Other Requirements ###
#### We initialize a few things that are needed by this script - there are no other requirements.
$ErrorActionPreference = "Stop"
#### Set TLS 1.2 (3072) as that is the minimum required by various up-to-date repositories.
#### Use integers because the enumeration value for TLS 1.2 won't exist
#### in .NET 4.0, even though they are addressable if .NET 4.5+ is
#### installed (.NET 4.5 is an in-place upgrade).
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072
#### We use this variable for future REST calls.
$RequestArguments = @{
UseBasicParsing = $true
}
## 2. TOP LEVEL VARIABLES ##
### a. Your internal repository url (the main one). ###
#### Should be similar to what you see when you browse
#### to https://community.chocolatey.org/api/v2/
$NugetRepositoryUrl = "INTERNAL REPO URL"
### b. Internal Repository Credential ###
#### If required, add the repository access credential here
# $NugetRepositoryCredential = [PSCredential]::new(
# "username",
# ("password" | ConvertTo-SecureString -AsPlainText -Force)
# )
# $RequestArguments.Credential = $NugetRepositoryCredential
### c. Chocolatey nupkg download url ###
#### This url should result in an immediate download when you navigate to it
$ChocolateyDownloadUrl = "$($NugetRepositoryUrl.TrimEnd('/'))/package/chocolatey.1.1.0.nupkg"
### d. Chocolatey Central Management (CCM) ###
#### If using CCM to manage Chocolatey, add the following:
#### i. Endpoint URL for CCM
# $ChocolateyCentralManagementUrl = "https://chocolatey-central-management:24020/ChocolateyManagementService"
#### ii. If using a Client Salt, add it here
# $ChocolateyCentralManagementClientSalt = "clientsalt"
#### iii. If using a Service Salt, add it here
# $ChocolateyCentralManagementServiceSalt = "servicesalt"
## 3. ENSURE CHOCOLATEY IS INSTALLED ##
### Ensure Chocolatey is installed from your internal repository
#### Download the Nupkg, appending .zip to the filename to handle archive cmdlet limitations
if (-not (Get-Command choco.exe -ErrorAction SilentlyContinue)) {
$TempDirectory = Join-Path $env:Temp "chocolateyInstall"
if (-not (Test-Path $TempDirectory -PathType Container)) {
$null = New-Item -Path $TempDirectory -ItemType Directory
}
$DownloadedNupkg = Join-Path $TempDirectory "$(Split-Path $ChocolateyDownloadUrl -Leaf).zip"
Invoke-WebRequest -Uri $ChocolateyDownloadUrl -OutFile $DownloadedNupkg @RequestArguments
#### Extract the Nupkg, and run the chocolateyInstall script
if (Get-Command Microsoft.PowerShell.Archive\Expand-Archive -ErrorAction SilentlyContinue) {
Microsoft.PowerShell.Archive\Expand-Archive -Path $DownloadedNupkg -DestinationPath $TempDirectory -Force
} else {
# PowerShell versions <4.0 do not have this function available
try {
$shellApplication = New-Object -ComObject Shell.Application
$zipPackage = $shellApplication.NameSpace($DownloadedNupkg)
$destinationFolder = $shellApplication.NameSpace($TempDirectory)
$destinationFolder.CopyHere($zipPackage.Items(), 0x10)
} catch {
Write-Warning "Unable to unzip package using built-in compression."
throw $_
}
}
& $(Join-Path $TempDirectory "tools\chocolateyInstall.ps1")
}
if (-not (Get-Command choco.exe -ErrorAction SilentlyContinue)) {
refreshenv
}
## 4. CONFIGURE CHOCOLATEY BASELINE ##
### a. FIPS Feature ###
#### If you need FIPS compliance - make this the first thing you configure
#### before you do any additional configuration or package installations
# choco feature enable -n useFipsCompliantChecksums
### b. Apply Recommended Configuration ###
#### Move cache location so Chocolatey is very deterministic about
#### cleaning up temporary data and the location is secured to admins
choco config set --name cacheLocation --value C:\ProgramData\chocolatey\cache
#### Increase timeout to at least 4 hours
choco config set --name commandExecutionTimeoutSeconds --value 14400
#### Turn off download progress when running choco through integrations
choco feature disable --name showDownloadProgress
### c. Sources ###
#### Remove the default community package repository source
choco source list --limitoutput | ConvertFrom-Csv -Header 'Name', 'Location' -Delimiter '|' | ForEach-Object {
if ($_.Location -eq 'https://community.chocolatey.org/api/v2/') {
choco source remove -n $_.Name
}
}
#### Add internal default sources
#### You could have multiple sources here, so we will provide an example
#### of one using the remote repo variable here
#### NOTE: This EXAMPLE may require changes
if ($NugetRepositoryCredential) {
choco source add --name ChocolateyInternal --source $NugetRepositoryUrl --user $NugetRepositoryCredential.UserName --password $NugetRepositoryCredential.GetNetworkCredential().Password --priority 1
} else {
choco source add --name ChocolateyInternal --source $NugetRepositoryUrl --priority 1
}
### b. Keep Chocolatey Up To Date ###
#### Keep chocolatey up to date based on your internal source
#### You control the upgrades based on when you push an updated version
#### to your internal repository.
#### Note the source here is to the OData feed, similar to what you see
#### when you browse to https://community.chocolatey.org/api/v2/
choco upgrade chocolatey --confirm
## 5. ENSURE CHOCOLATEY FOR BUSINESS ##
### If you don't have Chocolatey for Business (C4B), you'll want to remove from here down.
### a. Ensure The License File Is Installed ###
#### Create a license package using script from https://docs.chocolatey.org/en-us/how-tos/setup-offline-installation#exercise-4-create-a-package-for-the-license
choco install chocolatey-license --source $NugetRepositoryUrl --confirm
### b. Disable The Licensed Source ###
#### The licensed source cannot be removed, so it must be disabled.
#### This must occur after the license has been set by the license package.
if ("chocolatey-license" -in (choco list --localonly --limitoutput | ConvertFrom-Csv -Header "Name" -Delimiter "|").Name) {
choco source disable --name chocolatey.licensed
} else {
Write-Warning "Not disabling 'chocolatey.licensed' feed, as Chocolatey-License has not been installed."
}
### c. Ensure Chocolatey Licensed Extension ###
#### You will have downloaded the licensed extension to your internal repository
#### as you have disabled the licensed repository in step 5b.
#### Ensure the chocolatey.extension package (aka Chocolatey Licensed Extension)
if ("chocolatey-license" -in (choco list --localonly --limitoutput | ConvertFrom-Csv -Header "Name" -Delimiter "|").Name) {
choco install chocolatey.extension --source $NugetRepositoryUrl --confirm
} else {
Write-Warning "Not installing 'chocolatey.extension', as Chocolatey-License has not been installed."
}
#### The Chocolatey Licensed Extension unlocks all of the following, which also have configuration/feature items available with them. You may want to visit the feature pages to see what you might want to also enable:
#### - Package Builder - https://docs.chocolatey.org/en-us/features/paid/package-builder
#### - Package Internalizer - https://docs.chocolatey.org/en-us/features/paid/package-internalizer
#### - Package Synchronization (3 components) - https://docs.chocolatey.org/en-us/features/paid/package-synchronization
#### - Package Reducer - https://docs.chocolatey.org/en-us/features/paid/package-reducer
#### - Package Audit - https://docs.chocolatey.org/en-us/features/paid/package-audit
#### - Package Throttle - https://docs.chocolatey.org/en-us/features/paid/package-throttle
#### - CDN Cache Access - https://docs.chocolatey.org/en-us/features/paid/private-cdn
#### - Branding - https://docs.chocolatey.org/en-us/features/paid/branding
#### - Self-Service Anywhere (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/self-service-anywhere
#### - Chocolatey Central Management (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/chocolatey-central-management
#### - Other - https://docs.chocolatey.org/en-us/features/paid/
### d. Ensure Self-Service Anywhere ###
#### If you have desktop clients where users are not administrators, you may
#### to take advantage of deploying and configuring Self-Service anywhere
choco feature disable --name showNonElevatedWarnings
choco feature enable --name useBackgroundService
choco feature enable --name useBackgroundServiceWithNonAdministratorsOnly
choco feature enable --name allowBackgroundServiceUninstallsFromUserInstallsOnly
choco config set --name allowedBackgroundServiceCommands --value "install,upgrade,uninstall"
### e. Ensure Chocolatey Central Management ###
#### If you want to manage and report on endpoints, you can set up and configure
### Central Management. There are multiple portions to manage, so you'll see
### a section on agents here along with notes on how to configure the server
### side components.
if ($ChocolateyCentralManagementUrl) {
choco install chocolatey-agent --source $NugetRepositoryUrl --confirm
choco config set --name CentralManagementServiceUrl --value $ChocolateyCentralManagementUrl
if ($ChocolateyCentralManagementClientSalt) {
choco config set --name centralManagementClientCommunicationSaltAdditivePassword --value $ChocolateyCentralManagementClientSalt
}
if ($ChocolateyCentralManagementServiceSalt) {
choco config set --name centralManagementServiceCommunicationSaltAdditivePassword --value $ChocolateyCentralManagementServiceSalt
}
choco feature enable --name useChocolateyCentralManagement
choco feature enable --name useChocolateyCentralManagementDeployments
}
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
If Applicable - Chocolatey Configuration/Installation
## 1. REQUIREMENTS ##
### Here are the requirements necessary to ensure this is successful.
### a. Internal/Private Cloud Repository Set Up ###
#### You'll need an internal/private cloud repository you can use. These are
#### generally really quick to set up and there are quite a few options.
#### Chocolatey Software recommends Nexus, Artifactory Pro, or ProGet as they
#### are repository servers and will give you the ability to manage multiple
#### repositories and types from one server installation.
### b. Download Chocolatey Package and Put on Internal Repository ###
#### You need to have downloaded the Chocolatey package as well.
#### Please see https://chocolatey.org/install#organization
### c. Other Requirements ###
#### i. chocolatey.chocolatey
##### You will require the chocolatey.chocolatey collection to be installed
##### on all machines using this playbook.
##### Please see https://github.com/chocolatey/chocolatey-ansible/#installing-the-collection-from-ansible-galaxy
- name: Install and Configure Chocolatey
hosts: all
## 2. TOP LEVEL VARIABLES ##
vars:
### a. Your internal repository url (the main one). ###
#### Should be similar to what you see when you browse
#### to https://community.chocolatey.org/api/v2/
nuget_repository_url: INTERNAL REPO URL
### b. Internal Repository Credential ###
#### If required, add the repository access credential here and
#### uncomment lines with source_username and source_password below
# nuget_repository_username: username
# nuget_repository_password: password
### c. Chocolatey Central Management (CCM) ###
#### If using CCM to manage Chocolatey, add the following:
#### i. Endpoint URL for CCM
# chocolatey_central_management_url: https://chocolatey-central-management:24020/ChocolateyManagementService
#### ii. If using a Client Salt, add it here
# chocolatey_central_management_client_salt: clientsalt
#### iii. If using a Service Salt, add it here
# chocolatey_central_management_service_salt: servicesalt
## 3. ENSURE CHOCOLATEY IS INSTALLED ##
### Ensure Chocolatey is installed from your internal repository
tasks:
- name: Install chocolatey
win_chocolatey:
name: chocolatey
source: {{ nuget_repository_url }}
# source_username: {{ nuget_repository_username }}
# source_password: {{ nuget_repository_password }}
## 4. CONFIGURE CHOCOLATEY BASELINE ##
### a. FIPS Feature ###
#### If you need FIPS compliance - make this the first thing you configure
#### before you do any additional configuration or package installations
# - name: Enable FIPS compliance
# win_chocolatey_feature:
# name: useFipsCompliantChecksums
# state: enabled
### b. Apply Recommended Configuration ###
#### Move cache location so Chocolatey is very deterministic about
#### cleaning up temporary data and the location is secured to admins
- name: Set the cache location
win_chocolatey_config:
name: cacheLocation
state: present
value: C:\ProgramData\chocolatey\cache
#### Increase timeout to at least 4 hours
- name: Set the command execution timeout
win_chocolatey_config:
name: commandExecutionTimeoutSeconds
state: present
value: 14400
#### Turn off download progress when running choco through integrations
- name: Disable showing download progress
win_chocolatey_feature:
name: showDownloadProgress
state: disabled
### c. Sources ###
#### Remove the default community package repository source
- name: Remove Chocolatey Community Repository
win_chocolatey_source:
name: chocolatey
state: absent
#### Add internal default sources
#### You could have multiple sources here, so we will provide an example
#### of one using the remote repo variable here
#### NOTE: This EXAMPLE may require changes
- name: Add Internal Repository
win_chocolatey_source:
name: ChocolateyInternal
state: present
source: {{ nuget_repository_url }}
# source_username: {{ nuget_repository_username }}
# source_password: {{ nuget_repository_password }}
priority: 1
### b. Keep Chocolatey Up To Date ###
#### Keep chocolatey up to date based on your internal source
#### You control the upgrades based on when you push an updated version
#### to your internal repository.
#### Note the source here is to the OData feed, similar to what you see
#### when you browse to https://community.chocolatey.org/api/v2/
- name: Upgrade Chocolatey
win_chocolatey:
name: chocolatey
state: latest
## 5. ENSURE CHOCOLATEY FOR BUSINESS ##
### If you don't have Chocolatey for Business (C4B), you'll want to remove from here down.
### a. Ensure The License File Is Installed ###
#### Create a license package using script from https://docs.chocolatey.org/en-us/how-tos/setup-offline-installation#exercise-4-create-a-package-for-the-license
- name: Install Chocolatey License
win_chocolatey:
name: chocolatey-license
source: ChocolateyInternal
state: latest
### b. Disable The Licensed Source ###
#### The licensed source cannot be removed, so it must be disabled.
#### This must occur after the license has been set by the license package.
- name: Disable Chocolatey Community Repository
win_chocolatey_source:
name: chocolatey.licensed
state: disabled
### c. Ensure Chocolatey Licensed Extension ###
#### You will have downloaded the licensed extension to your internal repository
#### as you have disabled the licensed repository in step 5b.
#### Ensure the chocolatey.extension package (aka Chocolatey Licensed Extension)
- name: Install Chocolatey Extension
win_chocolatey:
name: chocolatey.extension
source: ChocolateyInternal
state: latest
#### The Chocolatey Licensed Extension unlocks all of the following, which also have configuration/feature items available with them. You may want to visit the feature pages to see what you might want to also enable:
#### - Package Builder - https://docs.chocolatey.org/en-us/features/paid/package-builder
#### - Package Internalizer - https://docs.chocolatey.org/en-us/features/paid/package-internalizer
#### - Package Synchronization (3 components) - https://docs.chocolatey.org/en-us/features/paid/package-synchronization
#### - Package Reducer - https://docs.chocolatey.org/en-us/features/paid/package-reducer
#### - Package Audit - https://docs.chocolatey.org/en-us/features/paid/package-audit
#### - Package Throttle - https://docs.chocolatey.org/en-us/features/paid/package-throttle
#### - CDN Cache Access - https://docs.chocolatey.org/en-us/features/paid/private-cdn
#### - Branding - https://docs.chocolatey.org/en-us/features/paid/branding
#### - Self-Service Anywhere (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/self-service-anywhere
#### - Chocolatey Central Management (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/chocolatey-central-management
#### - Other - https://docs.chocolatey.org/en-us/features/paid/
### d. Ensure Self-Service Anywhere ###
#### If you have desktop clients where users are not administrators, you may
#### to take advantage of deploying and configuring Self-Service anywhere
- name: Hide not-elevated warnings
win_chocolatey_feature:
name: showNonElevatedWarnings
state: disabled
- name: Use background mode for self-service
win_chocolatey_feature:
name: useBackgroundService
state: enabled
- name: Use background service for non-admins
win_chocolatey_feature:
name: useBackgroundServiceWithNonAdministratorsOnly
state: enabled
- name: Allow background uninstallation for user installs
win_chocolatey_feature:
name: allowBackgroundServiceUninstallsFromUserInstallsOnly
state: enabled
- name: Set allowed background service commands
win_chocolatey_config:
name: backgroundServiceAllowedCommands
state: present
value: install,upgrade,uninstall
### e. Ensure Chocolatey Central Management ###
#### If you want to manage and report on endpoints, you can set up and configure
### Central Management. There are multiple portions to manage, so you'll see
### a section on agents here along with notes on how to configure the server
### side components.
- name: Install Chocolatey Agent
when: chocolatey_central_management_url is defined
win_chocolatey:
name: chocolatey-agent
source: ChocolateyInternal
state: latest
- name: Set the Central Management Service URL
when: chocolatey_central_management_url is defined
win_chocolatey_config:
name: CentralManagementServiceUrl
state: present
value: {{ chocolatey_central_management_url }}
- name: Set the Central Management Client Salt
when: chocolatey_central_management_client_salt is defined
win_chocolatey_config:
name: centralManagementClientCommunicationSaltAdditivePassword
state: present
value: {{ chocolatey_central_management_client_salt }}
- name: Set the Central Management Service Salt
when: chocolatey_central_management_service_salt is defined
win_chocolatey_config:
name: centralManagementServiceCommunicationSaltAdditivePassword
state: present
value: {{ chocolatey_central_management_service_salt }}
- name: Use Central Management
when: chocolatey_central_management_url is defined
win_chocolatey_feature:
name: useChocolateyCentralManagement
state: enabled
- name: Use Central Management Deployments
when: chocolatey_central_management_url is defined
win_chocolatey_feature:
name: useChocolateyCentralManagementDeployments
state: enabled
See docs at https://docs.chef.io/resource_chocolatey_package.html.
If Applicable - Chocolatey Configuration/Installation
## 1. REQUIREMENTS ##
### Here are the requirements necessary to ensure this is successful.
### a. Internal/Private Cloud Repository Set Up ###
#### You'll need an internal/private cloud repository you can use. These are
#### generally really quick to set up and there are quite a few options.
#### Chocolatey Software recommends Nexus, Artifactory Pro, or ProGet as they
#### are repository servers and will give you the ability to manage multiple
#### repositories and types from one server installation.
### b. Download Chocolatey Package and Put on Internal Repository ###
#### You need to have downloaded the Chocolatey package as well.
#### Please see https://chocolatey.org/install#organization
### c. Other Requirements ###
#### The Chocolatey resources are available with any recent version of Chef.
#### We utilise the Chocolatey recipe to install the Chocolatey binaries.
include_recipe "chocolatey"
## 2. TOP LEVEL VARIABLES ##
### a. Your internal repository url (the main one). ###
#### Should be similar to what you see when you browse
#### to https://community.chocolatey.org/api/v2/
NugetRepositoryUrl = "INTERNAL REPO URL"
### b. Internal Repository Credential ###
#### If required, add the repository access credential here
# NugetRepositoryUsername = "username"
# NugetRepositoryPassword = "password"
### c. Chocolatey nupkg download url ###
#### This url should result in an immediate download when you navigate to it in
#### a web browser
ChocolateyNupkgUrl = "INTERNAL REPO URL/package/chocolatey.1.1.0.nupkg",
### d. Chocolatey Central Management (CCM) ###
#### If using CCM to manage Chocolatey, add the following:
#### i. Endpoint URL for CCM
# ChocolateyCentralManagementUrl = "https://chocolatey-central-management:24020/ChocolateyManagementService"
#### ii. If using a Client Salt, add it here
# ChocolateyCentralManagementClientSalt = "clientsalt"
#### iii. If using a Service Salt, add it here
# ChocolateyCentralManagementServiceSalt = "servicesalt"
## 3. ENSURE CHOCOLATEY IS INSTALLED ##
### Ensure Chocolatey is installed from your internal repository
node['chocolatey']['install vars'] = {
'chocolateyDownloadUrl' => "#{ChocolateyNupkgUrl}",
}
## 4. CONFIGURE CHOCOLATEY BASELINE ##
### a. FIPS Feature ###
#### If you need FIPS compliance - make this the first thing you configure
#### before you do any additional configuration or package installations
# chocolatey_feature 'useFipsCompliantChecksums' do
# action :enable
# end
### b. Apply Recommended Configuration ###
#### Move cache location so Chocolatey is very deterministic about
#### cleaning up temporary data and the location is secured to admins
chocolatey_config 'cacheLocation' do
value 'C:\ProgramData\chocolatey\cache'
end
#### Increase timeout to at least 4 hours
chocolatey_config 'commandExecutionTimeoutSeconds' do
value '14400'
end
#### Turn off download progress when running choco through integrations
chocolatey_feature 'showDownloadProgress' do
action :disable
end
### c. Sources ###
#### Remove the default community package repository source
chocolatey_source 'chocolatey' do
action :remove
end
#### Add internal default sources
#### You could have multiple sources here, so we will provide an example
#### of one using the remote repo variable here
#### NOTE: This EXAMPLE may require changes
chocolatey_source 'ChocolateyInternal' do
source "#{NugetRepositoryUrl}"
priority 1
action :add
end
execute 'ChocolateyInternal' do
command "choco source add --name ChocolateyInternal -s #{NugetRepositoryUrl} -u=#{NugetRepositoryUsername} -p=#{NugetRepositoryPassword} --priority=1"
only_if { NugetRepositoryUsername != nil || NugetRepositoryPassword != nil }
end
### b. Keep Chocolatey Up To Date ###
#### Keep chocolatey up to date based on your internal source
#### You control the upgrades based on when you push an updated version
#### to your internal repository.
#### Note the source here is to the OData feed, similar to what you see
#### when you browse to https://community.chocolatey.org/api/v2/
chocolatey_package 'chocolatey' do
action :upgrade
source "#{NugetRepositoryUrl}"
end
## 5. ENSURE CHOCOLATEY FOR BUSINESS ##
### If you don't have Chocolatey for Business (C4B), you'll want to remove from here down.
### a. Ensure The License File Is Installed ###
#### Create a license package using script from https://docs.chocolatey.org/en-us/how-tos/setup-offline-installation#exercise-4-create-a-package-for-the-license
chocolatey_package 'chocolatey-license' do
action :install
source "#{NugetRepositoryUrl}"
end
### b. Disable The Licensed Source ###
#### The licensed source cannot be removed, so it must be disabled.
#### This must occur after the license has been set by the license package.
chocolatey_source 'chocolatey.licensed' do
action :disable
end
### c. Ensure Chocolatey Licensed Extension ###
#### You will have downloaded the licensed extension to your internal repository
#### as you have disabled the licensed repository in step 5b.
#### Ensure the chocolatey.extension package (aka Chocolatey Licensed Extension)
chocolatey_package 'chocolatey.extention' do
action install
source "#{NugetRepositoryUrl}"
end
#### The Chocolatey Licensed Extension unlocks all of the following, which also have configuration/feature items available with them. You may want to visit the feature pages to see what you might want to also enable:
#### - Package Builder - https://docs.chocolatey.org/en-us/features/paid/package-builder
#### - Package Internalizer - https://docs.chocolatey.org/en-us/features/paid/package-internalizer
#### - Package Synchronization (3 components) - https://docs.chocolatey.org/en-us/features/paid/package-synchronization
#### - Package Reducer - https://docs.chocolatey.org/en-us/features/paid/package-reducer
#### - Package Audit - https://docs.chocolatey.org/en-us/features/paid/package-audit
#### - Package Throttle - https://docs.chocolatey.org/en-us/features/paid/package-throttle
#### - CDN Cache Access - https://docs.chocolatey.org/en-us/features/paid/private-cdn
#### - Branding - https://docs.chocolatey.org/en-us/features/paid/branding
#### - Self-Service Anywhere (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/self-service-anywhere
#### - Chocolatey Central Management (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/chocolatey-central-management
#### - Other - https://docs.chocolatey.org/en-us/features/paid/
### d. Ensure Self-Service Anywhere ###
#### If you have desktop clients where users are not administrators, you may
#### to take advantage of deploying and configuring Self-Service anywhere
chocolatey_feature 'showNonElevatedWarnings' do
action :disable
end
chocolatey_feature 'useBackgroundService' do
action :enable
end
chocolatey_feature 'useBackgroundServiceWithNonAdministratorsOnly' do
action :enable
end
chocolatey_feature 'allowBackgroundServiceUninstallsFromUserInstallsOnly' do
action :enable
end
chocolatey_config 'backgroundServiceAllowedCommands' do
value 'install,upgrade,uninstall'
end
### e. Ensure Chocolatey Central Management ###
#### If you want to manage and report on endpoints, you can set up and configure
### Central Management. There are multiple portions to manage, so you'll see
### a section on agents here along with notes on how to configure the server
### side components.
chocolatey_package 'chocolatey-agent' do
action install
source "#{NugetRepositoryUrl}"
# user "#{NugetRepositoryUsername}"
# password "#{NugetRepositoryPassword}"
only_if { ChocolateyCentralManagementUrl != nil }
end
chocolatey_config 'CentralManagementServiceUrl' do
value "#{ChocolateyCentralManagementUrl}"
only_if { ChocolateyCentralManagementUrl != nil }
end
chocolatey_config 'centralManagementClientCommunicationSaltAdditivePassword' do
value "#{ChocolateyCentralManagementClientSalt}"
only_if { ChocolateyCentralManagementClientSalt != nil }
end
chocolatey_config 'centralManagementServiceCommunicationSaltAdditivePassword' do
value "#{ChocolateyCentralManagementServiceSalt}"
only_if { ChocolateyCentralManagementServiceSalt != nil }
end
chocolatey_feature 'useChocolateyCentralManagement' do
action :enable
only_if { ChocolateyCentralManagementUrl != nil }
end
chocolatey_feature 'useChocolateyCentralManagementDeployments' do
action :enable
only_if { ChocolateyCentralManagementUrl != nil }
end
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
If Applicable - Chocolatey Configuration/Installation
#requires -Modules cChoco
## 1. REQUIREMENTS ##
### Here are the requirements necessary to ensure this is successful.
### a. Internal/Private Cloud Repository Set Up ###
#### You'll need an internal/private cloud repository you can use. These are
#### generally really quick to set up and there are quite a few options.
#### Chocolatey Software recommends Nexus, Artifactory Pro, or ProGet as they
#### are repository servers and will give you the ability to manage multiple
#### repositories and types from one server installation.
### b. Download Chocolatey Package and Put on Internal Repository ###
#### You need to have downloaded the Chocolatey package as well.
#### Please see https://chocolatey.org/install#organization
### c. Other Requirements ###
#### i. Requires chocolatey\cChoco DSC module to be installed on the machine compiling the DSC manifest
#### NOTE: This will need to be installed before running the DSC portion of this script
if (-not (Get-Module cChoco -ListAvailable)) {
$null = Install-PackageProvider -Name NuGet -MinimumVersion 2.8.5.201 -Force
if (($PSGallery = Get-PSRepository -Name PSGallery).InstallationPolicy -ne "Trusted") {
Set-PSRepository -Name PSGallery -InstallationPolicy Trusted
}
Install-Module -Name cChoco
if ($PSGallery.InstallationPolicy -ne "Trusted") {
Set-PSRepository -Name PSGallery -InstallationPolicy $PSGallery.InstallationPolicy
}
}
#### ii. Requires a hosted copy of the install.ps1 script
##### This should be available to download without authentication.
##### The original script can be found here: https://community.chocolatey.org/install.ps1
Configuration ChocolateyConfig {
## 2. TOP LEVEL VARIABLES ##
param(
### a. Your internal repository url (the main one). ###
#### Should be similar to what you see when you browse
#### to https://community.chocolatey.org/api/v2/
$NugetRepositoryUrl = "INTERNAL REPO URL",
### b. Chocolatey nupkg download url ###
#### This url should result in an immediate download when you navigate to it in
#### a web browser
$ChocolateyNupkgUrl = "INTERNAL REPO URL/package/chocolatey.1.1.0.nupkg",
### c. Internal Repository Credential ###
#### If required, add the repository access credential here
# $NugetRepositoryCredential = [PSCredential]::new(
# "username",
# ("password" | ConvertTo-SecureString -AsPlainText -Force)
# ),
### d. Install.ps1 URL
#### The path to the hosted install script:
$ChocolateyInstallPs1Url = "https://community.chocolatey.org/install.ps1"
### e. Chocolatey Central Management (CCM) ###
#### If using CCM to manage Chocolatey, add the following:
#### i. Endpoint URL for CCM
# $ChocolateyCentralManagementUrl = "https://chocolatey-central-management:24020/ChocolateyManagementService",
#### ii. If using a Client Salt, add it here
# $ChocolateyCentralManagementClientSalt = "clientsalt",
#### iii. If using a Service Salt, add it here
# $ChocolateyCentralManagementServiceSalt = "servicesalt"
)
Import-DscResource -ModuleName PSDesiredStateConfiguration
Import-DscResource -ModuleName cChoco
Node 'localhost' {
## 3. ENSURE CHOCOLATEY IS INSTALLED ##
### Ensure Chocolatey is installed from your internal repository
Environment chocoDownloadUrl {
Name = "chocolateyDownloadUrl"
Value = $ChocolateyNupkgUrl
}
cChocoInstaller installChocolatey {
DependsOn = "[Environment]chocoDownloadUrl"
InstallDir = Join-Path $env:ProgramData "chocolatey"
ChocoInstallScriptUrl = $ChocolateyInstallPs1Url
}
## 4. CONFIGURE CHOCOLATEY BASELINE ##
### a. FIPS Feature ###
#### If you need FIPS compliance - make this the first thing you configure
#### before you do any additional configuration or package installations
# cChocoFeature featureFipsCompliance {
# FeatureName = "useFipsCompliantChecksums"
# }
### b. Apply Recommended Configuration ###
#### Move cache location so Chocolatey is very deterministic about
#### cleaning up temporary data and the location is secured to admins
cChocoConfig cacheLocation {
DependsOn = "[cChocoInstaller]installChocolatey"
ConfigName = "cacheLocation"
Value = "C:\ProgramData\chocolatey\cache"
}
#### Increase timeout to at least 4 hours
cChocoConfig commandExecutionTimeoutSeconds {
DependsOn = "[cChocoInstaller]installChocolatey"
ConfigName = "commandExecutionTimeoutSeconds"
Value = 14400
}
#### Turn off download progress when running choco through integrations
cChocoFeature showDownloadProgress {
DependsOn = "[cChocoInstaller]installChocolatey"
FeatureName = "showDownloadProgress"
Ensure = "Absent"
}
### c. Sources ###
#### Remove the default community package repository source
cChocoSource removeCommunityRepository {
DependsOn = "[cChocoInstaller]installChocolatey"
Name = "chocolatey"
Ensure = "Absent"
}
#### Add internal default sources
#### You could have multiple sources here, so we will provide an example
#### of one using the remote repo variable here.
#### NOTE: This EXAMPLE may require changes
cChocoSource addInternalSource {
DependsOn = "[cChocoInstaller]installChocolatey"
Name = "ChocolateyInternal"
Source = $NugetRepositoryUrl
Credentials = $NugetRepositoryCredential
Priority = 1
}
### b. Keep Chocolatey Up To Date ###
#### Keep chocolatey up to date based on your internal source
#### You control the upgrades based on when you push an updated version
#### to your internal repository.
#### Note the source here is to the OData feed, similar to what you see
#### when you browse to https://community.chocolatey.org/api/v2/
cChocoPackageInstaller updateChocolatey {
DependsOn = "[cChocoSource]addInternalSource", "[cChocoSource]removeCommunityRepository"
Name = "chocolatey"
AutoUpgrade = $true
}
## 5. ENSURE CHOCOLATEY FOR BUSINESS ##
### If you don't have Chocolatey for Business (C4B), you'll want to remove from here down.
### a. Ensure The License File Is Installed ###
#### Create a license package using script from https://docs.chocolatey.org/en-us/how-tos/setup-offline-installation#exercise-4-create-a-package-for-the-license
cChocoPackageInstaller chocolateyLicense {
DependsOn = "[cChocoPackageInstaller]updateChocolatey"
Name = "chocolatey-license"
}
### b. Disable The Licensed Source ###
#### The licensed source cannot be removed, so it must be disabled.
#### This must occur after the license has been set by the license package.
Script disableLicensedSource {
DependsOn = "[cChocoPackageInstaller]chocolateyLicense"
GetScript = {
$Source = choco source list --limitoutput | `
ConvertFrom-Csv -Delimiter '|' -Header Name, Source, Disabled | `
Where-Object Name -eq "chocolatey.licensed"
return @{
Result = if ($Source) {
[bool]::Parse($Source.Disabled)
} else {
Write-Warning "Source 'chocolatey.licensed' was not present."
$true # Source does not need disabling
}
}
}
SetScript = {
$null = choco source disable --name "chocolatey.licensed"
}
TestScript = {
$State = [ScriptBlock]::Create($GetScript).Invoke()
return $State.Result
}
}
### c. Ensure Chocolatey Licensed Extension ###
#### You will have downloaded the licensed extension to your internal repository
#### as you have disabled the licensed repository in step 5b.
#### Ensure the chocolatey.extension package (aka Chocolatey Licensed Extension)
cChocoPackageInstaller chocolateyLicensedExtension {
DependsOn = "[Script]disableLicensedSource"
Name = "chocolatey.extension"
}
#### The Chocolatey Licensed Extension unlocks all of the following, which also have configuration/feature items available with them. You may want to visit the feature pages to see what you might want to also enable:
#### - Package Builder - https://docs.chocolatey.org/en-us/features/paid/package-builder
#### - Package Internalizer - https://docs.chocolatey.org/en-us/features/paid/package-internalizer
#### - Package Synchronization (3 components) - https://docs.chocolatey.org/en-us/features/paid/package-synchronization
#### - Package Reducer - https://docs.chocolatey.org/en-us/features/paid/package-reducer
#### - Package Audit - https://docs.chocolatey.org/en-us/features/paid/package-audit
#### - Package Throttle - https://docs.chocolatey.org/en-us/features/paid/package-throttle
#### - CDN Cache Access - https://docs.chocolatey.org/en-us/features/paid/private-cdn
#### - Branding - https://docs.chocolatey.org/en-us/features/paid/branding
#### - Self-Service Anywhere (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/self-service-anywhere
#### - Chocolatey Central Management (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/chocolatey-central-management
#### - Other - https://docs.chocolatey.org/en-us/features/paid/
### d. Ensure Self-Service Anywhere ###
#### If you have desktop clients where users are not administrators, you may
#### to take advantage of deploying and configuring Self-Service anywhere
cChocoFeature hideElevatedWarnings {
DependsOn = "[cChocoPackageInstaller]chocolateyLicensedExtension"
FeatureName = "showNonElevatedWarnings"
Ensure = "Absent"
}
cChocoFeature useBackgroundService {
DependsOn = "[cChocoPackageInstaller]chocolateyLicensedExtension"
FeatureName = "useBackgroundService"
Ensure = "Present"
}
cChocoFeature useBackgroundServiceWithNonAdmins {
DependsOn = "[cChocoPackageInstaller]chocolateyLicensedExtension"
FeatureName = "useBackgroundServiceWithNonAdministratorsOnly"
Ensure = "Present"
}
cChocoFeature useBackgroundServiceUninstallsForUserInstalls {
DependsOn = "[cChocoPackageInstaller]chocolateyLicensedExtension"
FeatureName = "allowBackgroundServiceUninstallsFromUserInstallsOnly"
Ensure = "Present"
}
cChocoConfig allowedBackgroundServiceCommands {
DependsOn = "[cChocoFeature]useBackgroundService"
ConfigName = "backgroundServiceAllowedCommands"
Value = "install,upgrade,uninstall"
}
### e. Ensure Chocolatey Central Management ###
#### If you want to manage and report on endpoints, you can set up and configure
### Central Management. There are multiple portions to manage, so you'll see
### a section on agents here along with notes on how to configure the server
### side components.
if ($ChocolateyCentralManagementUrl) {
cChocoPackageInstaller chocolateyAgent {
DependsOn = "[cChocoPackageInstaller]chocolateyLicensedExtension"
Name = "chocolatey-agent"
}
cChocoConfig centralManagementServiceUrl {
DependsOn = "[cChocoPackageInstaller]chocolateyAgent"
ConfigName = "CentralManagementServiceUrl"
Value = $ChocolateyCentralManagementUrl
}
if ($ChocolateyCentralManagementClientSalt) {
cChocoConfig centralManagementClientSalt {
DependsOn = "[cChocoPackageInstaller]chocolateyAgent"
ConfigName = "centralManagementClientCommunicationSaltAdditivePassword"
Value = $ChocolateyCentralManagementClientSalt
}
}
if ($ChocolateyCentralManagementServiceSalt) {
cChocoConfig centralManagementServiceSalt {
DependsOn = "[cChocoPackageInstaller]chocolateyAgent"
ConfigName = "centralManagementServiceCommunicationSaltAdditivePassword"
Value = $ChocolateyCentralManagementServiceSalt
}
}
cChocoFeature useCentralManagement {
DependsOn = "[cChocoPackageInstaller]chocolateyAgent"
FeatureName = "useChocolateyCentralManagement"
Ensure = "Present"
}
cChocoFeature useCentralManagementDeployments {
DependsOn = "[cChocoPackageInstaller]chocolateyAgent"
FeatureName = "useChocolateyCentralManagementDeployments"
Ensure = "Present"
}
}
}
}
# If working this into an existing configuration with a good method for
$ConfigData = @{
AllNodes = @(
@{
NodeName = "localhost"
PSDscAllowPlainTextPassword = $true
}
)
}
try {
Push-Location $env:Temp
$Config = ChocolateyConfig -ConfigurationData $ConfigData
Start-DscConfiguration -Path $Config.PSParentPath -Wait -Verbose -Force
} finally {
Pop-Location
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
If Applicable - Chocolatey Configuration/Installation
## 1. REQUIREMENTS ##
### Here are the requirements necessary to ensure this is successful.
### a. Internal/Private Cloud Repository Set Up ###
#### You'll need an internal/private cloud repository you can use. These are
#### generally really quick to set up and there are quite a few options.
#### Chocolatey Software recommends Nexus, Artifactory Pro, or ProGet as they
#### are repository servers and will give you the ability to manage multiple
#### repositories and types from one server installation.
### b. Download Chocolatey Package and Put on Internal Repository ###
#### You need to have downloaded the Chocolatey package as well.
#### Please see https://chocolatey.org/install#organization
### c. Other Requirements ###
#### i. Requires puppetlabs/chocolatey module
#### See https://forge.puppet.com/puppetlabs/chocolatey
## 2. TOP LEVEL VARIABLES ##
### a. Your internal repository url (the main one). ###
#### Should be similar to what you see when you browse
#### to https://community.chocolatey.org/api/v2/
$_repository_url = 'INTERNAL REPO URL'
### b. Chocolatey nupkg download url ###
#### This url should result in an immediate download when you navigate to it in
#### a web browser
$_choco_download_url = 'INTERNAL REPO URL/package/chocolatey.1.1.0.nupkg'
### c. Chocolatey Central Management (CCM) ###
#### If using CCM to manage Chocolatey, add the following:
#### i. Endpoint URL for CCM
# $_chocolatey_central_management_url = 'https://chocolatey-central-management:24020/ChocolateyManagementService'
#### ii. If using a Client Salt, add it here
# $_chocolatey_central_management_client_salt = "clientsalt"
#### iii. If using a Service Salt, add it here
# $_chocolatey_central_management_service_salt = 'servicesalt'
## 3. ENSURE CHOCOLATEY IS INSTALLED ##
### Ensure Chocolatey is installed from your internal repository
### Note: `chocolatey_download_url is completely different than normal
### source locations. This is directly to the bare download url for the
### chocolatey.nupkg, similar to what you see when you browse to
### https://community.chocolatey.org/api/v2/package/chocolatey
class {'chocolatey':
chocolatey_download_url => $_choco_download_url,
use_7zip => false,
}
## 4. CONFIGURE CHOCOLATEY BASELINE ##
### a. FIPS Feature ###
#### If you need FIPS compliance - make this the first thing you configure
#### before you do any additional configuration or package installations
#chocolateyfeature {'useFipsCompliantChecksums':
# ensure => enabled,
#}
### b. Apply Recommended Configuration ###
#### Move cache location so Chocolatey is very deterministic about
#### cleaning up temporary data and the location is secured to admins
chocolateyconfig {'cacheLocation':
value => 'C:\ProgramData\chocolatey\cache',
}
#### Increase timeout to at least 4 hours
chocolateyconfig {'commandExecutionTimeoutSeconds':
value => '14400',
}
#### Turn off download progress when running choco through integrations
chocolateyfeature {'showDownloadProgress':
ensure => disabled,
}
### c. Sources ###
#### Remove the default community package repository source
chocolateysource {'chocolatey':
ensure => absent,
location => 'https://community.chocolatey.org/api/v2/',
}
#### Add internal default sources
#### You could have multiple sources here, so we will provide an example
#### of one using the remote repo variable here
#### NOTE: This EXAMPLE requires changes
chocolateysource {'internal_chocolatey':
ensure => present,
location => $_repository_url,
priority => 1,
username => 'optional',
password => 'optional,not ensured',
bypass_proxy => true,
admin_only => false,
allow_self_service => false,
}
### b. Keep Chocolatey Up To Date ###
#### Keep chocolatey up to date based on your internal source
#### You control the upgrades based on when you push an updated version
#### to your internal repository.
#### Note the source here is to the OData feed, similar to what you see
#### when you browse to https://community.chocolatey.org/api/v2/
package {'chocolatey':
ensure => latest,
provider => chocolatey,
source => $_repository_url,
}
## 5. ENSURE CHOCOLATEY FOR BUSINESS ##
### If you don't have Chocolatey for Business (C4B), you'll want to remove from here down.
### a. Ensure The License File Is Installed ###
#### Create a license package using script from https://docs.chocolatey.org/en-us/guides/organizations/organizational-deployment-guide#exercise-4-create-a-package-for-the-license
# TODO: Add resource for installing/ensuring the chocolatey-license package
package {'chocolatey-license':
ensure => latest,
provider => chocolatey,
source => $_repository_url,
}
### b. Disable The Licensed Source ###
#### The licensed source cannot be removed, so it must be disabled.
#### This must occur after the license has been set by the license package.
## Disabled sources still need all other attributes until
## https://tickets.puppetlabs.com/browse/MODULES-4449 is resolved.
## Password is necessary with user, but not ensurable, so it should not
## matter what it is set to here. If you ever do get into trouble here,
## the password is your license GUID.
chocolateysource {'chocolatey.licensed':
ensure => disabled,
priority => '10',
user => 'customer',
password => '1234',
require => Package['chocolatey-license'],
}
### c. Ensure Chocolatey Licensed Extension ###
#### You will have downloaded the licensed extension to your internal repository
#### as you have disabled the licensed repository in step 5b.
#### Ensure the chocolatey.extension package (aka Chocolatey Licensed Extension)
package {'chocolatey.extension':
ensure => latest,
provider => chocolatey,
source => $_repository_url,
require => Package['chocolatey-license'],
}
#### The Chocolatey Licensed Extension unlocks all of the following, which also have configuration/feature items available with them. You may want to visit the feature pages to see what you might want to also enable:
#### - Package Builder - https://docs.chocolatey.org/en-us/features/paid/package-builder
#### - Package Internalizer - https://docs.chocolatey.org/en-us/features/paid/package-internalizer
#### - Package Synchronization (3 components) - https://docs.chocolatey.org/en-us/features/paid/package-synchronization
#### - Package Reducer - https://docs.chocolatey.org/en-us/features/paid/package-reducer
#### - Package Audit - https://docs.chocolatey.org/en-us/features/paid/package-audit
#### - Package Throttle - https://docs.chocolatey.org/en-us/features/paid/package-throttle
#### - CDN Cache Access - https://docs.chocolatey.org/en-us/features/paid/private-cdn
#### - Branding - https://docs.chocolatey.org/en-us/features/paid/branding
#### - Self-Service Anywhere (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/self-service-anywhere
#### - Chocolatey Central Management (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/chocolatey-central-management
#### - Other - https://docs.chocolatey.org/en-us/features/paid/
### d. Ensure Self-Service Anywhere ###
#### If you have desktop clients where users are not administrators, you may
#### to take advantage of deploying and configuring Self-Service anywhere
chocolateyfeature {'showNonElevatedWarnings':
ensure => disabled,
}
chocolateyfeature {'useBackgroundService':
ensure => enabled,
}
chocolateyfeature {'useBackgroundServiceWithNonAdministratorsOnly':
ensure => enabled,
}
chocolateyfeature {'allowBackgroundServiceUninstallsFromUserInstallsOnly':
ensure => enabled,
}
chocolateyconfig {'backgroundServiceAllowedCommands':
value => 'install,upgrade,uninstall',
}
### e. Ensure Chocolatey Central Management ###
#### If you want to manage and report on endpoints, you can set up and configure
### Central Management. There are multiple portions to manage, so you'll see
### a section on agents here along with notes on how to configure the server
### side components.
if $_chocolatey_central_management_url {
package {'chocolatey-agent':
ensure => latest,
provider => chocolatey,
source => $_repository_url,
require => Package['chocolatey-license'],
}
chocolateyconfig {'CentralManagementServiceUrl':
value => $_chocolatey_central_management_url,
}
if $_chocolatey_central_management_client_salt {
chocolateyconfig {'centralManagementClientCommunicationSaltAdditivePassword':
value => $_chocolatey_central_management_client_salt,
}
}
if $_chocolatey_central_management_service_salt {
chocolateyconfig {'centralManagementClientCommunicationSaltAdditivePassword':
value => $_chocolatey_central_management_client_salt,
}
}
chocolateyfeature {'useChocolateyCentralManagement':
ensure => enabled,
require => Package['chocolatey-agent'],
}
chocolateyfeature {'useChocolateyCentralManagementDeployments':
ensure => enabled,
require => Package['chocolatey-agent'],
}
}
Need Help? View our docs or file an issue.
There is already a version of this package in your Script Builder
Current Version | New Version |
---|---|
- Passing
- Failing
- Pending
- Unknown / Exempted

Downloads:
154,707
Downloads of v 3.15.2:
4,093
Last Update:
29 Jun 2022
Package Maintainer(s):
Software Author(s):
- Charlie Poole
- Rob Prouse
Tags:
nunit console runner test testing tdd
NUnit 3 Console Runner
- 1
- 2
- 3
3.15.2 | Updated: 29 Jun 2022
Downloads:
154,707
Downloads of v 3.15.2:
4,093
Maintainer(s):
Software Author(s):
- Charlie Poole
- Rob Prouse
Edit Package
To edit the metadata for a package, please upload an updated version of the package.
Chocolatey's Community Package Repository currently does not allow updating package metadata on the website. This helps ensure that the package itself (and the source used to build the package) remains the one true source of package metadata.
This does require that you increment the package version.
- 1
- 2
- 3
NUnit 3 Console Runner
3.15.2
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
Deployment Method: Individual Install, Upgrade, & Uninstall
To install NUnit 3 Console Runner, run the following command from the command line or from PowerShell:
To upgrade NUnit 3 Console Runner, run the following command from the command line or from PowerShell:
To uninstall NUnit 3 Console Runner, run the following command from the command line or from PowerShell:
Deployment Method:
📝 NOTE: This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
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 nunit-console-runner --internalize --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 nunit-console-runner -y --source="'INTERNAL REPO URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade nunit-console-runner -y --source="'INTERNAL REPO URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install nunit-console-runner
win_chocolatey:
name: nunit-console-runner
version: '3.15.2'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'nunit-console-runner' do
action :install
source 'INTERNAL REPO URL'
version '3.15.2'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller nunit-console-runner
{
Name = "nunit-console-runner"
Version = "3.15.2"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'nunit-console-runner':
ensure => '3.15.2',
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 30 Jun 2022.
This package includes the nunit3-console runner and test engine for version 3 of the NUnit unit-testing framework.
md5: 48AB0EF09F72CD7B00E358990692DBE9 | sha1: A8D1A2C9A2C47A54F8CACBA5FFC7D6638015EA39 | sha256: 6328E4652D0CA5346CC5E9788BC6B56CBAE17CB77382B0941ED3573221E2DD2D | sha512: 0601EF36699B2518EDCEF8AE7A0B6197D671A89FE1933EB361D1B2B9900446D6434483C11AE34A35832C53189774CA1B8E207B152D202FAD4B1C091643DE2B31
<?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: BA54F2786E7E4DFD5DC25B09328D3A92 | sha1: DDE2F528CCB9744C33B658B5678BB006EE813D64 | sha256: 97ED25E868387CBFBB2CC0B329C46B97BD32AF9175B5043D75E9FE368CC73C38 | sha512: C3A70C75A26BC19C661EC99F42F9DFF43AD771C2D6E711BBF516C2BEAEF6C93BC8D872658BD6EBFCB990AA5A7986841835B3D0F40E3DC6ECB5912B9FC7F365EE
<?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: 1EB5D51DD8CEA1DA37DA4B605FD3177F | sha1: E9839CAF9BB840A680A21F6622DCBCAE9E43D5D1 | sha256: F1BC0BF5677D24A9AE540B66BEBB835CCCD54231BB456735EE51F18BBBE25021 | sha512: 16F2B3AFC906DB3EA60E50A5D994227BBA3511620F16C6D78E783787493B444414225D4F1FC1E537DC53CA8D4F0C39D85B97642B02CFB517C348DF7E7E50D7E7
<?xml version="1.0"?>
<doc>
<assembly>
<name>nunit.engine.api</name>
</assembly>
<members>
<member name="T:NUnit.Engine.NUnitEngineException">
<summary>
NUnitEngineException is thrown when the engine has been
called with improper values or when a particular facility
is not available.
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineException.#ctor(System.String)">
<summary>
Construct with a message
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineException.#ctor(System.String,System.Exception)">
<summary>
Construct with a message and inner exception
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serialization constructor
</summary>
</member>
<member name="T:NUnit.Engine.NUnitEngineNotFoundException">
<summary>
The exception that is thrown if a valid test engine is not found
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineNotFoundException.#ctor">
<summary>
Initializes a new instance of the <see cref="T:NUnit.Engine.NUnitEngineNotFoundException"/> class.
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineNotFoundException.#ctor(System.Version)">
<summary>
Initializes a new instance of the <see cref="T:NUnit.Engine.NUnitEngineNotFoundException"/> class.
</summary>
<param name="minVersion">The minimum version.</param>
</member>
<member name="T:NUnit.Engine.NUnitEngineUnloadException">
<summary>
NUnitEngineUnloadException is thrown when a test run has completed successfully
but one or more errors were encountered when attempting to unload
and shut down the test run cleanly.
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.String)">
<summary>
Construct with a message
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.String,System.Exception)">
<summary>
Construct with a message and inner exception
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.Collections.Generic.ICollection{System.Exception})">
<summary>
Construct with a message and a collection of exceptions.
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serialization constructor.
</summary>
</member>
<member name="P:NUnit.Engine.NUnitEngineUnloadException.AggregatedExceptions">
<summary>
Gets the collection of exceptions .
</summary>
</member>
<member name="T:NUnit.Engine.Extensibility.ExtensionAttribute">
<summary>
The ExtensionAttribute is used to identify a class that is intended
to serve as an extension.
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.ExtensionAttribute.#ctor">
<summary>
Initializes a new instance of the <see cref="T:NUnit.Engine.Extensibility.ExtensionAttribute"/> class.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.Path">
<summary>
A unique string identifying the ExtensionPoint for which this Extension is
intended. This is an optional field provided NUnit is able to deduce the
ExtensionPoint from the Type of the extension class.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.Description">
<summary>
An optional description of what the extension does.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.Enabled">
<summary>
Flag indicating whether the extension is enabled.
</summary>
<value><c>true</c> if enabled; otherwise, <c>false</c>.</value>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.EngineVersion">
<summary>
The minimum Engine version for which this extension is designed
</summary>
</member>
<member name="T:NUnit.Engine.Extensibility.ExtensionPointAttribute">
<summary>
ExtensionPointAttribute is used at the assembly level to identify and
document any ExtensionPoints supported by the assembly.
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.ExtensionPointAttribute.#ctor(System.String,System.Type)">
<summary>
Construct an ExtensionPointAttribute
</summary>
<param name="path">A unique string identifying the extension point.</param>
<param name="type">The required Type of any extension that is installed at this extension point.</param>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionPointAttribute.Path">
<summary>
The unique string identifying this ExtensionPoint. This identifier
is typically formatted as a path using '/' and the set of extension
points is sometimes viewed as forming a tree.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionPointAttribute.Type">
<summary>
The required Type (usually an interface) of any extension that is
installed at this ExtensionPoint.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionPointAttribute.Description">
<summary>
An optional description of the purpose of the ExtensionPoint
</summary>
</member>
<member name="T:NUnit.Engine.Extensibility.ExtensionPropertyAttribute">
<summary>
The ExtensionPropertyAttribute is used to specify named properties for an extension.
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.ExtensionPropertyAttribute.#ctor(System.String,System.String)">
<summary>
Construct an ExtensionPropertyAttribute
</summary>
<param name="name">The name of the property</param>
<param name="value">The property value</param>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionPropertyAttribute.Name">
<summary>
The name of the property.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionPropertyAttribute.Value">
<summary>
The property value
</summary>
</member>
<member name="T:NUnit.Engine.Extensibility.IDriverFactory">
<summary>
Interface implemented by a Type that knows how to create a driver for a test assembly.
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.IDriverFactory.IsSupportedTestFramework(System.Reflection.AssemblyName)">
<summary>
Gets a flag indicating whether a given AssemblyName
represents a test framework supported by this factory.
</summary>
<param name="reference">An AssemblyName referring to the possible test framework.</param>
</member>
<member name="M:NUnit.Engine.Extensibility.IDriverFactory.GetDriver(System.AppDomain,System.Reflection.AssemblyName)">
<summary>
Gets a driver for a given test assembly and a framework
which the assembly is already known to reference.
</summary>
<param name="domain">The domain in which the assembly will be loaded</param>
<param name="reference">An AssemblyName referring to the test framework.</param>
<returns></returns>
</member>
<member name="T:NUnit.Engine.Extensibility.IExtensionNode">
<summary>
The IExtensionNode interface is implemented by a class that represents a
single extension being installed on a particular extension point.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionNode.TypeName">
<summary>
Gets the full name of the Type of the extension object.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionNode.Enabled">
<summary>
Gets a value indicating whether this <see cref="T:NUnit.Engine.Extensibility.IExtensionNode"/> is enabled.
</summary>
<value><c>true</c> if enabled; otherwise, <c>false</c>.</value>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionNode.Path">
<summary>
Gets the unique string identifying the ExtensionPoint for which
this Extension is intended. This identifier may be supplied by the attribute
marking the extension or deduced by NUnit from the Type of the extension class.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionNode.Description">
<summary>
Gets an optional description of what the extension does.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionNode.TargetFramework">
<summary>
The TargetFramework of the extension assembly.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionNode.PropertyNames">
<summary>
Gets a collection of the names of all this extension's properties
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.IExtensionNode.GetValues(System.String)">
<summary>
Gets a collection of the values of a particular named property
If none are present, returns an empty enumerator.
</summary>
<param name="name">The property name</param>
<returns>A collection of values</returns>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionNode.AssemblyPath">
<summary>
The path to the assembly implementing this extension.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionNode.AssemblyVersion">
<summary>
The version of the assembly implementing this extension.
</summary>
</member>
<member name="T:NUnit.Engine.Extensibility.IExtensionPoint">
<summary>
An ExtensionPoint represents a single point in the TestEngine
that may be extended by user addins and extensions.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionPoint.Path">
<summary>
Gets the unique path identifying this extension point.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionPoint.Description">
<summary>
Gets the description of this extension point. May be null.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionPoint.TypeName">
<summary>
Gets the FullName of the Type required for any extension to be installed at this extension point.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionPoint.Extensions">
<summary>
Gets an enumeration of IExtensionNodes for extensions installed on this extension point.
</summary>
</member>
<member name="T:NUnit.Engine.Extensibility.IFrameworkDriver">
<summary>
The IFrameworkDriver interface is implemented by a class that
is able to use an external framework to explore or run tests
under the engine.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IFrameworkDriver.ID">
<summary>
Gets and sets the unique identifier for this driver,
used to ensure that test ids are unique across drivers.
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.Load(System.String,System.Collections.Generic.IDictionary{System.String,System.Object})">
<summary>
Loads the tests in an assembly.
</summary>
<returns>An Xml string representing the loaded test</returns>
</member>
<member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.CountTestCases(System.String)">
<summary>
Count the test cases that would be executed.
</summary>
<param name="filter">An XML string representing the TestFilter to use in counting the tests</param>
<returns>The number of test cases counted</returns>
</member>
<member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.Run(NUnit.Engine.ITestEventListener,System.String)">
<summary>
Executes the tests in an assembly.
</summary>
<param name="listener">An ITestEventHandler that receives progress notices</param>
<param name="filter">A XML string representing the filter that controls which tests are executed</param>
<returns>An Xml string representing the result</returns>
</member>
<member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.Explore(System.String)">
<summary>
Returns information about the tests in an assembly.
</summary>
<param name="filter">An XML string representing the filter that controls which tests are included</param>
<returns>An Xml string representing the tests</returns>
</member>
<member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.StopRun(System.Boolean)">
<summary>
Cancel the ongoing test run. If no test is running, the call is ignored.
</summary>
<param name="force">If true, cancel any ongoing test threads, otherwise wait for them to complete.</param>
</member>
<member name="T:NUnit.Engine.Extensibility.IProject">
<summary>
Interface for the various project types that the engine can load.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IProject.ProjectPath">
<summary>
Gets the path to the file storing this project, if any.
If the project has not been saved, this is null.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IProject.ActiveConfigName">
<summary>
Gets the active configuration, as defined
by the particular project.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IProject.ConfigNames">
<summary>
Gets a list of the configs for this project
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.IProject.GetTestPackage">
<summary>
Gets a test package for the primary or active
configuration within the project. The package
includes all the assemblies and any settings
specified in the project format.
</summary>
<returns>A TestPackage</returns>
</member>
<member name="M:NUnit.Engine.Extensibility.IProject.GetTestPackage(System.String)">
<summary>
Gets a TestPackage for a specific configuration
within the project. The package includes all the
assemblies and any settings specified in the
project format.
</summary>
<param name="configName">The name of the config to use</param>
<returns>A TestPackage for the named configuration.</returns>
</member>
<member name="T:NUnit.Engine.Extensibility.IProjectLoader">
<summary>
The IProjectLoader interface is implemented by any class
that knows how to load projects in a specific format.
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.IProjectLoader.CanLoadFrom(System.String)">
<summary>
Returns true if the file indicated is one that this
loader knows how to load.
</summary>
<param name="path">The path of the project file</param>
<returns>True if the loader knows how to load this file, otherwise false</returns>
</member>
<member name="M:NUnit.Engine.Extensibility.IProjectLoader.LoadFrom(System.String)">
<summary>
Loads a project of a known format.
</summary>
<param name="path">The path of the project file</param>
<returns>An IProject interface to the loaded project or null if the project cannot be loaded</returns>
</member>
<member name="T:NUnit.Engine.Extensibility.IResultWriter">
<summary>
Common interface for objects that process and write out test results
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.IResultWriter.CheckWritability(System.String)">
<summary>
Checks if the output path is writable. If the output is not
writable, this method should throw an exception.
</summary>
<param name="outputPath"></param>
</member>
<member name="M:NUnit.Engine.Extensibility.IResultWriter.WriteResultFile(System.Xml.XmlNode,System.String)">
<summary>
Writes result to the specified output path.
</summary>
<param name="resultNode">XmlNode for the result</param>
<param name="outputPath">Path to which it should be written</param>
</member>
<member name="M:NUnit.Engine.Extensibility.IResultWriter.WriteResultFile(System.Xml.XmlNode,System.IO.TextWriter)">
<summary>
Writes result to a TextWriter.
</summary>
<param name="resultNode">XmlNode for the result</param>
<param name="writer">TextWriter to which it should be written</param>
</member>
<member name="T:NUnit.Engine.Extensibility.TypeExtensionPointAttribute">
<summary>
TypeExtensionPointAttribute is used to bind an extension point
to a class or interface.
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.#ctor(System.String)">
<summary>
Construct a TypeExtensionPointAttribute, specifying the path.
</summary>
<param name="path">A unique string identifying the extension point.</param>
</member>
<member name="M:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.#ctor">
<summary>
Construct an TypeExtensionPointAttribute, without specifying the path.
The extension point will use a path constructed based on the interface
or class to which the attribute is applied.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.Path">
<summary>
The unique string identifying this ExtensionPoint. This identifier
is typically formatted as a path using '/' and the set of extension
points is sometimes viewed as forming a tree.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.Description">
<summary>
An optional description of the purpose of the ExtensionPoint
</summary>
</member>
<member name="T:NUnit.Engine.IAvailableRuntimes">
<summary>
Interface that returns a list of available runtime frameworks.
</summary>
</member>
<member name="P:NUnit.Engine.IAvailableRuntimes.AvailableRuntimes">
<summary>
Gets a list of available runtime frameworks.
</summary>
</member>
<member name="T:NUnit.Engine.IExtensionService">
<summary>
The IExtensionService interface allows a runner to manage extensions.
</summary>
</member>
<member name="P:NUnit.Engine.IExtensionService.ExtensionPoints">
<summary>
Gets an enumeration of all ExtensionPoints in the engine.
</summary>
</member>
<member name="P:NUnit.Engine.IExtensionService.Extensions">
<summary>
Gets an enumeration of all installed Extensions.
</summary>
</member>
<member name="M:NUnit.Engine.IExtensionService.GetExtensionPoint(System.String)">
<summary>
Get an ExtensionPoint based on its unique identifying path.
</summary>
</member>
<member name="M:NUnit.Engine.IExtensionService.GetExtensionNodes(System.String)">
<summary>
Get an enumeration of ExtensionNodes based on their identifying path.
</summary>
</member>
<member name="M:NUnit.Engine.IExtensionService.EnableExtension(System.String,System.Boolean)">
<summary>
Enable or disable an extension
</summary>
<param name="typeName"></param>
<param name="enabled"></param>
</member>
<member name="T:NUnit.Engine.ILogger">
<summary>
Interface for logging within the engine
</summary>
</member>
<member name="M:NUnit.Engine.ILogger.Error(System.String)">
<summary>
Logs the specified message at the error level.
</summary>
<param name="message">The message.</param>
</member>
<member name="M:NUnit.Engine.ILogger.Error(System.String,System.Object[])">
<summary>
Logs the specified message at the error level.
</summary>
<param name="format">The message.</param>
<param name="args">The arguments.</param>
</member>
<member name="M:NUnit.Engine.ILogger.Warning(System.String)">
<summary>
Logs the specified message at the warning level.
</summary>
<param name="message">The message.</param>
</member>
<member name="M:NUnit.Engine.ILogger.Warning(System.String,System.Object[])">
<summary>
Logs the specified message at the warning level.
</summary>
<param name="format">The message.</param>
<param name="args">The arguments.</param>
</member>
<member name="M:NUnit.Engine.ILogger.Info(System.String)">
<summary>
Logs the specified message at the info level.
</summary>
<param name="message">The message.</param>
</member>
<member name="M:NUnit.Engine.ILogger.Info(System.String,System.Object[])">
<summary>
Logs the specified message at the info level.
</summary>
<param name="format">The message.</param>
<param name="args">The arguments.</param>
</member>
<member name="M:NUnit.Engine.ILogger.Debug(System.String)">
<summary>
Logs the specified message at the debug level.
</summary>
<param name="message">The message.</param>
</member>
<member name="M:NUnit.Engine.ILogger.Debug(System.String,System.Object[])">
<summary>
Logs the specified message at the debug level.
</summary>
<param name="format">The message.</param>
<param name="args">The arguments.</param>
</member>
<member name="T:NUnit.Engine.ILogging">
<summary>
Interface to abstract getting loggers
</summary>
</member>
<member name="M:NUnit.Engine.ILogging.GetLogger(System.String)">
<summary>
Gets the logger.
</summary>
<param name="name">The name of the logger to get.</param>
<returns></returns>
</member>
<member name="T:NUnit.Engine.InternalTraceLevel">
<summary>
InternalTraceLevel is an enumeration controlling the
level of detailed presented in the internal log.
</summary>
</member>
<member name="F:NUnit.Engine.InternalTraceLevel.Default">
<summary>
Use the default settings as specified by the user.
</summary>
</member>
<member name="F:NUnit.Engine.InternalTraceLevel.Off">
<summary>
Do not display any trace messages
</summary>
</member>
<member name="F:NUnit.Engine.InternalTraceLevel.Error">
<summary>
Display Error messages only
</summary>
</member>
<member name="F:NUnit.Engine.InternalTraceLevel.Warning">
<summary>
Display Warning level and higher messages
</summary>
</member>
<member name="F:NUnit.Engine.InternalTraceLevel.Info">
<summary>
Display informational and higher messages
</summary>
</member>
<member name="F:NUnit.Engine.InternalTraceLevel.Debug">
<summary>
Display debug messages and higher - i.e. all messages
</summary>
</member>
<member name="F:NUnit.Engine.InternalTraceLevel.Verbose">
<summary>
Display debug messages and higher - i.e. all messages
</summary>
</member>
<member name="T:NUnit.Engine.IRecentFiles">
<summary>
The IRecentFiles interface is used to isolate the app
from various implementations of recent files.
</summary>
</member>
<member name="P:NUnit.Engine.IRecentFiles.MaxFiles">
<summary>
The max number of files saved
</summary>
</member>
<member name="P:NUnit.Engine.IRecentFiles.Entries">
<summary>
Get a list of all the file entries
</summary>
<returns>The most recent file list</returns>
</member>
<member name="M:NUnit.Engine.IRecentFiles.SetMostRecent(System.String)">
<summary>
Set the most recent file name, reordering
the saved names as needed and removing the oldest
if the max number of files would be exceeded.
The current CLR version is used to create the entry.
</summary>
</member>
<member name="M:NUnit.Engine.IRecentFiles.Remove(System.String)">
<summary>
Remove a file from the list
</summary>
<param name="fileName">The name of the file to remove</param>
</member>
<member name="T:NUnit.Engine.IResultService">
<summary>
IResultWriterService provides result writers for a specified
well-known format.
</summary>
</member>
<member name="P:NUnit.Engine.IResultService.Formats">
<summary>
Gets an array of the available formats
</summary>
</member>
<member name="M:NUnit.Engine.IResultService.GetResultWriter(System.String,System.Object[])">
<summary>
Gets a ResultWriter for a given format and set of arguments.
</summary>
<param name="format">The name of the format to be used</param>
<param name="args">A set of arguments to be used in constructing the writer or null if non arguments are needed</param>
<returns>An IResultWriter</returns>
</member>
<member name="T:NUnit.Engine.IRuntimeFramework">
<summary>
Interface implemented by objects representing a runtime framework.
</summary>
</member>
<member name="P:NUnit.Engine.IRuntimeFramework.Id">
<summary>
Gets the inique Id for this runtime, such as "net-4.5"
</summary>
</member>
<member name="P:NUnit.Engine.IRuntimeFramework.DisplayName">
<summary>
Gets the display name of the framework, such as ".NET 4.5"
</summary>
</member>
<member name="P:NUnit.Engine.IRuntimeFramework.FrameworkVersion">
<summary>
Gets the framework version: usually contains two components, Major
and Minor, which match the corresponding CLR components, but not always.
</summary>
</member>
<member name="P:NUnit.Engine.IRuntimeFramework.ClrVersion">
<summary>
Gets the Version of the CLR for this framework
</summary>
</member>
<member name="P:NUnit.Engine.IRuntimeFramework.Profile">
<summary>
Gets a string representing the particular profile installed,
or null if there is no profile. Currently. the only defined
values are Full and Client.
</summary>
</member>
<member name="T:NUnit.Engine.IRuntimeFrameworkService">
<summary>
Implemented by a type that provides information about the
current and other available runtimes.
</summary>
</member>
<member name="M:NUnit.Engine.IRuntimeFrameworkService.IsAvailable(System.String)">
<summary>
Returns true if the runtime framework represented by
the string passed as an argument is available.
</summary>
<param name="framework">A string representing a framework, like 'net-4.0'</param>
<returns>True if the framework is available, false if unavailable or nonexistent</returns>
</member>
<member name="M:NUnit.Engine.IRuntimeFrameworkService.SelectRuntimeFramework(NUnit.Engine.TestPackage)">
<summary>
Selects a target runtime framework for a TestPackage based on
the settings in the package and the assemblies themselves.
The package RuntimeFramework setting may be updated as a
result and the selected runtime is returned.
Note that if a package has subpackages, the subpackages may run on a different
framework to the top-level package. In future, this method should
probably not return a simple string, and instead require runners
to inspect the test package structure, to find all desired frameworks.
</summary>
<param name="package">A TestPackage</param>
<returns>The selected RuntimeFramework</returns>
</member>
<member name="T:NUnit.Engine.ServiceStatus">
<summary>
Enumeration representing the status of a service
</summary>
</member>
<member name="F:NUnit.Engine.ServiceStatus.Stopped">
<summary>Service was never started or has been stopped</summary>
</member>
<member name="F:NUnit.Engine.ServiceStatus.Started">
<summary>Started successfully</summary>
</member>
<member name="F:NUnit.Engine.ServiceStatus.Error">
<summary>Service failed to start and is unavailable</summary>
</member>
<member name="T:NUnit.Engine.IService">
<summary>
The IService interface is implemented by all Services. Although it
is extensible, it does not reside in the Extensibility namespace
because it is so widely used by the engine.
</summary>
</member>
<member name="P:NUnit.Engine.IService.ServiceContext">
<summary>
The ServiceContext
</summary>
</member>
<member name="P:NUnit.Engine.IService.Status">
<summary>
Gets the ServiceStatus of this service
</summary>
</member>
<member name="M:NUnit.Engine.IService.StartService">
<summary>
Initialize the Service
</summary>
</member>
<member name="M:NUnit.Engine.IService.StopService">
<summary>
Do any cleanup needed before terminating the service
</summary>
</member>
<member name="T:NUnit.Engine.IServiceLocator">
<summary>
IServiceLocator allows clients to locate any NUnit services
for which the interface is referenced. In normal use, this
linits it to those services using interfaces defined in the
nunit.engine.api assembly.
</summary>
</member>
<member name="M:NUnit.Engine.IServiceLocator.GetService``1">
<summary>
Return a specified type of service
</summary>
</member>
<member name="M:NUnit.Engine.IServiceLocator.GetService(System.Type)">
<summary>
Return a specified type of service
</summary>
</member>
<member name="T:NUnit.Engine.SettingsEventHandler">
<summary>
Event handler for settings changes
</summary>
<param name="sender">The sender.</param>
<param name="args">The <see cref="T:NUnit.Engine.SettingsEventArgs"/> instance containing the event data.</param>
</member>
<member name="T:NUnit.Engine.SettingsEventArgs">
<summary>
Event argument for settings changes
</summary>
</member>
<member name="M:NUnit.Engine.SettingsEventArgs.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:NUnit.Engine.SettingsEventArgs"/> class.
</summary>
<param name="settingName">Name of the setting that has changed.</param>
</member>
<member name="P:NUnit.Engine.SettingsEventArgs.SettingName">
<summary>
Gets the name of the setting that has changed
</summary>
</member>
<member name="T:NUnit.Engine.ISettings">
<summary>
The ISettings interface is used to access all user
settings and options.
</summary>
</member>
<member name="E:NUnit.Engine.ISettings.Changed">
<summary>
Occurs when the settings are changed.
</summary>
</member>
<member name="M:NUnit.Engine.ISettings.GetSetting(System.String)">
<summary>
Load a setting from the storage.
</summary>
<param name="settingName">Name of the setting to load</param>
<returns>Value of the setting or null</returns>
</member>
<member name="M:NUnit.Engine.ISettings.GetSetting``1(System.String,``0)">
<summary>
Load a setting from the storage or return a default value
</summary>
<param name="settingName">Name of the setting to load</param>
<param name="defaultValue">Value to return if the setting is missing</param>
<returns>Value of the setting or the default value</returns>
</member>
<member name="M:NUnit.Engine.ISettings.RemoveSetting(System.String)">
<summary>
Remove a setting from the storage
</summary>
<param name="settingName">Name of the setting to remove</param>
</member>
<member name="M:NUnit.Engine.ISettings.RemoveGroup(System.String)">
<summary>
Remove an entire group of settings from the storage
</summary>
<param name="groupName">Name of the group to remove</param>
</member>
<member name="M:NUnit.Engine.ISettings.SaveSetting(System.String,System.Object)">
<summary>
Save a setting in the storage
</summary>
<param name="settingName">Name of the setting to save</param>
<param name="settingValue">Value to be saved</param>
</member>
<member name="T:NUnit.Engine.ITestEngine">
<summary>
ITestEngine represents an instance of the test engine.
Clients wanting to discover, explore or run tests start
require an instance of the engine, which is generally
acquired from the TestEngineActivator class.
</summary>
</member>
<member name="P:NUnit.Engine.ITestEngine.Services">
<summary>
Gets the IServiceLocator interface, which gives access to
certain services provided by the engine.
</summary>
</member>
<member name="P:NUnit.Engine.ITestEngine.WorkDirectory">
<summary>
Gets and sets the directory path used by the engine for saving files.
Some services may ignore changes to this path made after initialization.
The default value is the current directory.
</summary>
</member>
<member name="P:NUnit.Engine.ITestEngine.InternalTraceLevel">
<summary>
Gets and sets the InternalTraceLevel used by the engine. Changing this
setting after initialization will have no effect. The default value
is the value saved in the NUnit settings.
</summary>
</member>
<member name="M:NUnit.Engine.ITestEngine.Initialize">
<summary>
Initialize the engine. This includes initializing mono addins,
setting the trace level and creating the standard set of services
used in the Engine.
This interface is not normally called by user code. Programs linking
only to the nunit.engine.api assembly are given a
pre-initialized instance of TestEngine. Programs
that link directly to nunit.engine usually do so
in order to perform custom initialization.
</summary>
</member>
<member name="M:NUnit.Engine.ITestEngine.GetRunner(NUnit.Engine.TestPackage)">
<summary>
Returns a test runner instance for use by clients in discovering,
exploring and executing tests.
</summary>
<param name="package">The TestPackage for which the runner is intended.</param>
<returns>An ITestRunner.</returns>
</member>
<member name="T:NUnit.Engine.ITestEventListener">
<summary>
The ITestListener interface is used to receive notices of significant
events while a test is running. Its single method accepts an Xml string,
which may represent any event generated by the test framework, the driver
or any of the runners internal to the engine. Use of Xml means that
any driver and framework may add additional events and the engine will
simply pass them on through this interface.
</summary>
</member>
<member name="M:NUnit.Engine.ITestEventListener.OnTestEvent(System.String)">
<summary>
Handle a progress report or other event.
</summary>
<param name="report">An XML progress report.</param>
</member>
<member name="T:NUnit.Engine.ITestFilterBuilder">
<summary>
Interface to a TestFilterBuilder, which is used to create TestFilters
</summary>
</member>
<member name="M:NUnit.Engine.ITestFilterBuilder.AddTest(System.String)">
<summary>
Add a test to be selected
</summary>
<param name="fullName">The full name of the test, as created by NUnit</param>
</member>
<member name="M:NUnit.Engine.ITestFilterBuilder.SelectWhere(System.String)">
<summary>
Specify what is to be included by the filter using a where clause.
</summary>
<param name="whereClause">A where clause that will be parsed by NUnit to create the filter.</param>
</member>
<member name="M:NUnit.Engine.ITestFilterBuilder.GetFilter">
<summary>
Get a TestFilter constructed according to the criteria specified by the other calls.
</summary>
<returns>A TestFilter.</returns>
</member>
<member name="T:NUnit.Engine.ITestFilterService">
<summary>
The TestFilterService provides builders that can create TestFilters
</summary>
</member>
<member name="M:NUnit.Engine.ITestFilterService.GetTestFilterBuilder">
<summary>
Get an uninitialized TestFilterBuilder
</summary>
</member>
<member name="T:NUnit.Engine.ITestRun">
<summary>
The ITestRun class represents an ongoing test run.
</summary>
</member>
<member name="P:NUnit.Engine.ITestRun.Result">
<summary>
Get the result of the test.
</summary>
<returns>An XmlNode representing the test run result</returns>
</member>
<member name="M:NUnit.Engine.ITestRun.Wait(System.Int32)">
<summary>
Blocks the current thread until the current test run completes
or the timeout is reached
</summary>
<param name="timeout">A <see cref="T:System.Int32"/> that represents the number of milliseconds to wait or -1 milliseconds to wait indefinitely. </param>
<returns>True if the run completed</returns>
</member>
<member name="T:NUnit.Engine.ITestRunner">
<summary>
Interface implemented by all test runners.
</summary>
</member>
<member name="P:NUnit.Engine.ITestRunner.IsTestRunning">
<summary>
Get a flag indicating whether a test is running
</summary>
</member>
<member name="M:NUnit.Engine.ITestRunner.Load">
<summary>
Load a TestPackage for possible execution
</summary>
<returns>An XmlNode representing the loaded package.</returns>
<remarks>
This method is normally optional, since Explore and Run call
it automatically when necessary. The method is kept in order
to make it easier to convert older programs that use it.
</remarks>
</member>
<member name="M:NUnit.Engine.ITestRunner.Unload">
<summary>
Unload any loaded TestPackage. If none is loaded,
the call is ignored.
</summary>
</member>
<member name="M:NUnit.Engine.ITestRunner.Reload">
<summary>
Reload the current TestPackage
</summary>
<returns>An XmlNode representing the loaded package.</returns>
</member>
<member name="M:NUnit.Engine.ITestRunner.CountTestCases(NUnit.Engine.TestFilter)">
<summary>
Count the test cases that would be run under
the specified filter.
</summary>
<param name="filter">A TestFilter</param>
<returns>The count of test cases</returns>
</member>
<member name="M:NUnit.Engine.ITestRunner.Run(NUnit.Engine.ITestEventListener,NUnit.Engine.TestFilter)">
<summary>
Run the tests in the loaded TestPackage and return a test result. The tests
are run synchronously and the listener interface is notified as it progresses.
</summary>
<param name="listener">The listener that is notified as the run progresses</param>
<param name="filter">A TestFilter used to select tests</param>
<returns>An XmlNode giving the result of the test execution</returns>
</member>
<member name="M:NUnit.Engine.ITestRunner.RunAsync(NUnit.Engine.ITestEventListener,NUnit.Engine.TestFilter)">
<summary>
Start a run of the tests in the loaded TestPackage. The tests are run
asynchronously and the listener interface is notified as it progresses.
</summary>
<param name="listener">The listener that is notified as the run progresses</param>
<param name="filter">A TestFilter used to select tests</param>
<returns></returns>
</member>
<member name="M:NUnit.Engine.ITestRunner.StopRun(System.Boolean)">
<summary>
Cancel the ongoing test run. If no test is running, the call is ignored.
</summary>
<param name="force">If true, cancel any ongoing test threads, otherwise wait for them to complete.</param>
</member>
<member name="M:NUnit.Engine.ITestRunner.Explore(NUnit.Engine.TestFilter)">
<summary>
Explore a loaded TestPackage and return information about the tests found.
</summary>
<param name="filter">The TestFilter to be used in selecting tests to explore.</param>
<returns>An XmlNode representing the tests found.</returns>
</member>
<member name="T:NUnit.Engine.TestEngineActivator">
<summary>
TestEngineActivator creates an instance of the test engine and returns an ITestEngine interface.
</summary>
</member>
<member name="M:NUnit.Engine.TestEngineActivator.CreateInstance(System.Boolean)">
<summary>
Create an instance of the test engine.
</summary>
<param name="unused">This parameter is no longer used but has not been removed to ensure API compatibility.</param>
<exception cref="T:NUnit.Engine.NUnitEngineNotFoundException">Thrown when a test engine of the required minimum version is not found</exception>
<returns>An <see cref="T:NUnit.Engine.ITestEngine"/></returns>
</member>
<member name="M:NUnit.Engine.TestEngineActivator.CreateInstance(System.Version,System.Boolean)">
<summary>
Create an instance of the test engine with a minimum version.
</summary>
<param name="minVersion">The minimum version of the engine to return inclusive.</param>
<param name="unused">This parameter is no longer used but has not been removed to ensure API compatibility.</param>
<exception cref="T:NUnit.Engine.NUnitEngineNotFoundException">Thrown when a test engine of the required minimum version is not found</exception>
<returns>An <see cref="T:NUnit.Engine.ITestEngine"/></returns>
</member>
<member name="T:NUnit.Engine.TestFilter">
<summary>
Abstract base for all test filters. A filter is represented
by an XmlNode with <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:NUnit.Engine.TestFilter.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:NUnit.Engine.TestFilter"/> class.
</summary>
<param name="xmlText">The XML text that specifies the filter.</param>
</member>
<member name="F:NUnit.Engine.TestFilter.Empty">
<summary>
The empty filter - one that always passes.
</summary>
</member>
<member name="P:NUnit.Engine.TestFilter.Text">
<summary>
Gets the XML representation of this filter as a string.
</summary>
</member>
<member name="T:NUnit.Engine.TestPackage">
<summary>
TestPackage holds information about a set of test files to
be loaded by a TestRunner. Each TestPackage represents
tests for one or more test files. TestPackages may be named
or anonymous, depending on the constructor used.
Upon construction, a package is given an ID (string), which
remains unchanged for the lifetime of the TestPackage instance.
The package ID is passed to the test framework for use in generating
test IDs.
A runner that reloads test assemblies and wants the ids to remain stable
should avoid creating a new package but should instead use the original
package, changing settings as needed. This gives the best chance for the
tests in the reloaded assembly to match those originally loaded.
</summary>
</member>
<member name="M:NUnit.Engine.TestPackage.#ctor(System.String)">
<summary>
Construct a named TestPackage, specifying a file path for
the assembly or project to be used.
</summary>
<param name="filePath">The file path.</param>
</member>
<member name="M:NUnit.Engine.TestPackage.#ctor(System.Collections.Generic.IList{System.String})">
<summary>
Construct an anonymous TestPackage that wraps test files.
</summary>
<param name="testFiles"></param>
</member>
<member name="P:NUnit.Engine.TestPackage.ID">
<summary>
Every test package gets a unique ID used to prefix test IDs within that package.
</summary>
<remarks>
The generated ID is only unique for packages created within the same application domain.
For that reason, NUnit pre-creates all test packages that will be needed.
</remarks>
</member>
<member name="P:NUnit.Engine.TestPackage.Name">
<summary>
Gets the name of the package
</summary>
</member>
<member name="P:NUnit.Engine.TestPackage.FullName">
<summary>
Gets the path to the file containing tests. It may be
an assembly or a recognized project type.
</summary>
</member>
<member name="P:NUnit.Engine.TestPackage.SubPackages">
<summary>
Gets the list of SubPackages contained in this package
</summary>
</member>
<member name="P:NUnit.Engine.TestPackage.Settings">
<summary>
Gets the settings dictionary for this package.
</summary>
</member>
<member name="M:NUnit.Engine.TestPackage.AddSubPackage(NUnit.Engine.TestPackage)">
<summary>
Add a subproject to the package.
</summary>
<param name="subPackage">The subpackage to be added</param>
</member>
<member name="M:NUnit.Engine.TestPackage.AddSetting(System.String,System.Object)">
<summary>
Add a setting to a package and all of its subpackages.
</summary>
<param name="name">The name of the setting</param>
<param name="value">The value of the setting</param>
<remarks>
Once a package is created, subpackages may have been created
as well. If you add a setting directly to the Settings dictionary
of the package, the subpackages are not updated. This method is
used when the settings are intended to be reflected to all the
subpackages under the package.
</remarks>
</member>
<member name="M:NUnit.Engine.TestPackage.GetSetting``1(System.String,``0)">
<summary>
Return the value of a setting or a default.
</summary>
<param name="name">The name of the setting</param>
<param name="defaultSetting">The default value</param>
<returns></returns>
</member>
<member name="T:NUnit.Engine.TestSelectionParserException">
<summary>
TestSelectionParserException is thrown when an error
is found while parsing the selection expression.
</summary>
</member>
<member name="M:NUnit.Engine.TestSelectionParserException.#ctor(System.String)">
<summary>
Construct with a message
</summary>
</member>
<member name="M:NUnit.Engine.TestSelectionParserException.#ctor(System.String,System.Exception)">
<summary>
Construct with a message and inner exception
</summary>
<param name="message"></param>
<param name="innerException"></param>
</member>
<member name="M:NUnit.Engine.TestSelectionParserException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serialization constructor
</summary>
</member>
</members>
</doc>
md5: C2E3F991E99326B2D489EAE9B82D72C4 | sha1: 310FE818A1773E74188E20BC4652A8D3E4227FA5 | sha256: A938B0701C87DADC7A09E8FF7303C4F99D70D90A8FB27E77CB96B55EAD68442F | sha512: D7C1FBBDD348323AC4E920A7F61B7A6900A1DB8C087B600433502ED08E598DE17F392C2A0C6D7ED03643085354A2C3BFF134CFC4F5E6935497BD8BF3553B2507
md5: 28FCEF2FE7F3D3430A5BEEB5A0E998A9 | sha1: 228D3569AA37BC5A60A50404E3D7371A870AC453 | sha256: 9B6975C9821F1BD152DE573516847CF0D7BFDE33A7DAE52553E8149A0CD490E4 | sha512: F1CB9E669C07187FD0AC0CE9556A05106164258633B610A0B76F57E7F2A98EC9A5BDB7DD0188714E3D5FA647AB7B7368BA1F1665D00994CA431F552DEB1956CE
md5: 1B6533124FF9D8D4E7533FCC2ED896E1 | sha1: 77EAE59EA3A2ACC7D8AB083B4B1B5B98B49120CB | sha256: DFDF1C79CE1392251974FF084C2EE6F090D4CFA876748AEB4723DBBC760B2DF6 | sha512: C56A57D249CEEC903C8921F20CBDBBAC7281DE68BC97325FDC0E2CF10BB3E2A805220A1A1DBC1DF467326EE5087B09796B064D24088A36F75EDFF2516FC40AAF
<?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: 78BF7F9DCE6BEB09DB8F05BA2D2672C6 | sha1: 929DC407B76F3935D97DE18386825BDC6065123B | sha256: B5FD2A87CC43A1EFF1CE7F7AB86AB29ED36DC979B079881ED316ADE663AC120D | sha512: BD902D0D5227B5AB589B8BD42ABEFF4CB14187FCBDB8B413A0EEC5671B9258D130969FDC7434190544F9035532DA4532116699E819F213ECA0FFC650B2724EE0
<?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: 1EB5D51DD8CEA1DA37DA4B605FD3177F | sha1: E9839CAF9BB840A680A21F6622DCBCAE9E43D5D1 | sha256: F1BC0BF5677D24A9AE540B66BEBB835CCCD54231BB456735EE51F18BBBE25021 | sha512: 16F2B3AFC906DB3EA60E50A5D994227BBA3511620F16C6D78E783787493B444414225D4F1FC1E537DC53CA8D4F0C39D85B97642B02CFB517C348DF7E7E50D7E7
<?xml version="1.0"?>
<doc>
<assembly>
<name>nunit.engine.api</name>
</assembly>
<members>
<member name="T:NUnit.Engine.NUnitEngineException">
<summary>
NUnitEngineException is thrown when the engine has been
called with improper values or when a particular facility
is not available.
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineException.#ctor(System.String)">
<summary>
Construct with a message
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineException.#ctor(System.String,System.Exception)">
<summary>
Construct with a message and inner exception
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serialization constructor
</summary>
</member>
<member name="T:NUnit.Engine.NUnitEngineNotFoundException">
<summary>
The exception that is thrown if a valid test engine is not found
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineNotFoundException.#ctor">
<summary>
Initializes a new instance of the <see cref="T:NUnit.Engine.NUnitEngineNotFoundException"/> class.
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineNotFoundException.#ctor(System.Version)">
<summary>
Initializes a new instance of the <see cref="T:NUnit.Engine.NUnitEngineNotFoundException"/> class.
</summary>
<param name="minVersion">The minimum version.</param>
</member>
<member name="T:NUnit.Engine.NUnitEngineUnloadException">
<summary>
NUnitEngineUnloadException is thrown when a test run has completed successfully
but one or more errors were encountered when attempting to unload
and shut down the test run cleanly.
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.String)">
<summary>
Construct with a message
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.String,System.Exception)">
<summary>
Construct with a message and inner exception
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.Collections.Generic.ICollection{System.Exception})">
<summary>
Construct with a message and a collection of exceptions.
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serialization constructor.
</summary>
</member>
<member name="P:NUnit.Engine.NUnitEngineUnloadException.AggregatedExceptions">
<summary>
Gets the collection of exceptions .
</summary>
</member>
<member name="T:NUnit.Engine.Extensibility.ExtensionAttribute">
<summary>
The ExtensionAttribute is used to identify a class that is intended
to serve as an extension.
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.ExtensionAttribute.#ctor">
<summary>
Initializes a new instance of the <see cref="T:NUnit.Engine.Extensibility.ExtensionAttribute"/> class.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.Path">
<summary>
A unique string identifying the ExtensionPoint for which this Extension is
intended. This is an optional field provided NUnit is able to deduce the
ExtensionPoint from the Type of the extension class.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.Description">
<summary>
An optional description of what the extension does.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.Enabled">
<summary>
Flag indicating whether the extension is enabled.
</summary>
<value><c>true</c> if enabled; otherwise, <c>false</c>.</value>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.EngineVersion">
<summary>
The minimum Engine version for which this extension is designed
</summary>
</member>
<member name="T:NUnit.Engine.Extensibility.ExtensionPointAttribute">
<summary>
ExtensionPointAttribute is used at the assembly level to identify and
document any ExtensionPoints supported by the assembly.
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.ExtensionPointAttribute.#ctor(System.String,System.Type)">
<summary>
Construct an ExtensionPointAttribute
</summary>
<param name="path">A unique string identifying the extension point.</param>
<param name="type">The required Type of any extension that is installed at this extension point.</param>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionPointAttribute.Path">
<summary>
The unique string identifying this ExtensionPoint. This identifier
is typically formatted as a path using '/' and the set of extension
points is sometimes viewed as forming a tree.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionPointAttribute.Type">
<summary>
The required Type (usually an interface) of any extension that is
installed at this ExtensionPoint.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionPointAttribute.Description">
<summary>
An optional description of the purpose of the ExtensionPoint
</summary>
</member>
<member name="T:NUnit.Engine.Extensibility.ExtensionPropertyAttribute">
<summary>
The ExtensionPropertyAttribute is used to specify named properties for an extension.
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.ExtensionPropertyAttribute.#ctor(System.String,System.String)">
<summary>
Construct an ExtensionPropertyAttribute
</summary>
<param name="name">The name of the property</param>
<param name="value">The property value</param>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionPropertyAttribute.Name">
<summary>
The name of the property.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionPropertyAttribute.Value">
<summary>
The property value
</summary>
</member>
<member name="T:NUnit.Engine.Extensibility.IDriverFactory">
<summary>
Interface implemented by a Type that knows how to create a driver for a test assembly.
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.IDriverFactory.IsSupportedTestFramework(System.Reflection.AssemblyName)">
<summary>
Gets a flag indicating whether a given AssemblyName
represents a test framework supported by this factory.
</summary>
<param name="reference">An AssemblyName referring to the possible test framework.</param>
</member>
<member name="M:NUnit.Engine.Extensibility.IDriverFactory.GetDriver(System.AppDomain,System.Reflection.AssemblyName)">
<summary>
Gets a driver for a given test assembly and a framework
which the assembly is already known to reference.
</summary>
<param name="domain">The domain in which the assembly will be loaded</param>
<param name="reference">An AssemblyName referring to the test framework.</param>
<returns></returns>
</member>
<member name="T:NUnit.Engine.Extensibility.IExtensionNode">
<summary>
The IExtensionNode interface is implemented by a class that represents a
single extension being installed on a particular extension point.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionNode.TypeName">
<summary>
Gets the full name of the Type of the extension object.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionNode.Enabled">
<summary>
Gets a value indicating whether this <see cref="T:NUnit.Engine.Extensibility.IExtensionNode"/> is enabled.
</summary>
<value><c>true</c> if enabled; otherwise, <c>false</c>.</value>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionNode.Path">
<summary>
Gets the unique string identifying the ExtensionPoint for which
this Extension is intended. This identifier may be supplied by the attribute
marking the extension or deduced by NUnit from the Type of the extension class.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionNode.Description">
<summary>
Gets an optional description of what the extension does.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionNode.TargetFramework">
<summary>
The TargetFramework of the extension assembly.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionNode.PropertyNames">
<summary>
Gets a collection of the names of all this extension's properties
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.IExtensionNode.GetValues(System.String)">
<summary>
Gets a collection of the values of a particular named property
If none are present, returns an empty enumerator.
</summary>
<param name="name">The property name</param>
<returns>A collection of values</returns>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionNode.AssemblyPath">
<summary>
The path to the assembly implementing this extension.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionNode.AssemblyVersion">
<summary>
The version of the assembly implementing this extension.
</summary>
</member>
<member name="T:NUnit.Engine.Extensibility.IExtensionPoint">
<summary>
An ExtensionPoint represents a single point in the TestEngine
that may be extended by user addins and extensions.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionPoint.Path">
<summary>
Gets the unique path identifying this extension point.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionPoint.Description">
<summary>
Gets the description of this extension point. May be null.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionPoint.TypeName">
<summary>
Gets the FullName of the Type required for any extension to be installed at this extension point.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionPoint.Extensions">
<summary>
Gets an enumeration of IExtensionNodes for extensions installed on this extension point.
</summary>
</member>
<member name="T:NUnit.Engine.Extensibility.IFrameworkDriver">
<summary>
The IFrameworkDriver interface is implemented by a class that
is able to use an external framework to explore or run tests
under the engine.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IFrameworkDriver.ID">
<summary>
Gets and sets the unique identifier for this driver,
used to ensure that test ids are unique across drivers.
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.Load(System.String,System.Collections.Generic.IDictionary{System.String,System.Object})">
<summary>
Loads the tests in an assembly.
</summary>
<returns>An Xml string representing the loaded test</returns>
</member>
<member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.CountTestCases(System.String)">
<summary>
Count the test cases that would be executed.
</summary>
<param name="filter">An XML string representing the TestFilter to use in counting the tests</param>
<returns>The number of test cases counted</returns>
</member>
<member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.Run(NUnit.Engine.ITestEventListener,System.String)">
<summary>
Executes the tests in an assembly.
</summary>
<param name="listener">An ITestEventHandler that receives progress notices</param>
<param name="filter">A XML string representing the filter that controls which tests are executed</param>
<returns>An Xml string representing the result</returns>
</member>
<member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.Explore(System.String)">
<summary>
Returns information about the tests in an assembly.
</summary>
<param name="filter">An XML string representing the filter that controls which tests are included</param>
<returns>An Xml string representing the tests</returns>
</member>
<member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.StopRun(System.Boolean)">
<summary>
Cancel the ongoing test run. If no test is running, the call is ignored.
</summary>
<param name="force">If true, cancel any ongoing test threads, otherwise wait for them to complete.</param>
</member>
<member name="T:NUnit.Engine.Extensibility.IProject">
<summary>
Interface for the various project types that the engine can load.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IProject.ProjectPath">
<summary>
Gets the path to the file storing this project, if any.
If the project has not been saved, this is null.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IProject.ActiveConfigName">
<summary>
Gets the active configuration, as defined
by the particular project.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IProject.ConfigNames">
<summary>
Gets a list of the configs for this project
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.IProject.GetTestPackage">
<summary>
Gets a test package for the primary or active
configuration within the project. The package
includes all the assemblies and any settings
specified in the project format.
</summary>
<returns>A TestPackage</returns>
</member>
<member name="M:NUnit.Engine.Extensibility.IProject.GetTestPackage(System.String)">
<summary>
Gets a TestPackage for a specific configuration
within the project. The package includes all the
assemblies and any settings specified in the
project format.
</summary>
<param name="configName">The name of the config to use</param>
<returns>A TestPackage for the named configuration.</returns>
</member>
<member name="T:NUnit.Engine.Extensibility.IProjectLoader">
<summary>
The IProjectLoader interface is implemented by any class
that knows how to load projects in a specific format.
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.IProjectLoader.CanLoadFrom(System.String)">
<summary>
Returns true if the file indicated is one that this
loader knows how to load.
</summary>
<param name="path">The path of the project file</param>
<returns>True if the loader knows how to load this file, otherwise false</returns>
</member>
<member name="M:NUnit.Engine.Extensibility.IProjectLoader.LoadFrom(System.String)">
<summary>
Loads a project of a known format.
</summary>
<param name="path">The path of the project file</param>
<returns>An IProject interface to the loaded project or null if the project cannot be loaded</returns>
</member>
<member name="T:NUnit.Engine.Extensibility.IResultWriter">
<summary>
Common interface for objects that process and write out test results
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.IResultWriter.CheckWritability(System.String)">
<summary>
Checks if the output path is writable. If the output is not
writable, this method should throw an exception.
</summary>
<param name="outputPath"></param>
</member>
<member name="M:NUnit.Engine.Extensibility.IResultWriter.WriteResultFile(System.Xml.XmlNode,System.String)">
<summary>
Writes result to the specified output path.
</summary>
<param name="resultNode">XmlNode for the result</param>
<param name="outputPath">Path to which it should be written</param>
</member>
<member name="M:NUnit.Engine.Extensibility.IResultWriter.WriteResultFile(System.Xml.XmlNode,System.IO.TextWriter)">
<summary>
Writes result to a TextWriter.
</summary>
<param name="resultNode">XmlNode for the result</param>
<param name="writer">TextWriter to which it should be written</param>
</member>
<member name="T:NUnit.Engine.Extensibility.TypeExtensionPointAttribute">
<summary>
TypeExtensionPointAttribute is used to bind an extension point
to a class or interface.
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.#ctor(System.String)">
<summary>
Construct a TypeExtensionPointAttribute, specifying the path.
</summary>
<param name="path">A unique string identifying the extension point.</param>
</member>
<member name="M:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.#ctor">
<summary>
Construct an TypeExtensionPointAttribute, without specifying the path.
The extension point will use a path constructed based on the interface
or class to which the attribute is applied.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.Path">
<summary>
The unique string identifying this ExtensionPoint. This identifier
is typically formatted as a path using '/' and the set of extension
points is sometimes viewed as forming a tree.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.Description">
<summary>
An optional description of the purpose of the ExtensionPoint
</summary>
</member>
<member name="T:NUnit.Engine.IAvailableRuntimes">
<summary>
Interface that returns a list of available runtime frameworks.
</summary>
</member>
<member name="P:NUnit.Engine.IAvailableRuntimes.AvailableRuntimes">
<summary>
Gets a list of available runtime frameworks.
</summary>
</member>
<member name="T:NUnit.Engine.IExtensionService">
<summary>
The IExtensionService interface allows a runner to manage extensions.
</summary>
</member>
<member name="P:NUnit.Engine.IExtensionService.ExtensionPoints">
<summary>
Gets an enumeration of all ExtensionPoints in the engine.
</summary>
</member>
<member name="P:NUnit.Engine.IExtensionService.Extensions">
<summary>
Gets an enumeration of all installed Extensions.
</summary>
</member>
<member name="M:NUnit.Engine.IExtensionService.GetExtensionPoint(System.String)">
<summary>
Get an ExtensionPoint based on its unique identifying path.
</summary>
</member>
<member name="M:NUnit.Engine.IExtensionService.GetExtensionNodes(System.String)">
<summary>
Get an enumeration of ExtensionNodes based on their identifying path.
</summary>
</member>
<member name="M:NUnit.Engine.IExtensionService.EnableExtension(System.String,System.Boolean)">
<summary>
Enable or disable an extension
</summary>
<param name="typeName"></param>
<param name="enabled"></param>
</member>
<member name="T:NUnit.Engine.ILogger">
<summary>
Interface for logging within the engine
</summary>
</member>
<member name="M:NUnit.Engine.ILogger.Error(System.String)">
<summary>
Logs the specified message at the error level.
</summary>
<param name="message">The message.</param>
</member>
<member name="M:NUnit.Engine.ILogger.Error(System.String,System.Object[])">
<summary>
Logs the specified message at the error level.
</summary>
<param name="format">The message.</param>
<param name="args">The arguments.</param>
</member>
<member name="M:NUnit.Engine.ILogger.Warning(System.String)">
<summary>
Logs the specified message at the warning level.
</summary>
<param name="message">The message.</param>
</member>
<member name="M:NUnit.Engine.ILogger.Warning(System.String,System.Object[])">
<summary>
Logs the specified message at the warning level.
</summary>
<param name="format">The message.</param>
<param name="args">The arguments.</param>
</member>
<member name="M:NUnit.Engine.ILogger.Info(System.String)">
<summary>
Logs the specified message at the info level.
</summary>
<param name="message">The message.</param>
</member>
<member name="M:NUnit.Engine.ILogger.Info(System.String,System.Object[])">
<summary>
Logs the specified message at the info level.
</summary>
<param name="format">The message.</param>
<param name="args">The arguments.</param>
</member>
<member name="M:NUnit.Engine.ILogger.Debug(System.String)">
<summary>
Logs the specified message at the debug level.
</summary>
<param name="message">The message.</param>
</member>
<member name="M:NUnit.Engine.ILogger.Debug(System.String,System.Object[])">
<summary>
Logs the specified message at the debug level.
</summary>
<param name="format">The message.</param>
<param name="args">The arguments.</param>
</member>
<member name="T:NUnit.Engine.ILogging">
<summary>
Interface to abstract getting loggers
</summary>
</member>
<member name="M:NUnit.Engine.ILogging.GetLogger(System.String)">
<summary>
Gets the logger.
</summary>
<param name="name">The name of the logger to get.</param>
<returns></returns>
</member>
<member name="T:NUnit.Engine.InternalTraceLevel">
<summary>
InternalTraceLevel is an enumeration controlling the
level of detailed presented in the internal log.
</summary>
</member>
<member name="F:NUnit.Engine.InternalTraceLevel.Default">
<summary>
Use the default settings as specified by the user.
</summary>
</member>
<member name="F:NUnit.Engine.InternalTraceLevel.Off">
<summary>
Do not display any trace messages
</summary>
</member>
<member name="F:NUnit.Engine.InternalTraceLevel.Error">
<summary>
Display Error messages only
</summary>
</member>
<member name="F:NUnit.Engine.InternalTraceLevel.Warning">
<summary>
Display Warning level and higher messages
</summary>
</member>
<member name="F:NUnit.Engine.InternalTraceLevel.Info">
<summary>
Display informational and higher messages
</summary>
</member>
<member name="F:NUnit.Engine.InternalTraceLevel.Debug">
<summary>
Display debug messages and higher - i.e. all messages
</summary>
</member>
<member name="F:NUnit.Engine.InternalTraceLevel.Verbose">
<summary>
Display debug messages and higher - i.e. all messages
</summary>
</member>
<member name="T:NUnit.Engine.IRecentFiles">
<summary>
The IRecentFiles interface is used to isolate the app
from various implementations of recent files.
</summary>
</member>
<member name="P:NUnit.Engine.IRecentFiles.MaxFiles">
<summary>
The max number of files saved
</summary>
</member>
<member name="P:NUnit.Engine.IRecentFiles.Entries">
<summary>
Get a list of all the file entries
</summary>
<returns>The most recent file list</returns>
</member>
<member name="M:NUnit.Engine.IRecentFiles.SetMostRecent(System.String)">
<summary>
Set the most recent file name, reordering
the saved names as needed and removing the oldest
if the max number of files would be exceeded.
The current CLR version is used to create the entry.
</summary>
</member>
<member name="M:NUnit.Engine.IRecentFiles.Remove(System.String)">
<summary>
Remove a file from the list
</summary>
<param name="fileName">The name of the file to remove</param>
</member>
<member name="T:NUnit.Engine.IResultService">
<summary>
IResultWriterService provides result writers for a specified
well-known format.
</summary>
</member>
<member name="P:NUnit.Engine.IResultService.Formats">
<summary>
Gets an array of the available formats
</summary>
</member>
<member name="M:NUnit.Engine.IResultService.GetResultWriter(System.String,System.Object[])">
<summary>
Gets a ResultWriter for a given format and set of arguments.
</summary>
<param name="format">The name of the format to be used</param>
<param name="args">A set of arguments to be used in constructing the writer or null if non arguments are needed</param>
<returns>An IResultWriter</returns>
</member>
<member name="T:NUnit.Engine.IRuntimeFramework">
<summary>
Interface implemented by objects representing a runtime framework.
</summary>
</member>
<member name="P:NUnit.Engine.IRuntimeFramework.Id">
<summary>
Gets the inique Id for this runtime, such as "net-4.5"
</summary>
</member>
<member name="P:NUnit.Engine.IRuntimeFramework.DisplayName">
<summary>
Gets the display name of the framework, such as ".NET 4.5"
</summary>
</member>
<member name="P:NUnit.Engine.IRuntimeFramework.FrameworkVersion">
<summary>
Gets the framework version: usually contains two components, Major
and Minor, which match the corresponding CLR components, but not always.
</summary>
</member>
<member name="P:NUnit.Engine.IRuntimeFramework.ClrVersion">
<summary>
Gets the Version of the CLR for this framework
</summary>
</member>
<member name="P:NUnit.Engine.IRuntimeFramework.Profile">
<summary>
Gets a string representing the particular profile installed,
or null if there is no profile. Currently. the only defined
values are Full and Client.
</summary>
</member>
<member name="T:NUnit.Engine.IRuntimeFrameworkService">
<summary>
Implemented by a type that provides information about the
current and other available runtimes.
</summary>
</member>
<member name="M:NUnit.Engine.IRuntimeFrameworkService.IsAvailable(System.String)">
<summary>
Returns true if the runtime framework represented by
the string passed as an argument is available.
</summary>
<param name="framework">A string representing a framework, like 'net-4.0'</param>
<returns>True if the framework is available, false if unavailable or nonexistent</returns>
</member>
<member name="M:NUnit.Engine.IRuntimeFrameworkService.SelectRuntimeFramework(NUnit.Engine.TestPackage)">
<summary>
Selects a target runtime framework for a TestPackage based on
the settings in the package and the assemblies themselves.
The package RuntimeFramework setting may be updated as a
result and the selected runtime is returned.
Note that if a package has subpackages, the subpackages may run on a different
framework to the top-level package. In future, this method should
probably not return a simple string, and instead require runners
to inspect the test package structure, to find all desired frameworks.
</summary>
<param name="package">A TestPackage</param>
<returns>The selected RuntimeFramework</returns>
</member>
<member name="T:NUnit.Engine.ServiceStatus">
<summary>
Enumeration representing the status of a service
</summary>
</member>
<member name="F:NUnit.Engine.ServiceStatus.Stopped">
<summary>Service was never started or has been stopped</summary>
</member>
<member name="F:NUnit.Engine.ServiceStatus.Started">
<summary>Started successfully</summary>
</member>
<member name="F:NUnit.Engine.ServiceStatus.Error">
<summary>Service failed to start and is unavailable</summary>
</member>
<member name="T:NUnit.Engine.IService">
<summary>
The IService interface is implemented by all Services. Although it
is extensible, it does not reside in the Extensibility namespace
because it is so widely used by the engine.
</summary>
</member>
<member name="P:NUnit.Engine.IService.ServiceContext">
<summary>
The ServiceContext
</summary>
</member>
<member name="P:NUnit.Engine.IService.Status">
<summary>
Gets the ServiceStatus of this service
</summary>
</member>
<member name="M:NUnit.Engine.IService.StartService">
<summary>
Initialize the Service
</summary>
</member>
<member name="M:NUnit.Engine.IService.StopService">
<summary>
Do any cleanup needed before terminating the service
</summary>
</member>
<member name="T:NUnit.Engine.IServiceLocator">
<summary>
IServiceLocator allows clients to locate any NUnit services
for which the interface is referenced. In normal use, this
linits it to those services using interfaces defined in the
nunit.engine.api assembly.
</summary>
</member>
<member name="M:NUnit.Engine.IServiceLocator.GetService``1">
<summary>
Return a specified type of service
</summary>
</member>
<member name="M:NUnit.Engine.IServiceLocator.GetService(System.Type)">
<summary>
Return a specified type of service
</summary>
</member>
<member name="T:NUnit.Engine.SettingsEventHandler">
<summary>
Event handler for settings changes
</summary>
<param name="sender">The sender.</param>
<param name="args">The <see cref="T:NUnit.Engine.SettingsEventArgs"/> instance containing the event data.</param>
</member>
<member name="T:NUnit.Engine.SettingsEventArgs">
<summary>
Event argument for settings changes
</summary>
</member>
<member name="M:NUnit.Engine.SettingsEventArgs.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:NUnit.Engine.SettingsEventArgs"/> class.
</summary>
<param name="settingName">Name of the setting that has changed.</param>
</member>
<member name="P:NUnit.Engine.SettingsEventArgs.SettingName">
<summary>
Gets the name of the setting that has changed
</summary>
</member>
<member name="T:NUnit.Engine.ISettings">
<summary>
The ISettings interface is used to access all user
settings and options.
</summary>
</member>
<member name="E:NUnit.Engine.ISettings.Changed">
<summary>
Occurs when the settings are changed.
</summary>
</member>
<member name="M:NUnit.Engine.ISettings.GetSetting(System.String)">
<summary>
Load a setting from the storage.
</summary>
<param name="settingName">Name of the setting to load</param>
<returns>Value of the setting or null</returns>
</member>
<member name="M:NUnit.Engine.ISettings.GetSetting``1(System.String,``0)">
<summary>
Load a setting from the storage or return a default value
</summary>
<param name="settingName">Name of the setting to load</param>
<param name="defaultValue">Value to return if the setting is missing</param>
<returns>Value of the setting or the default value</returns>
</member>
<member name="M:NUnit.Engine.ISettings.RemoveSetting(System.String)">
<summary>
Remove a setting from the storage
</summary>
<param name="settingName">Name of the setting to remove</param>
</member>
<member name="M:NUnit.Engine.ISettings.RemoveGroup(System.String)">
<summary>
Remove an entire group of settings from the storage
</summary>
<param name="groupName">Name of the group to remove</param>
</member>
<member name="M:NUnit.Engine.ISettings.SaveSetting(System.String,System.Object)">
<summary>
Save a setting in the storage
</summary>
<param name="settingName">Name of the setting to save</param>
<param name="settingValue">Value to be saved</param>
</member>
<member name="T:NUnit.Engine.ITestEngine">
<summary>
ITestEngine represents an instance of the test engine.
Clients wanting to discover, explore or run tests start
require an instance of the engine, which is generally
acquired from the TestEngineActivator class.
</summary>
</member>
<member name="P:NUnit.Engine.ITestEngine.Services">
<summary>
Gets the IServiceLocator interface, which gives access to
certain services provided by the engine.
</summary>
</member>
<member name="P:NUnit.Engine.ITestEngine.WorkDirectory">
<summary>
Gets and sets the directory path used by the engine for saving files.
Some services may ignore changes to this path made after initialization.
The default value is the current directory.
</summary>
</member>
<member name="P:NUnit.Engine.ITestEngine.InternalTraceLevel">
<summary>
Gets and sets the InternalTraceLevel used by the engine. Changing this
setting after initialization will have no effect. The default value
is the value saved in the NUnit settings.
</summary>
</member>
<member name="M:NUnit.Engine.ITestEngine.Initialize">
<summary>
Initialize the engine. This includes initializing mono addins,
setting the trace level and creating the standard set of services
used in the Engine.
This interface is not normally called by user code. Programs linking
only to the nunit.engine.api assembly are given a
pre-initialized instance of TestEngine. Programs
that link directly to nunit.engine usually do so
in order to perform custom initialization.
</summary>
</member>
<member name="M:NUnit.Engine.ITestEngine.GetRunner(NUnit.Engine.TestPackage)">
<summary>
Returns a test runner instance for use by clients in discovering,
exploring and executing tests.
</summary>
<param name="package">The TestPackage for which the runner is intended.</param>
<returns>An ITestRunner.</returns>
</member>
<member name="T:NUnit.Engine.ITestEventListener">
<summary>
The ITestListener interface is used to receive notices of significant
events while a test is running. Its single method accepts an Xml string,
which may represent any event generated by the test framework, the driver
or any of the runners internal to the engine. Use of Xml means that
any driver and framework may add additional events and the engine will
simply pass them on through this interface.
</summary>
</member>
<member name="M:NUnit.Engine.ITestEventListener.OnTestEvent(System.String)">
<summary>
Handle a progress report or other event.
</summary>
<param name="report">An XML progress report.</param>
</member>
<member name="T:NUnit.Engine.ITestFilterBuilder">
<summary>
Interface to a TestFilterBuilder, which is used to create TestFilters
</summary>
</member>
<member name="M:NUnit.Engine.ITestFilterBuilder.AddTest(System.String)">
<summary>
Add a test to be selected
</summary>
<param name="fullName">The full name of the test, as created by NUnit</param>
</member>
<member name="M:NUnit.Engine.ITestFilterBuilder.SelectWhere(System.String)">
<summary>
Specify what is to be included by the filter using a where clause.
</summary>
<param name="whereClause">A where clause that will be parsed by NUnit to create the filter.</param>
</member>
<member name="M:NUnit.Engine.ITestFilterBuilder.GetFilter">
<summary>
Get a TestFilter constructed according to the criteria specified by the other calls.
</summary>
<returns>A TestFilter.</returns>
</member>
<member name="T:NUnit.Engine.ITestFilterService">
<summary>
The TestFilterService provides builders that can create TestFilters
</summary>
</member>
<member name="M:NUnit.Engine.ITestFilterService.GetTestFilterBuilder">
<summary>
Get an uninitialized TestFilterBuilder
</summary>
</member>
<member name="T:NUnit.Engine.ITestRun">
<summary>
The ITestRun class represents an ongoing test run.
</summary>
</member>
<member name="P:NUnit.Engine.ITestRun.Result">
<summary>
Get the result of the test.
</summary>
<returns>An XmlNode representing the test run result</returns>
</member>
<member name="M:NUnit.Engine.ITestRun.Wait(System.Int32)">
<summary>
Blocks the current thread until the current test run completes
or the timeout is reached
</summary>
<param name="timeout">A <see cref="T:System.Int32"/> that represents the number of milliseconds to wait or -1 milliseconds to wait indefinitely. </param>
<returns>True if the run completed</returns>
</member>
<member name="T:NUnit.Engine.ITestRunner">
<summary>
Interface implemented by all test runners.
</summary>
</member>
<member name="P:NUnit.Engine.ITestRunner.IsTestRunning">
<summary>
Get a flag indicating whether a test is running
</summary>
</member>
<member name="M:NUnit.Engine.ITestRunner.Load">
<summary>
Load a TestPackage for possible execution
</summary>
<returns>An XmlNode representing the loaded package.</returns>
<remarks>
This method is normally optional, since Explore and Run call
it automatically when necessary. The method is kept in order
to make it easier to convert older programs that use it.
</remarks>
</member>
<member name="M:NUnit.Engine.ITestRunner.Unload">
<summary>
Unload any loaded TestPackage. If none is loaded,
the call is ignored.
</summary>
</member>
<member name="M:NUnit.Engine.ITestRunner.Reload">
<summary>
Reload the current TestPackage
</summary>
<returns>An XmlNode representing the loaded package.</returns>
</member>
<member name="M:NUnit.Engine.ITestRunner.CountTestCases(NUnit.Engine.TestFilter)">
<summary>
Count the test cases that would be run under
the specified filter.
</summary>
<param name="filter">A TestFilter</param>
<returns>The count of test cases</returns>
</member>
<member name="M:NUnit.Engine.ITestRunner.Run(NUnit.Engine.ITestEventListener,NUnit.Engine.TestFilter)">
<summary>
Run the tests in the loaded TestPackage and return a test result. The tests
are run synchronously and the listener interface is notified as it progresses.
</summary>
<param name="listener">The listener that is notified as the run progresses</param>
<param name="filter">A TestFilter used to select tests</param>
<returns>An XmlNode giving the result of the test execution</returns>
</member>
<member name="M:NUnit.Engine.ITestRunner.RunAsync(NUnit.Engine.ITestEventListener,NUnit.Engine.TestFilter)">
<summary>
Start a run of the tests in the loaded TestPackage. The tests are run
asynchronously and the listener interface is notified as it progresses.
</summary>
<param name="listener">The listener that is notified as the run progresses</param>
<param name="filter">A TestFilter used to select tests</param>
<returns></returns>
</member>
<member name="M:NUnit.Engine.ITestRunner.StopRun(System.Boolean)">
<summary>
Cancel the ongoing test run. If no test is running, the call is ignored.
</summary>
<param name="force">If true, cancel any ongoing test threads, otherwise wait for them to complete.</param>
</member>
<member name="M:NUnit.Engine.ITestRunner.Explore(NUnit.Engine.TestFilter)">
<summary>
Explore a loaded TestPackage and return information about the tests found.
</summary>
<param name="filter">The TestFilter to be used in selecting tests to explore.</param>
<returns>An XmlNode representing the tests found.</returns>
</member>
<member name="T:NUnit.Engine.TestEngineActivator">
<summary>
TestEngineActivator creates an instance of the test engine and returns an ITestEngine interface.
</summary>
</member>
<member name="M:NUnit.Engine.TestEngineActivator.CreateInstance(System.Boolean)">
<summary>
Create an instance of the test engine.
</summary>
<param name="unused">This parameter is no longer used but has not been removed to ensure API compatibility.</param>
<exception cref="T:NUnit.Engine.NUnitEngineNotFoundException">Thrown when a test engine of the required minimum version is not found</exception>
<returns>An <see cref="T:NUnit.Engine.ITestEngine"/></returns>
</member>
<member name="M:NUnit.Engine.TestEngineActivator.CreateInstance(System.Version,System.Boolean)">
<summary>
Create an instance of the test engine with a minimum version.
</summary>
<param name="minVersion">The minimum version of the engine to return inclusive.</param>
<param name="unused">This parameter is no longer used but has not been removed to ensure API compatibility.</param>
<exception cref="T:NUnit.Engine.NUnitEngineNotFoundException">Thrown when a test engine of the required minimum version is not found</exception>
<returns>An <see cref="T:NUnit.Engine.ITestEngine"/></returns>
</member>
<member name="T:NUnit.Engine.TestFilter">
<summary>
Abstract base for all test filters. A filter is represented
by an XmlNode with <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:NUnit.Engine.TestFilter.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:NUnit.Engine.TestFilter"/> class.
</summary>
<param name="xmlText">The XML text that specifies the filter.</param>
</member>
<member name="F:NUnit.Engine.TestFilter.Empty">
<summary>
The empty filter - one that always passes.
</summary>
</member>
<member name="P:NUnit.Engine.TestFilter.Text">
<summary>
Gets the XML representation of this filter as a string.
</summary>
</member>
<member name="T:NUnit.Engine.TestPackage">
<summary>
TestPackage holds information about a set of test files to
be loaded by a TestRunner. Each TestPackage represents
tests for one or more test files. TestPackages may be named
or anonymous, depending on the constructor used.
Upon construction, a package is given an ID (string), which
remains unchanged for the lifetime of the TestPackage instance.
The package ID is passed to the test framework for use in generating
test IDs.
A runner that reloads test assemblies and wants the ids to remain stable
should avoid creating a new package but should instead use the original
package, changing settings as needed. This gives the best chance for the
tests in the reloaded assembly to match those originally loaded.
</summary>
</member>
<member name="M:NUnit.Engine.TestPackage.#ctor(System.String)">
<summary>
Construct a named TestPackage, specifying a file path for
the assembly or project to be used.
</summary>
<param name="filePath">The file path.</param>
</member>
<member name="M:NUnit.Engine.TestPackage.#ctor(System.Collections.Generic.IList{System.String})">
<summary>
Construct an anonymous TestPackage that wraps test files.
</summary>
<param name="testFiles"></param>
</member>
<member name="P:NUnit.Engine.TestPackage.ID">
<summary>
Every test package gets a unique ID used to prefix test IDs within that package.
</summary>
<remarks>
The generated ID is only unique for packages created within the same application domain.
For that reason, NUnit pre-creates all test packages that will be needed.
</remarks>
</member>
<member name="P:NUnit.Engine.TestPackage.Name">
<summary>
Gets the name of the package
</summary>
</member>
<member name="P:NUnit.Engine.TestPackage.FullName">
<summary>
Gets the path to the file containing tests. It may be
an assembly or a recognized project type.
</summary>
</member>
<member name="P:NUnit.Engine.TestPackage.SubPackages">
<summary>
Gets the list of SubPackages contained in this package
</summary>
</member>
<member name="P:NUnit.Engine.TestPackage.Settings">
<summary>
Gets the settings dictionary for this package.
</summary>
</member>
<member name="M:NUnit.Engine.TestPackage.AddSubPackage(NUnit.Engine.TestPackage)">
<summary>
Add a subproject to the package.
</summary>
<param name="subPackage">The subpackage to be added</param>
</member>
<member name="M:NUnit.Engine.TestPackage.AddSetting(System.String,System.Object)">
<summary>
Add a setting to a package and all of its subpackages.
</summary>
<param name="name">The name of the setting</param>
<param name="value">The value of the setting</param>
<remarks>
Once a package is created, subpackages may have been created
as well. If you add a setting directly to the Settings dictionary
of the package, the subpackages are not updated. This method is
used when the settings are intended to be reflected to all the
subpackages under the package.
</remarks>
</member>
<member name="M:NUnit.Engine.TestPackage.GetSetting``1(System.String,``0)">
<summary>
Return the value of a setting or a default.
</summary>
<param name="name">The name of the setting</param>
<param name="defaultSetting">The default value</param>
<returns></returns>
</member>
<member name="T:NUnit.Engine.TestSelectionParserException">
<summary>
TestSelectionParserException is thrown when an error
is found while parsing the selection expression.
</summary>
</member>
<member name="M:NUnit.Engine.TestSelectionParserException.#ctor(System.String)">
<summary>
Construct with a message
</summary>
</member>
<member name="M:NUnit.Engine.TestSelectionParserException.#ctor(System.String,System.Exception)">
<summary>
Construct with a message and inner exception
</summary>
<param name="message"></param>
<param name="innerException"></param>
</member>
<member name="M:NUnit.Engine.TestSelectionParserException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serialization constructor
</summary>
</member>
</members>
</doc>
md5: C2E3F991E99326B2D489EAE9B82D72C4 | sha1: 310FE818A1773E74188E20BC4652A8D3E4227FA5 | sha256: A938B0701C87DADC7A09E8FF7303C4F99D70D90A8FB27E77CB96B55EAD68442F | sha512: D7C1FBBDD348323AC4E920A7F61B7A6900A1DB8C087B600433502ED08E598DE17F392C2A0C6D7ED03643085354A2C3BFF134CFC4F5E6935497BD8BF3553B2507
md5: AFB706BB8A410141C456B14CA1BB157C | sha1: D195A7871A0F5F19E7A20B29DFBA6DBA963C9D5E | sha256: B08BF44FD3270243DEF47673D606959915BA723DB7E694E58CB44A92145B0EBB | sha512: 0459AA934170CA905174458EF7D05575AE23516030C3AEDE39516E6577BFC591FB17C10DFA9FA24A0E75B39DB236467FD14D0E28BAAA10FB762B9F91D7E81FFD
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v5.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v5.0": {
"nunit-agent/3.15.2": {
"dependencies": {
"nunit.engine.api": "3.15.2",
"nunit.engine.core": "3.15.2"
},
"runtime": {
"nunit-agent.dll": {}
}
},
"TestCentric.Metadata/1.7.1": {
"runtime": {
"lib/netstandard2.0/testcentric.engine.metadata.dll": {
"assemblyVersion": "1.7.1.0",
"fileVersion": "1.7.1.0"
}
}
},
"nunit.engine.api/3.15.2": {
"runtime": {
"nunit.engine.api.dll": {}
}
},
"nunit.engine.core/3.15.2": {
"dependencies": {
"TestCentric.Metadata": "1.7.1",
"nunit.engine.api": "3.15.2"
},
"runtime": {
"nunit.engine.core.dll": {}
}
}
}
},
"libraries": {
"nunit-agent/3.15.2": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"TestCentric.Metadata/1.7.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-QjdwsUJXJbGmFKNiTZbWeRpwhqRcEAtgb+dwR4YVK8xUBBEfXfrFV074f1DBtnrOfAIT+LnZCeVVeg/fYUlAEA==",
"path": "testcentric.metadata/1.7.1",
"hashPath": "testcentric.metadata.1.7.1.nupkg.sha512"
},
"nunit.engine.api/3.15.2": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"nunit.engine.core/3.15.2": {
"type": "project",
"serviceable": false,
"sha512": ""
}
}
}
md5: 9EC17E41C015C5F5F1258DDFB0CA7BE6 | sha1: 64FF9BF075045346CA66BE99DF173E0E5D4C39F8 | sha256: 8B8870B45B1EEA311C1095EF1ECBE6CC76A7A9BC6ACEF2CF26FD8B81DDB4C66A | sha512: AC94DBCCD8C322C7AE5BBF4CE3C86BE5B4F6AF299CF76145B5E0EE1C8B4094E85F88C86BC90075E00F0357920D017735AA31A0AEF98B7E87A84ABA0F589C2BF2
<?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>
{
"runtimeOptions": {
"tfm": "net5.0",
"framework": {
"name": "Microsoft.NETCore.App",
"version": "5.0.0"
},
"configProperties": {
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false
}
}
}
md5: AF1FC26A92A9A4FE953A0DD5BB0BB012 | sha1: 2B0A2AAA11D237B8B97238D0FBBB7EA858790EE4 | sha256: 07749B711C1033F0E6086DF6500DE595AD783D859C64700930D2907EDCBFB291 | sha512: D1A0495E937E7D940AE31A94E36375376651209681E506D76EC487AF6756980D9B5F400B5157BCD21A98CE38720AA51E772507F2577012F9C605D3B9AC7A8A40
<?xml version="1.0"?>
<doc>
<assembly>
<name>nunit.engine.api</name>
</assembly>
<members>
<member name="T:NUnit.Engine.NUnitEngineException">
<summary>
NUnitEngineException is thrown when the engine has been
called with improper values or when a particular facility
is not available.
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineException.#ctor(System.String)">
<summary>
Construct with a message
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineException.#ctor(System.String,System.Exception)">
<summary>
Construct with a message and inner exception
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serialization constructor
</summary>
</member>
<member name="T:NUnit.Engine.NUnitEngineNotFoundException">
<summary>
The exception that is thrown if a valid test engine is not found
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineNotFoundException.#ctor">
<summary>
Initializes a new instance of the <see cref="T:NUnit.Engine.NUnitEngineNotFoundException"/> class.
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineNotFoundException.#ctor(System.Version)">
<summary>
Initializes a new instance of the <see cref="T:NUnit.Engine.NUnitEngineNotFoundException"/> class.
</summary>
<param name="minVersion">The minimum version.</param>
</member>
<member name="T:NUnit.Engine.NUnitEngineUnloadException">
<summary>
NUnitEngineUnloadException is thrown when a test run has completed successfully
but one or more errors were encountered when attempting to unload
and shut down the test run cleanly.
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.String)">
<summary>
Construct with a message
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.String,System.Exception)">
<summary>
Construct with a message and inner exception
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.Collections.Generic.ICollection{System.Exception})">
<summary>
Construct with a message and a collection of exceptions.
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serialization constructor.
</summary>
</member>
<member name="P:NUnit.Engine.NUnitEngineUnloadException.AggregatedExceptions">
<summary>
Gets the collection of exceptions .
</summary>
</member>
<member name="T:NUnit.Engine.Extensibility.ExtensionAttribute">
<summary>
The ExtensionAttribute is used to identify a class that is intended
to serve as an extension.
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.ExtensionAttribute.#ctor">
<summary>
Initializes a new instance of the <see cref="T:NUnit.Engine.Extensibility.ExtensionAttribute"/> class.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.Path">
<summary>
A unique string identifying the ExtensionPoint for which this Extension is
intended. This is an optional field provided NUnit is able to deduce the
ExtensionPoint from the Type of the extension class.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.Description">
<summary>
An optional description of what the extension does.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.Enabled">
<summary>
Flag indicating whether the extension is enabled.
</summary>
<value><c>true</c> if enabled; otherwise, <c>false</c>.</value>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.EngineVersion">
<summary>
The minimum Engine version for which this extension is designed
</summary>
</member>
<member name="T:NUnit.Engine.Extensibility.ExtensionPointAttribute">
<summary>
ExtensionPointAttribute is used at the assembly level to identify and
document any ExtensionPoints supported by the assembly.
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.ExtensionPointAttribute.#ctor(System.String,System.Type)">
<summary>
Construct an ExtensionPointAttribute
</summary>
<param name="path">A unique string identifying the extension point.</param>
<param name="type">The required Type of any extension that is installed at this extension point.</param>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionPointAttribute.Path">
<summary>
The unique string identifying this ExtensionPoint. This identifier
is typically formatted as a path using '/' and the set of extension
points is sometimes viewed as forming a tree.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionPointAttribute.Type">
<summary>
The required Type (usually an interface) of any extension that is
installed at this ExtensionPoint.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionPointAttribute.Description">
<summary>
An optional description of the purpose of the ExtensionPoint
</summary>
</member>
<member name="T:NUnit.Engine.Extensibility.ExtensionPropertyAttribute">
<summary>
The ExtensionPropertyAttribute is used to specify named properties for an extension.
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.ExtensionPropertyAttribute.#ctor(System.String,System.String)">
<summary>
Construct an ExtensionPropertyAttribute
</summary>
<param name="name">The name of the property</param>
<param name="value">The property value</param>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionPropertyAttribute.Name">
<summary>
The name of the property.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionPropertyAttribute.Value">
<summary>
The property value
</summary>
</member>
<member name="T:NUnit.Engine.Extensibility.IDriverFactory">
<summary>
Interface implemented by a Type that knows how to create a driver for a test assembly.
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.IDriverFactory.IsSupportedTestFramework(System.Reflection.AssemblyName)">
<summary>
Gets a flag indicating whether a given AssemblyName
represents a test framework supported by this factory.
</summary>
<param name="reference">An AssemblyName referring to the possible test framework.</param>
</member>
<member name="M:NUnit.Engine.Extensibility.IDriverFactory.GetDriver(System.Reflection.AssemblyName)">
<summary>
Gets a driver for a given test assembly and a framework
which the assembly is already known to reference.
</summary>
<param name="reference">An AssemblyName referring to the test framework.</param>
<returns></returns>
</member>
<member name="T:NUnit.Engine.Extensibility.IExtensionNode">
<summary>
The IExtensionNode interface is implemented by a class that represents a
single extension being installed on a particular extension point.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionNode.TypeName">
<summary>
Gets the full name of the Type of the extension object.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionNode.Enabled">
<summary>
Gets a value indicating whether this <see cref="T:NUnit.Engine.Extensibility.IExtensionNode"/> is enabled.
</summary>
<value><c>true</c> if enabled; otherwise, <c>false</c>.</value>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionNode.Path">
<summary>
Gets the unique string identifying the ExtensionPoint for which
this Extension is intended. This identifier may be supplied by the attribute
marking the extension or deduced by NUnit from the Type of the extension class.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionNode.Description">
<summary>
Gets an optional description of what the extension does.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionNode.TargetFramework">
<summary>
The TargetFramework of the extension assembly.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionNode.PropertyNames">
<summary>
Gets a collection of the names of all this extension's properties
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.IExtensionNode.GetValues(System.String)">
<summary>
Gets a collection of the values of a particular named property
If none are present, returns an empty enumerator.
</summary>
<param name="name">The property name</param>
<returns>A collection of values</returns>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionNode.AssemblyPath">
<summary>
The path to the assembly implementing this extension.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionNode.AssemblyVersion">
<summary>
The version of the assembly implementing this extension.
</summary>
</member>
<member name="T:NUnit.Engine.Extensibility.IExtensionPoint">
<summary>
An ExtensionPoint represents a single point in the TestEngine
that may be extended by user addins and extensions.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionPoint.Path">
<summary>
Gets the unique path identifying this extension point.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionPoint.Description">
<summary>
Gets the description of this extension point. May be null.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionPoint.TypeName">
<summary>
Gets the FullName of the Type required for any extension to be installed at this extension point.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionPoint.Extensions">
<summary>
Gets an enumeration of IExtensionNodes for extensions installed on this extension point.
</summary>
</member>
<member name="T:NUnit.Engine.Extensibility.IFrameworkDriver">
<summary>
The IFrameworkDriver interface is implemented by a class that
is able to use an external framework to explore or run tests
under the engine.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IFrameworkDriver.ID">
<summary>
Gets and sets the unique identifier for this driver,
used to ensure that test ids are unique across drivers.
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.Load(System.String,System.Collections.Generic.IDictionary{System.String,System.Object})">
<summary>
Loads the tests in an assembly.
</summary>
<returns>An Xml string representing the loaded test</returns>
</member>
<member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.CountTestCases(System.String)">
<summary>
Count the test cases that would be executed.
</summary>
<param name="filter">An XML string representing the TestFilter to use in counting the tests</param>
<returns>The number of test cases counted</returns>
</member>
<member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.Run(NUnit.Engine.ITestEventListener,System.String)">
<summary>
Executes the tests in an assembly.
</summary>
<param name="listener">An ITestEventHandler that receives progress notices</param>
<param name="filter">A XML string representing the filter that controls which tests are executed</param>
<returns>An Xml string representing the result</returns>
</member>
<member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.Explore(System.String)">
<summary>
Returns information about the tests in an assembly.
</summary>
<param name="filter">An XML string representing the filter that controls which tests are included</param>
<returns>An Xml string representing the tests</returns>
</member>
<member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.StopRun(System.Boolean)">
<summary>
Cancel the ongoing test run. If no test is running, the call is ignored.
</summary>
<param name="force">If true, cancel any ongoing test threads, otherwise wait for them to complete.</param>
</member>
<member name="T:NUnit.Engine.Extensibility.IProject">
<summary>
Interface for the various project types that the engine can load.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IProject.ProjectPath">
<summary>
Gets the path to the file storing this project, if any.
If the project has not been saved, this is null.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IProject.ActiveConfigName">
<summary>
Gets the active configuration, as defined
by the particular project.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IProject.ConfigNames">
<summary>
Gets a list of the configs for this project
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.IProject.GetTestPackage">
<summary>
Gets a test package for the primary or active
configuration within the project. The package
includes all the assemblies and any settings
specified in the project format.
</summary>
<returns>A TestPackage</returns>
</member>
<member name="M:NUnit.Engine.Extensibility.IProject.GetTestPackage(System.String)">
<summary>
Gets a TestPackage for a specific configuration
within the project. The package includes all the
assemblies and any settings specified in the
project format.
</summary>
<param name="configName">The name of the config to use</param>
<returns>A TestPackage for the named configuration.</returns>
</member>
<member name="T:NUnit.Engine.Extensibility.IProjectLoader">
<summary>
The IProjectLoader interface is implemented by any class
that knows how to load projects in a specific format.
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.IProjectLoader.CanLoadFrom(System.String)">
<summary>
Returns true if the file indicated is one that this
loader knows how to load.
</summary>
<param name="path">The path of the project file</param>
<returns>True if the loader knows how to load this file, otherwise false</returns>
</member>
<member name="M:NUnit.Engine.Extensibility.IProjectLoader.LoadFrom(System.String)">
<summary>
Loads a project of a known format.
</summary>
<param name="path">The path of the project file</param>
<returns>An IProject interface to the loaded project or null if the project cannot be loaded</returns>
</member>
<member name="T:NUnit.Engine.Extensibility.IResultWriter">
<summary>
Common interface for objects that process and write out test results
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.IResultWriter.CheckWritability(System.String)">
<summary>
Checks if the output path is writable. If the output is not
writable, this method should throw an exception.
</summary>
<param name="outputPath"></param>
</member>
<member name="M:NUnit.Engine.Extensibility.IResultWriter.WriteResultFile(System.Xml.XmlNode,System.String)">
<summary>
Writes result to the specified output path.
</summary>
<param name="resultNode">XmlNode for the result</param>
<param name="outputPath">Path to which it should be written</param>
</member>
<member name="M:NUnit.Engine.Extensibility.IResultWriter.WriteResultFile(System.Xml.XmlNode,System.IO.TextWriter)">
<summary>
Writes result to a TextWriter.
</summary>
<param name="resultNode">XmlNode for the result</param>
<param name="writer">TextWriter to which it should be written</param>
</member>
<member name="T:NUnit.Engine.Extensibility.TypeExtensionPointAttribute">
<summary>
TypeExtensionPointAttribute is used to bind an extension point
to a class or interface.
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.#ctor(System.String)">
<summary>
Construct a TypeExtensionPointAttribute, specifying the path.
</summary>
<param name="path">A unique string identifying the extension point.</param>
</member>
<member name="M:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.#ctor">
<summary>
Construct an TypeExtensionPointAttribute, without specifying the path.
The extension point will use a path constructed based on the interface
or class to which the attribute is applied.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.Path">
<summary>
The unique string identifying this ExtensionPoint. This identifier
is typically formatted as a path using '/' and the set of extension
points is sometimes viewed as forming a tree.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.Description">
<summary>
An optional description of the purpose of the ExtensionPoint
</summary>
</member>
<member name="T:NUnit.Engine.IAvailableRuntimes">
<summary>
Interface that returns a list of available runtime frameworks.
</summary>
</member>
<member name="P:NUnit.Engine.IAvailableRuntimes.AvailableRuntimes">
<summary>
Gets a list of available runtime frameworks.
</summary>
</member>
<member name="T:NUnit.Engine.IExtensionService">
<summary>
The IExtensionService interface allows a runner to manage extensions.
</summary>
</member>
<member name="P:NUnit.Engine.IExtensionService.ExtensionPoints">
<summary>
Gets an enumeration of all ExtensionPoints in the engine.
</summary>
</member>
<member name="P:NUnit.Engine.IExtensionService.Extensions">
<summary>
Gets an enumeration of all installed Extensions.
</summary>
</member>
<member name="M:NUnit.Engine.IExtensionService.GetExtensionPoint(System.String)">
<summary>
Get an ExtensionPoint based on its unique identifying path.
</summary>
</member>
<member name="M:NUnit.Engine.IExtensionService.GetExtensionNodes(System.String)">
<summary>
Get an enumeration of ExtensionNodes based on their identifying path.
</summary>
</member>
<member name="M:NUnit.Engine.IExtensionService.EnableExtension(System.String,System.Boolean)">
<summary>
Enable or disable an extension
</summary>
<param name="typeName"></param>
<param name="enabled"></param>
</member>
<member name="T:NUnit.Engine.ILogger">
<summary>
Interface for logging within the engine
</summary>
</member>
<member name="M:NUnit.Engine.ILogger.Error(System.String)">
<summary>
Logs the specified message at the error level.
</summary>
<param name="message">The message.</param>
</member>
<member name="M:NUnit.Engine.ILogger.Error(System.String,System.Object[])">
<summary>
Logs the specified message at the error level.
</summary>
<param name="format">The message.</param>
<param name="args">The arguments.</param>
</member>
<member name="M:NUnit.Engine.ILogger.Warning(System.String)">
<summary>
Logs the specified message at the warning level.
</summary>
<param name="message">The message.</param>
</member>
<member name="M:NUnit.Engine.ILogger.Warning(System.String,System.Object[])">
<summary>
Logs the specified message at the warning level.
</summary>
<param name="format">The message.</param>
<param name="args">The arguments.</param>
</member>
<member name="M:NUnit.Engine.ILogger.Info(System.String)">
<summary>
Logs the specified message at the info level.
</summary>
<param name="message">The message.</param>
</member>
<member name="M:NUnit.Engine.ILogger.Info(System.String,System.Object[])">
<summary>
Logs the specified message at the info level.
</summary>
<param name="format">The message.</param>
<param name="args">The arguments.</param>
</member>
<member name="M:NUnit.Engine.ILogger.Debug(System.String)">
<summary>
Logs the specified message at the debug level.
</summary>
<param name="message">The message.</param>
</member>
<member name="M:NUnit.Engine.ILogger.Debug(System.String,System.Object[])">
<summary>
Logs the specified message at the debug level.
</summary>
<param name="format">The message.</param>
<param name="args">The arguments.</param>
</member>
<member name="T:NUnit.Engine.ILogging">
<summary>
Interface to abstract getting loggers
</summary>
</member>
<member name="M:NUnit.Engine.ILogging.GetLogger(System.String)">
<summary>
Gets the logger.
</summary>
<param name="name">The name of the logger to get.</param>
<returns></returns>
</member>
<member name="T:NUnit.Engine.InternalTraceLevel">
<summary>
InternalTraceLevel is an enumeration controlling the
level of detailed presented in the internal log.
</summary>
</member>
<member name="F:NUnit.Engine.InternalTraceLevel.Default">
<summary>
Use the default settings as specified by the user.
</summary>
</member>
<member name="F:NUnit.Engine.InternalTraceLevel.Off">
<summary>
Do not display any trace messages
</summary>
</member>
<member name="F:NUnit.Engine.InternalTraceLevel.Error">
<summary>
Display Error messages only
</summary>
</member>
<member name="F:NUnit.Engine.InternalTraceLevel.Warning">
<summary>
Display Warning level and higher messages
</summary>
</member>
<member name="F:NUnit.Engine.InternalTraceLevel.Info">
<summary>
Display informational and higher messages
</summary>
</member>
<member name="F:NUnit.Engine.InternalTraceLevel.Debug">
<summary>
Display debug messages and higher - i.e. all messages
</summary>
</member>
<member name="F:NUnit.Engine.InternalTraceLevel.Verbose">
<summary>
Display debug messages and higher - i.e. all messages
</summary>
</member>
<member name="T:NUnit.Engine.IRecentFiles">
<summary>
The IRecentFiles interface is used to isolate the app
from various implementations of recent files.
</summary>
</member>
<member name="P:NUnit.Engine.IRecentFiles.MaxFiles">
<summary>
The max number of files saved
</summary>
</member>
<member name="P:NUnit.Engine.IRecentFiles.Entries">
<summary>
Get a list of all the file entries
</summary>
<returns>The most recent file list</returns>
</member>
<member name="M:NUnit.Engine.IRecentFiles.SetMostRecent(System.String)">
<summary>
Set the most recent file name, reordering
the saved names as needed and removing the oldest
if the max number of files would be exceeded.
The current CLR version is used to create the entry.
</summary>
</member>
<member name="M:NUnit.Engine.IRecentFiles.Remove(System.String)">
<summary>
Remove a file from the list
</summary>
<param name="fileName">The name of the file to remove</param>
</member>
<member name="T:NUnit.Engine.IResultService">
<summary>
IResultWriterService provides result writers for a specified
well-known format.
</summary>
</member>
<member name="P:NUnit.Engine.IResultService.Formats">
<summary>
Gets an array of the available formats
</summary>
</member>
<member name="M:NUnit.Engine.IResultService.GetResultWriter(System.String,System.Object[])">
<summary>
Gets a ResultWriter for a given format and set of arguments.
</summary>
<param name="format">The name of the format to be used</param>
<param name="args">A set of arguments to be used in constructing the writer or null if non arguments are needed</param>
<returns>An IResultWriter</returns>
</member>
<member name="T:NUnit.Engine.IRuntimeFramework">
<summary>
Interface implemented by objects representing a runtime framework.
</summary>
</member>
<member name="P:NUnit.Engine.IRuntimeFramework.Id">
<summary>
Gets the inique Id for this runtime, such as "net-4.5"
</summary>
</member>
<member name="P:NUnit.Engine.IRuntimeFramework.DisplayName">
<summary>
Gets the display name of the framework, such as ".NET 4.5"
</summary>
</member>
<member name="P:NUnit.Engine.IRuntimeFramework.FrameworkVersion">
<summary>
Gets the framework version: usually contains two components, Major
and Minor, which match the corresponding CLR components, but not always.
</summary>
</member>
<member name="P:NUnit.Engine.IRuntimeFramework.ClrVersion">
<summary>
Gets the Version of the CLR for this framework
</summary>
</member>
<member name="P:NUnit.Engine.IRuntimeFramework.Profile">
<summary>
Gets a string representing the particular profile installed,
or null if there is no profile. Currently. the only defined
values are Full and Client.
</summary>
</member>
<member name="T:NUnit.Engine.IRuntimeFrameworkService">
<summary>
Implemented by a type that provides information about the
current and other available runtimes.
</summary>
</member>
<member name="M:NUnit.Engine.IRuntimeFrameworkService.IsAvailable(System.String)">
<summary>
Returns true if the runtime framework represented by
the string passed as an argument is available.
</summary>
<param name="framework">A string representing a framework, like 'net-4.0'</param>
<returns>True if the framework is available, false if unavailable or nonexistent</returns>
</member>
<member name="M:NUnit.Engine.IRuntimeFrameworkService.SelectRuntimeFramework(NUnit.Engine.TestPackage)">
<summary>
Selects a target runtime framework for a TestPackage based on
the settings in the package and the assemblies themselves.
The package RuntimeFramework setting may be updated as a
result and the selected runtime is returned.
Note that if a package has subpackages, the subpackages may run on a different
framework to the top-level package. In future, this method should
probably not return a simple string, and instead require runners
to inspect the test package structure, to find all desired frameworks.
</summary>
<param name="package">A TestPackage</param>
<returns>The selected RuntimeFramework</returns>
</member>
<member name="T:NUnit.Engine.ServiceStatus">
<summary>
Enumeration representing the status of a service
</summary>
</member>
<member name="F:NUnit.Engine.ServiceStatus.Stopped">
<summary>Service was never started or has been stopped</summary>
</member>
<member name="F:NUnit.Engine.ServiceStatus.Started">
<summary>Started successfully</summary>
</member>
<member name="F:NUnit.Engine.ServiceStatus.Error">
<summary>Service failed to start and is unavailable</summary>
</member>
<member name="T:NUnit.Engine.IService">
<summary>
The IService interface is implemented by all Services. Although it
is extensible, it does not reside in the Extensibility namespace
because it is so widely used by the engine.
</summary>
</member>
<member name="P:NUnit.Engine.IService.ServiceContext">
<summary>
The ServiceContext
</summary>
</member>
<member name="P:NUnit.Engine.IService.Status">
<summary>
Gets the ServiceStatus of this service
</summary>
</member>
<member name="M:NUnit.Engine.IService.StartService">
<summary>
Initialize the Service
</summary>
</member>
<member name="M:NUnit.Engine.IService.StopService">
<summary>
Do any cleanup needed before terminating the service
</summary>
</member>
<member name="T:NUnit.Engine.IServiceLocator">
<summary>
IServiceLocator allows clients to locate any NUnit services
for which the interface is referenced. In normal use, this
linits it to those services using interfaces defined in the
nunit.engine.api assembly.
</summary>
</member>
<member name="M:NUnit.Engine.IServiceLocator.GetService``1">
<summary>
Return a specified type of service
</summary>
</member>
<member name="M:NUnit.Engine.IServiceLocator.GetService(System.Type)">
<summary>
Return a specified type of service
</summary>
</member>
<member name="T:NUnit.Engine.SettingsEventHandler">
<summary>
Event handler for settings changes
</summary>
<param name="sender">The sender.</param>
<param name="args">The <see cref="T:NUnit.Engine.SettingsEventArgs"/> instance containing the event data.</param>
</member>
<member name="T:NUnit.Engine.SettingsEventArgs">
<summary>
Event argument for settings changes
</summary>
</member>
<member name="M:NUnit.Engine.SettingsEventArgs.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:NUnit.Engine.SettingsEventArgs"/> class.
</summary>
<param name="settingName">Name of the setting that has changed.</param>
</member>
<member name="P:NUnit.Engine.SettingsEventArgs.SettingName">
<summary>
Gets the name of the setting that has changed
</summary>
</member>
<member name="T:NUnit.Engine.ISettings">
<summary>
The ISettings interface is used to access all user
settings and options.
</summary>
</member>
<member name="E:NUnit.Engine.ISettings.Changed">
<summary>
Occurs when the settings are changed.
</summary>
</member>
<member name="M:NUnit.Engine.ISettings.GetSetting(System.String)">
<summary>
Load a setting from the storage.
</summary>
<param name="settingName">Name of the setting to load</param>
<returns>Value of the setting or null</returns>
</member>
<member name="M:NUnit.Engine.ISettings.GetSetting``1(System.String,``0)">
<summary>
Load a setting from the storage or return a default value
</summary>
<param name="settingName">Name of the setting to load</param>
<param name="defaultValue">Value to return if the setting is missing</param>
<returns>Value of the setting or the default value</returns>
</member>
<member name="M:NUnit.Engine.ISettings.RemoveSetting(System.String)">
<summary>
Remove a setting from the storage
</summary>
<param name="settingName">Name of the setting to remove</param>
</member>
<member name="M:NUnit.Engine.ISettings.RemoveGroup(System.String)">
<summary>
Remove an entire group of settings from the storage
</summary>
<param name="groupName">Name of the group to remove</param>
</member>
<member name="M:NUnit.Engine.ISettings.SaveSetting(System.String,System.Object)">
<summary>
Save a setting in the storage
</summary>
<param name="settingName">Name of the setting to save</param>
<param name="settingValue">Value to be saved</param>
</member>
<member name="T:NUnit.Engine.ITestEngine">
<summary>
ITestEngine represents an instance of the test engine.
Clients wanting to discover, explore or run tests start
require an instance of the engine, which is generally
acquired from the TestEngineActivator class.
</summary>
</member>
<member name="P:NUnit.Engine.ITestEngine.Services">
<summary>
Gets the IServiceLocator interface, which gives access to
certain services provided by the engine.
</summary>
</member>
<member name="P:NUnit.Engine.ITestEngine.WorkDirectory">
<summary>
Gets and sets the directory path used by the engine for saving files.
Some services may ignore changes to this path made after initialization.
The default value is the current directory.
</summary>
</member>
<member name="P:NUnit.Engine.ITestEngine.InternalTraceLevel">
<summary>
Gets and sets the InternalTraceLevel used by the engine. Changing this
setting after initialization will have no effect. The default value
is the value saved in the NUnit settings.
</summary>
</member>
<member name="M:NUnit.Engine.ITestEngine.Initialize">
<summary>
Initialize the engine. This includes initializing mono addins,
setting the trace level and creating the standard set of services
used in the Engine.
This interface is not normally called by user code. Programs linking
only to the nunit.engine.api assembly are given a
pre-initialized instance of TestEngine. Programs
that link directly to nunit.engine usually do so
in order to perform custom initialization.
</summary>
</member>
<member name="M:NUnit.Engine.ITestEngine.GetRunner(NUnit.Engine.TestPackage)">
<summary>
Returns a test runner instance for use by clients in discovering,
exploring and executing tests.
</summary>
<param name="package">The TestPackage for which the runner is intended.</param>
<returns>An ITestRunner.</returns>
</member>
<member name="T:NUnit.Engine.ITestEventListener">
<summary>
The ITestListener interface is used to receive notices of significant
events while a test is running. Its single method accepts an Xml string,
which may represent any event generated by the test framework, the driver
or any of the runners internal to the engine. Use of Xml means that
any driver and framework may add additional events and the engine will
simply pass them on through this interface.
</summary>
</member>
<member name="M:NUnit.Engine.ITestEventListener.OnTestEvent(System.String)">
<summary>
Handle a progress report or other event.
</summary>
<param name="report">An XML progress report.</param>
</member>
<member name="T:NUnit.Engine.ITestFilterBuilder">
<summary>
Interface to a TestFilterBuilder, which is used to create TestFilters
</summary>
</member>
<member name="M:NUnit.Engine.ITestFilterBuilder.AddTest(System.String)">
<summary>
Add a test to be selected
</summary>
<param name="fullName">The full name of the test, as created by NUnit</param>
</member>
<member name="M:NUnit.Engine.ITestFilterBuilder.SelectWhere(System.String)">
<summary>
Specify what is to be included by the filter using a where clause.
</summary>
<param name="whereClause">A where clause that will be parsed by NUnit to create the filter.</param>
</member>
<member name="M:NUnit.Engine.ITestFilterBuilder.GetFilter">
<summary>
Get a TestFilter constructed according to the criteria specified by the other calls.
</summary>
<returns>A TestFilter.</returns>
</member>
<member name="T:NUnit.Engine.ITestFilterService">
<summary>
The TestFilterService provides builders that can create TestFilters
</summary>
</member>
<member name="M:NUnit.Engine.ITestFilterService.GetTestFilterBuilder">
<summary>
Get an uninitialized TestFilterBuilder
</summary>
</member>
<member name="T:NUnit.Engine.ITestRun">
<summary>
The ITestRun class represents an ongoing test run.
</summary>
</member>
<member name="P:NUnit.Engine.ITestRun.Result">
<summary>
Get the result of the test.
</summary>
<returns>An XmlNode representing the test run result</returns>
</member>
<member name="M:NUnit.Engine.ITestRun.Wait(System.Int32)">
<summary>
Blocks the current thread until the current test run completes
or the timeout is reached
</summary>
<param name="timeout">A <see cref="T:System.Int32"/> that represents the number of milliseconds to wait or -1 milliseconds to wait indefinitely. </param>
<returns>True if the run completed</returns>
</member>
<member name="T:NUnit.Engine.ITestRunner">
<summary>
Interface implemented by all test runners.
</summary>
</member>
<member name="P:NUnit.Engine.ITestRunner.IsTestRunning">
<summary>
Get a flag indicating whether a test is running
</summary>
</member>
<member name="M:NUnit.Engine.ITestRunner.Load">
<summary>
Load a TestPackage for possible execution
</summary>
<returns>An XmlNode representing the loaded package.</returns>
<remarks>
This method is normally optional, since Explore and Run call
it automatically when necessary. The method is kept in order
to make it easier to convert older programs that use it.
</remarks>
</member>
<member name="M:NUnit.Engine.ITestRunner.Unload">
<summary>
Unload any loaded TestPackage. If none is loaded,
the call is ignored.
</summary>
</member>
<member name="M:NUnit.Engine.ITestRunner.Reload">
<summary>
Reload the current TestPackage
</summary>
<returns>An XmlNode representing the loaded package.</returns>
</member>
<member name="M:NUnit.Engine.ITestRunner.CountTestCases(NUnit.Engine.TestFilter)">
<summary>
Count the test cases that would be run under
the specified filter.
</summary>
<param name="filter">A TestFilter</param>
<returns>The count of test cases</returns>
</member>
<member name="M:NUnit.Engine.ITestRunner.Run(NUnit.Engine.ITestEventListener,NUnit.Engine.TestFilter)">
<summary>
Run the tests in the loaded TestPackage and return a test result. The tests
are run synchronously and the listener interface is notified as it progresses.
</summary>
<param name="listener">The listener that is notified as the run progresses</param>
<param name="filter">A TestFilter used to select tests</param>
<returns>An XmlNode giving the result of the test execution</returns>
</member>
<member name="M:NUnit.Engine.ITestRunner.RunAsync(NUnit.Engine.ITestEventListener,NUnit.Engine.TestFilter)">
<summary>
Start a run of the tests in the loaded TestPackage. The tests are run
asynchronously and the listener interface is notified as it progresses.
</summary>
<param name="listener">The listener that is notified as the run progresses</param>
<param name="filter">A TestFilter used to select tests</param>
<returns></returns>
</member>
<member name="M:NUnit.Engine.ITestRunner.StopRun(System.Boolean)">
<summary>
Cancel the ongoing test run. If no test is running, the call is ignored.
</summary>
<param name="force">If true, cancel any ongoing test threads, otherwise wait for them to complete.</param>
</member>
<member name="M:NUnit.Engine.ITestRunner.Explore(NUnit.Engine.TestFilter)">
<summary>
Explore a loaded TestPackage and return information about the tests found.
</summary>
<param name="filter">The TestFilter to be used in selecting tests to explore.</param>
<returns>An XmlNode representing the tests found.</returns>
</member>
<member name="T:NUnit.Engine.TestEngineActivator">
<summary>
TestEngineActivator creates an instance of the test engine and returns an ITestEngine interface.
</summary>
</member>
<member name="M:NUnit.Engine.TestEngineActivator.CreateInstance">
<summary>
Create an instance of the test engine.
</summary>
<returns>An <see cref="T:NUnit.Engine.ITestEngine"/></returns>
</member>
<member name="T:NUnit.Engine.TestFilter">
<summary>
Abstract base for all test filters. A filter is represented
by an XmlNode with <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:NUnit.Engine.TestFilter.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:NUnit.Engine.TestFilter"/> class.
</summary>
<param name="xmlText">The XML text that specifies the filter.</param>
</member>
<member name="F:NUnit.Engine.TestFilter.Empty">
<summary>
The empty filter - one that always passes.
</summary>
</member>
<member name="P:NUnit.Engine.TestFilter.Text">
<summary>
Gets the XML representation of this filter as a string.
</summary>
</member>
<member name="T:NUnit.Engine.TestPackage">
<summary>
TestPackage holds information about a set of test files to
be loaded by a TestRunner. Each TestPackage represents
tests for one or more test files. TestPackages may be named
or anonymous, depending on the constructor used.
Upon construction, a package is given an ID (string), which
remains unchanged for the lifetime of the TestPackage instance.
The package ID is passed to the test framework for use in generating
test IDs.
A runner that reloads test assemblies and wants the ids to remain stable
should avoid creating a new package but should instead use the original
package, changing settings as needed. This gives the best chance for the
tests in the reloaded assembly to match those originally loaded.
</summary>
</member>
<member name="M:NUnit.Engine.TestPackage.#ctor(System.String)">
<summary>
Construct a named TestPackage, specifying a file path for
the assembly or project to be used.
</summary>
<param name="filePath">The file path.</param>
</member>
<member name="M:NUnit.Engine.TestPackage.#ctor(System.Collections.Generic.IList{System.String})">
<summary>
Construct an anonymous TestPackage that wraps test files.
</summary>
<param name="testFiles"></param>
</member>
<member name="P:NUnit.Engine.TestPackage.ID">
<summary>
Every test package gets a unique ID used to prefix test IDs within that package.
</summary>
<remarks>
The generated ID is only unique for packages created within the same application domain.
For that reason, NUnit pre-creates all test packages that will be needed.
</remarks>
</member>
<member name="P:NUnit.Engine.TestPackage.Name">
<summary>
Gets the name of the package
</summary>
</member>
<member name="P:NUnit.Engine.TestPackage.FullName">
<summary>
Gets the path to the file containing tests. It may be
an assembly or a recognized project type.
</summary>
</member>
<member name="P:NUnit.Engine.TestPackage.SubPackages">
<summary>
Gets the list of SubPackages contained in this package
</summary>
</member>
<member name="P:NUnit.Engine.TestPackage.Settings">
<summary>
Gets the settings dictionary for this package.
</summary>
</member>
<member name="M:NUnit.Engine.TestPackage.AddSubPackage(NUnit.Engine.TestPackage)">
<summary>
Add a subproject to the package.
</summary>
<param name="subPackage">The subpackage to be added</param>
</member>
<member name="M:NUnit.Engine.TestPackage.AddSetting(System.String,System.Object)">
<summary>
Add a setting to a package and all of its subpackages.
</summary>
<param name="name">The name of the setting</param>
<param name="value">The value of the setting</param>
<remarks>
Once a package is created, subpackages may have been created
as well. If you add a setting directly to the Settings dictionary
of the package, the subpackages are not updated. This method is
used when the settings are intended to be reflected to all the
subpackages under the package.
</remarks>
</member>
<member name="M:NUnit.Engine.TestPackage.GetSetting``1(System.String,``0)">
<summary>
Return the value of a setting or a default.
</summary>
<param name="name">The name of the setting</param>
<param name="defaultSetting">The default value</param>
<returns></returns>
</member>
<member name="T:NUnit.Engine.TestSelectionParserException">
<summary>
TestSelectionParserException is thrown when an error
is found while parsing the selection expression.
</summary>
</member>
<member name="M:NUnit.Engine.TestSelectionParserException.#ctor(System.String)">
<summary>
Construct with a message
</summary>
</member>
<member name="M:NUnit.Engine.TestSelectionParserException.#ctor(System.String,System.Exception)">
<summary>
Construct with a message and inner exception
</summary>
<param name="message"></param>
<param name="innerException"></param>
</member>
<member name="M:NUnit.Engine.TestSelectionParserException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serialization constructor
</summary>
</member>
</members>
</doc>
md5: 53469EAC8434B32A02B4713D862E4312 | sha1: E2DA7842B6D13F2263F3BE5A2AA83C5016422CB5 | sha256: B109BE744DD2F349C65535150112A3381FB232959EF9B83F94800DB3CB4CDCC4 | sha512: A7FDA2CEBDAEADABAB06D9166744875F59B2758C6B9371AFF7FE578AD963C607966F3C24F9A68AB14E3BC630EEC3AC6B059ABC319B0B76A999F3ED98D5B04983
md5: 0840A47D2A6E084B91BE187E648A533A | sha1: 6532647038F6EF4B9725D3F0CE49162754ACB285 | sha256: 69E4533EE53BFCEE5305EE16C1FE485C4D4D8525AC3D367D9E04D5B4BAA4A6C6 | sha512: 8B5C99F4C14D6FEF6DD57CDC5BC272D4028D2A0E9CAB4819245ADB1C9305F7B96A4BFED01FE239E9C223EF987984165FA3926BA5A7F3290E07ED9350335AF45E
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v6.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v6.0": {
"nunit-agent/3.15.2": {
"dependencies": {
"nunit.engine.api": "3.15.2",
"nunit.engine.core": "3.15.2"
},
"runtime": {
"nunit-agent.dll": {}
}
},
"TestCentric.Metadata/1.7.1": {
"runtime": {
"lib/netstandard2.0/testcentric.engine.metadata.dll": {
"assemblyVersion": "1.7.1.0",
"fileVersion": "1.7.1.0"
}
}
},
"nunit.engine.api/3.15.2": {
"runtime": {
"nunit.engine.api.dll": {}
}
},
"nunit.engine.core/3.15.2": {
"dependencies": {
"TestCentric.Metadata": "1.7.1",
"nunit.engine.api": "3.15.2"
},
"runtime": {
"nunit.engine.core.dll": {}
}
}
}
},
"libraries": {
"nunit-agent/3.15.2": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"TestCentric.Metadata/1.7.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-QjdwsUJXJbGmFKNiTZbWeRpwhqRcEAtgb+dwR4YVK8xUBBEfXfrFV074f1DBtnrOfAIT+LnZCeVVeg/fYUlAEA==",
"path": "testcentric.metadata/1.7.1",
"hashPath": "testcentric.metadata.1.7.1.nupkg.sha512"
},
"nunit.engine.api/3.15.2": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"nunit.engine.core/3.15.2": {
"type": "project",
"serviceable": false,
"sha512": ""
}
}
}
md5: 0392B02F65C8CEF864D7EB394FBCAA54 | sha1: 6EB58C990594AA7A4741EE274E0273C8373E7818 | sha256: DC83C51A01A7CF32D2731D1868FAF7AD4B6E433F1D04B2ECF96F8C5E9BA95B8F | sha512: 32F41B3696E7365307D9999524C74F8D18917D521B4C02456F591156560EEA10B2BE0B13BF06098D411EE6A95ADA42F2BFB21F4F7054F522255378A0A86D7879
<?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>
{
"runtimeOptions": {
"tfm": "net6.0",
"framework": {
"name": "Microsoft.NETCore.App",
"version": "6.0.0"
},
"configProperties": {
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false
}
}
}
md5: AF1FC26A92A9A4FE953A0DD5BB0BB012 | sha1: 2B0A2AAA11D237B8B97238D0FBBB7EA858790EE4 | sha256: 07749B711C1033F0E6086DF6500DE595AD783D859C64700930D2907EDCBFB291 | sha512: D1A0495E937E7D940AE31A94E36375376651209681E506D76EC487AF6756980D9B5F400B5157BCD21A98CE38720AA51E772507F2577012F9C605D3B9AC7A8A40
<?xml version="1.0"?>
<doc>
<assembly>
<name>nunit.engine.api</name>
</assembly>
<members>
<member name="T:NUnit.Engine.NUnitEngineException">
<summary>
NUnitEngineException is thrown when the engine has been
called with improper values or when a particular facility
is not available.
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineException.#ctor(System.String)">
<summary>
Construct with a message
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineException.#ctor(System.String,System.Exception)">
<summary>
Construct with a message and inner exception
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serialization constructor
</summary>
</member>
<member name="T:NUnit.Engine.NUnitEngineNotFoundException">
<summary>
The exception that is thrown if a valid test engine is not found
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineNotFoundException.#ctor">
<summary>
Initializes a new instance of the <see cref="T:NUnit.Engine.NUnitEngineNotFoundException"/> class.
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineNotFoundException.#ctor(System.Version)">
<summary>
Initializes a new instance of the <see cref="T:NUnit.Engine.NUnitEngineNotFoundException"/> class.
</summary>
<param name="minVersion">The minimum version.</param>
</member>
<member name="T:NUnit.Engine.NUnitEngineUnloadException">
<summary>
NUnitEngineUnloadException is thrown when a test run has completed successfully
but one or more errors were encountered when attempting to unload
and shut down the test run cleanly.
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.String)">
<summary>
Construct with a message
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.String,System.Exception)">
<summary>
Construct with a message and inner exception
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.Collections.Generic.ICollection{System.Exception})">
<summary>
Construct with a message and a collection of exceptions.
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serialization constructor.
</summary>
</member>
<member name="P:NUnit.Engine.NUnitEngineUnloadException.AggregatedExceptions">
<summary>
Gets the collection of exceptions .
</summary>
</member>
<member name="T:NUnit.Engine.Extensibility.ExtensionAttribute">
<summary>
The ExtensionAttribute is used to identify a class that is intended
to serve as an extension.
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.ExtensionAttribute.#ctor">
<summary>
Initializes a new instance of the <see cref="T:NUnit.Engine.Extensibility.ExtensionAttribute"/> class.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.Path">
<summary>
A unique string identifying the ExtensionPoint for which this Extension is
intended. This is an optional field provided NUnit is able to deduce the
ExtensionPoint from the Type of the extension class.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.Description">
<summary>
An optional description of what the extension does.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.Enabled">
<summary>
Flag indicating whether the extension is enabled.
</summary>
<value><c>true</c> if enabled; otherwise, <c>false</c>.</value>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.EngineVersion">
<summary>
The minimum Engine version for which this extension is designed
</summary>
</member>
<member name="T:NUnit.Engine.Extensibility.ExtensionPointAttribute">
<summary>
ExtensionPointAttribute is used at the assembly level to identify and
document any ExtensionPoints supported by the assembly.
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.ExtensionPointAttribute.#ctor(System.String,System.Type)">
<summary>
Construct an ExtensionPointAttribute
</summary>
<param name="path">A unique string identifying the extension point.</param>
<param name="type">The required Type of any extension that is installed at this extension point.</param>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionPointAttribute.Path">
<summary>
The unique string identifying this ExtensionPoint. This identifier
is typically formatted as a path using '/' and the set of extension
points is sometimes viewed as forming a tree.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionPointAttribute.Type">
<summary>
The required Type (usually an interface) of any extension that is
installed at this ExtensionPoint.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionPointAttribute.Description">
<summary>
An optional description of the purpose of the ExtensionPoint
</summary>
</member>
<member name="T:NUnit.Engine.Extensibility.ExtensionPropertyAttribute">
<summary>
The ExtensionPropertyAttribute is used to specify named properties for an extension.
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.ExtensionPropertyAttribute.#ctor(System.String,System.String)">
<summary>
Construct an ExtensionPropertyAttribute
</summary>
<param name="name">The name of the property</param>
<param name="value">The property value</param>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionPropertyAttribute.Name">
<summary>
The name of the property.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionPropertyAttribute.Value">
<summary>
The property value
</summary>
</member>
<member name="T:NUnit.Engine.Extensibility.IDriverFactory">
<summary>
Interface implemented by a Type that knows how to create a driver for a test assembly.
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.IDriverFactory.IsSupportedTestFramework(System.Reflection.AssemblyName)">
<summary>
Gets a flag indicating whether a given AssemblyName
represents a test framework supported by this factory.
</summary>
<param name="reference">An AssemblyName referring to the possible test framework.</param>
</member>
<member name="M:NUnit.Engine.Extensibility.IDriverFactory.GetDriver(System.Reflection.AssemblyName)">
<summary>
Gets a driver for a given test assembly and a framework
which the assembly is already known to reference.
</summary>
<param name="reference">An AssemblyName referring to the test framework.</param>
<returns></returns>
</member>
<member name="T:NUnit.Engine.Extensibility.IExtensionNode">
<summary>
The IExtensionNode interface is implemented by a class that represents a
single extension being installed on a particular extension point.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionNode.TypeName">
<summary>
Gets the full name of the Type of the extension object.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionNode.Enabled">
<summary>
Gets a value indicating whether this <see cref="T:NUnit.Engine.Extensibility.IExtensionNode"/> is enabled.
</summary>
<value><c>true</c> if enabled; otherwise, <c>false</c>.</value>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionNode.Path">
<summary>
Gets the unique string identifying the ExtensionPoint for which
this Extension is intended. This identifier may be supplied by the attribute
marking the extension or deduced by NUnit from the Type of the extension class.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionNode.Description">
<summary>
Gets an optional description of what the extension does.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionNode.TargetFramework">
<summary>
The TargetFramework of the extension assembly.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionNode.PropertyNames">
<summary>
Gets a collection of the names of all this extension's properties
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.IExtensionNode.GetValues(System.String)">
<summary>
Gets a collection of the values of a particular named property
If none are present, returns an empty enumerator.
</summary>
<param name="name">The property name</param>
<returns>A collection of values</returns>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionNode.AssemblyPath">
<summary>
The path to the assembly implementing this extension.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionNode.AssemblyVersion">
<summary>
The version of the assembly implementing this extension.
</summary>
</member>
<member name="T:NUnit.Engine.Extensibility.IExtensionPoint">
<summary>
An ExtensionPoint represents a single point in the TestEngine
that may be extended by user addins and extensions.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionPoint.Path">
<summary>
Gets the unique path identifying this extension point.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionPoint.Description">
<summary>
Gets the description of this extension point. May be null.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionPoint.TypeName">
<summary>
Gets the FullName of the Type required for any extension to be installed at this extension point.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionPoint.Extensions">
<summary>
Gets an enumeration of IExtensionNodes for extensions installed on this extension point.
</summary>
</member>
<member name="T:NUnit.Engine.Extensibility.IFrameworkDriver">
<summary>
The IFrameworkDriver interface is implemented by a class that
is able to use an external framework to explore or run tests
under the engine.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IFrameworkDriver.ID">
<summary>
Gets and sets the unique identifier for this driver,
used to ensure that test ids are unique across drivers.
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.Load(System.String,System.Collections.Generic.IDictionary{System.String,System.Object})">
<summary>
Loads the tests in an assembly.
</summary>
<returns>An Xml string representing the loaded test</returns>
</member>
<member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.CountTestCases(System.String)">
<summary>
Count the test cases that would be executed.
</summary>
<param name="filter">An XML string representing the TestFilter to use in counting the tests</param>
<returns>The number of test cases counted</returns>
</member>
<member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.Run(NUnit.Engine.ITestEventListener,System.String)">
<summary>
Executes the tests in an assembly.
</summary>
<param name="listener">An ITestEventHandler that receives progress notices</param>
<param name="filter">A XML string representing the filter that controls which tests are executed</param>
<returns>An Xml string representing the result</returns>
</member>
<member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.Explore(System.String)">
<summary>
Returns information about the tests in an assembly.
</summary>
<param name="filter">An XML string representing the filter that controls which tests are included</param>
<returns>An Xml string representing the tests</returns>
</member>
<member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.StopRun(System.Boolean)">
<summary>
Cancel the ongoing test run. If no test is running, the call is ignored.
</summary>
<param name="force">If true, cancel any ongoing test threads, otherwise wait for them to complete.</param>
</member>
<member name="T:NUnit.Engine.Extensibility.IProject">
<summary>
Interface for the various project types that the engine can load.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IProject.ProjectPath">
<summary>
Gets the path to the file storing this project, if any.
If the project has not been saved, this is null.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IProject.ActiveConfigName">
<summary>
Gets the active configuration, as defined
by the particular project.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IProject.ConfigNames">
<summary>
Gets a list of the configs for this project
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.IProject.GetTestPackage">
<summary>
Gets a test package for the primary or active
configuration within the project. The package
includes all the assemblies and any settings
specified in the project format.
</summary>
<returns>A TestPackage</returns>
</member>
<member name="M:NUnit.Engine.Extensibility.IProject.GetTestPackage(System.String)">
<summary>
Gets a TestPackage for a specific configuration
within the project. The package includes all the
assemblies and any settings specified in the
project format.
</summary>
<param name="configName">The name of the config to use</param>
<returns>A TestPackage for the named configuration.</returns>
</member>
<member name="T:NUnit.Engine.Extensibility.IProjectLoader">
<summary>
The IProjectLoader interface is implemented by any class
that knows how to load projects in a specific format.
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.IProjectLoader.CanLoadFrom(System.String)">
<summary>
Returns true if the file indicated is one that this
loader knows how to load.
</summary>
<param name="path">The path of the project file</param>
<returns>True if the loader knows how to load this file, otherwise false</returns>
</member>
<member name="M:NUnit.Engine.Extensibility.IProjectLoader.LoadFrom(System.String)">
<summary>
Loads a project of a known format.
</summary>
<param name="path">The path of the project file</param>
<returns>An IProject interface to the loaded project or null if the project cannot be loaded</returns>
</member>
<member name="T:NUnit.Engine.Extensibility.IResultWriter">
<summary>
Common interface for objects that process and write out test results
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.IResultWriter.CheckWritability(System.String)">
<summary>
Checks if the output path is writable. If the output is not
writable, this method should throw an exception.
</summary>
<param name="outputPath"></param>
</member>
<member name="M:NUnit.Engine.Extensibility.IResultWriter.WriteResultFile(System.Xml.XmlNode,System.String)">
<summary>
Writes result to the specified output path.
</summary>
<param name="resultNode">XmlNode for the result</param>
<param name="outputPath">Path to which it should be written</param>
</member>
<member name="M:NUnit.Engine.Extensibility.IResultWriter.WriteResultFile(System.Xml.XmlNode,System.IO.TextWriter)">
<summary>
Writes result to a TextWriter.
</summary>
<param name="resultNode">XmlNode for the result</param>
<param name="writer">TextWriter to which it should be written</param>
</member>
<member name="T:NUnit.Engine.Extensibility.TypeExtensionPointAttribute">
<summary>
TypeExtensionPointAttribute is used to bind an extension point
to a class or interface.
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.#ctor(System.String)">
<summary>
Construct a TypeExtensionPointAttribute, specifying the path.
</summary>
<param name="path">A unique string identifying the extension point.</param>
</member>
<member name="M:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.#ctor">
<summary>
Construct an TypeExtensionPointAttribute, without specifying the path.
The extension point will use a path constructed based on the interface
or class to which the attribute is applied.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.Path">
<summary>
The unique string identifying this ExtensionPoint. This identifier
is typically formatted as a path using '/' and the set of extension
points is sometimes viewed as forming a tree.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.Description">
<summary>
An optional description of the purpose of the ExtensionPoint
</summary>
</member>
<member name="T:NUnit.Engine.IAvailableRuntimes">
<summary>
Interface that returns a list of available runtime frameworks.
</summary>
</member>
<member name="P:NUnit.Engine.IAvailableRuntimes.AvailableRuntimes">
<summary>
Gets a list of available runtime frameworks.
</summary>
</member>
<member name="T:NUnit.Engine.IExtensionService">
<summary>
The IExtensionService interface allows a runner to manage extensions.
</summary>
</member>
<member name="P:NUnit.Engine.IExtensionService.ExtensionPoints">
<summary>
Gets an enumeration of all ExtensionPoints in the engine.
</summary>
</member>
<member name="P:NUnit.Engine.IExtensionService.Extensions">
<summary>
Gets an enumeration of all installed Extensions.
</summary>
</member>
<member name="M:NUnit.Engine.IExtensionService.GetExtensionPoint(System.String)">
<summary>
Get an ExtensionPoint based on its unique identifying path.
</summary>
</member>
<member name="M:NUnit.Engine.IExtensionService.GetExtensionNodes(System.String)">
<summary>
Get an enumeration of ExtensionNodes based on their identifying path.
</summary>
</member>
<member name="M:NUnit.Engine.IExtensionService.EnableExtension(System.String,System.Boolean)">
<summary>
Enable or disable an extension
</summary>
<param name="typeName"></param>
<param name="enabled"></param>
</member>
<member name="T:NUnit.Engine.ILogger">
<summary>
Interface for logging within the engine
</summary>
</member>
<member name="M:NUnit.Engine.ILogger.Error(System.String)">
<summary>
Logs the specified message at the error level.
</summary>
<param name="message">The message.</param>
</member>
<member name="M:NUnit.Engine.ILogger.Error(System.String,System.Object[])">
<summary>
Logs the specified message at the error level.
</summary>
<param name="format">The message.</param>
<param name="args">The arguments.</param>
</member>
<member name="M:NUnit.Engine.ILogger.Warning(System.String)">
<summary>
Logs the specified message at the warning level.
</summary>
<param name="message">The message.</param>
</member>
<member name="M:NUnit.Engine.ILogger.Warning(System.String,System.Object[])">
<summary>
Logs the specified message at the warning level.
</summary>
<param name="format">The message.</param>
<param name="args">The arguments.</param>
</member>
<member name="M:NUnit.Engine.ILogger.Info(System.String)">
<summary>
Logs the specified message at the info level.
</summary>
<param name="message">The message.</param>
</member>
<member name="M:NUnit.Engine.ILogger.Info(System.String,System.Object[])">
<summary>
Logs the specified message at the info level.
</summary>
<param name="format">The message.</param>
<param name="args">The arguments.</param>
</member>
<member name="M:NUnit.Engine.ILogger.Debug(System.String)">
<summary>
Logs the specified message at the debug level.
</summary>
<param name="message">The message.</param>
</member>
<member name="M:NUnit.Engine.ILogger.Debug(System.String,System.Object[])">
<summary>
Logs the specified message at the debug level.
</summary>
<param name="format">The message.</param>
<param name="args">The arguments.</param>
</member>
<member name="T:NUnit.Engine.ILogging">
<summary>
Interface to abstract getting loggers
</summary>
</member>
<member name="M:NUnit.Engine.ILogging.GetLogger(System.String)">
<summary>
Gets the logger.
</summary>
<param name="name">The name of the logger to get.</param>
<returns></returns>
</member>
<member name="T:NUnit.Engine.InternalTraceLevel">
<summary>
InternalTraceLevel is an enumeration controlling the
level of detailed presented in the internal log.
</summary>
</member>
<member name="F:NUnit.Engine.InternalTraceLevel.Default">
<summary>
Use the default settings as specified by the user.
</summary>
</member>
<member name="F:NUnit.Engine.InternalTraceLevel.Off">
<summary>
Do not display any trace messages
</summary>
</member>
<member name="F:NUnit.Engine.InternalTraceLevel.Error">
<summary>
Display Error messages only
</summary>
</member>
<member name="F:NUnit.Engine.InternalTraceLevel.Warning">
<summary>
Display Warning level and higher messages
</summary>
</member>
<member name="F:NUnit.Engine.InternalTraceLevel.Info">
<summary>
Display informational and higher messages
</summary>
</member>
<member name="F:NUnit.Engine.InternalTraceLevel.Debug">
<summary>
Display debug messages and higher - i.e. all messages
</summary>
</member>
<member name="F:NUnit.Engine.InternalTraceLevel.Verbose">
<summary>
Display debug messages and higher - i.e. all messages
</summary>
</member>
<member name="T:NUnit.Engine.IRecentFiles">
<summary>
The IRecentFiles interface is used to isolate the app
from various implementations of recent files.
</summary>
</member>
<member name="P:NUnit.Engine.IRecentFiles.MaxFiles">
<summary>
The max number of files saved
</summary>
</member>
<member name="P:NUnit.Engine.IRecentFiles.Entries">
<summary>
Get a list of all the file entries
</summary>
<returns>The most recent file list</returns>
</member>
<member name="M:NUnit.Engine.IRecentFiles.SetMostRecent(System.String)">
<summary>
Set the most recent file name, reordering
the saved names as needed and removing the oldest
if the max number of files would be exceeded.
The current CLR version is used to create the entry.
</summary>
</member>
<member name="M:NUnit.Engine.IRecentFiles.Remove(System.String)">
<summary>
Remove a file from the list
</summary>
<param name="fileName">The name of the file to remove</param>
</member>
<member name="T:NUnit.Engine.IResultService">
<summary>
IResultWriterService provides result writers for a specified
well-known format.
</summary>
</member>
<member name="P:NUnit.Engine.IResultService.Formats">
<summary>
Gets an array of the available formats
</summary>
</member>
<member name="M:NUnit.Engine.IResultService.GetResultWriter(System.String,System.Object[])">
<summary>
Gets a ResultWriter for a given format and set of arguments.
</summary>
<param name="format">The name of the format to be used</param>
<param name="args">A set of arguments to be used in constructing the writer or null if non arguments are needed</param>
<returns>An IResultWriter</returns>
</member>
<member name="T:NUnit.Engine.IRuntimeFramework">
<summary>
Interface implemented by objects representing a runtime framework.
</summary>
</member>
<member name="P:NUnit.Engine.IRuntimeFramework.Id">
<summary>
Gets the inique Id for this runtime, such as "net-4.5"
</summary>
</member>
<member name="P:NUnit.Engine.IRuntimeFramework.DisplayName">
<summary>
Gets the display name of the framework, such as ".NET 4.5"
</summary>
</member>
<member name="P:NUnit.Engine.IRuntimeFramework.FrameworkVersion">
<summary>
Gets the framework version: usually contains two components, Major
and Minor, which match the corresponding CLR components, but not always.
</summary>
</member>
<member name="P:NUnit.Engine.IRuntimeFramework.ClrVersion">
<summary>
Gets the Version of the CLR for this framework
</summary>
</member>
<member name="P:NUnit.Engine.IRuntimeFramework.Profile">
<summary>
Gets a string representing the particular profile installed,
or null if there is no profile. Currently. the only defined
values are Full and Client.
</summary>
</member>
<member name="T:NUnit.Engine.IRuntimeFrameworkService">
<summary>
Implemented by a type that provides information about the
current and other available runtimes.
</summary>
</member>
<member name="M:NUnit.Engine.IRuntimeFrameworkService.IsAvailable(System.String)">
<summary>
Returns true if the runtime framework represented by
the string passed as an argument is available.
</summary>
<param name="framework">A string representing a framework, like 'net-4.0'</param>
<returns>True if the framework is available, false if unavailable or nonexistent</returns>
</member>
<member name="M:NUnit.Engine.IRuntimeFrameworkService.SelectRuntimeFramework(NUnit.Engine.TestPackage)">
<summary>
Selects a target runtime framework for a TestPackage based on
the settings in the package and the assemblies themselves.
The package RuntimeFramework setting may be updated as a
result and the selected runtime is returned.
Note that if a package has subpackages, the subpackages may run on a different
framework to the top-level package. In future, this method should
probably not return a simple string, and instead require runners
to inspect the test package structure, to find all desired frameworks.
</summary>
<param name="package">A TestPackage</param>
<returns>The selected RuntimeFramework</returns>
</member>
<member name="T:NUnit.Engine.ServiceStatus">
<summary>
Enumeration representing the status of a service
</summary>
</member>
<member name="F:NUnit.Engine.ServiceStatus.Stopped">
<summary>Service was never started or has been stopped</summary>
</member>
<member name="F:NUnit.Engine.ServiceStatus.Started">
<summary>Started successfully</summary>
</member>
<member name="F:NUnit.Engine.ServiceStatus.Error">
<summary>Service failed to start and is unavailable</summary>
</member>
<member name="T:NUnit.Engine.IService">
<summary>
The IService interface is implemented by all Services. Although it
is extensible, it does not reside in the Extensibility namespace
because it is so widely used by the engine.
</summary>
</member>
<member name="P:NUnit.Engine.IService.ServiceContext">
<summary>
The ServiceContext
</summary>
</member>
<member name="P:NUnit.Engine.IService.Status">
<summary>
Gets the ServiceStatus of this service
</summary>
</member>
<member name="M:NUnit.Engine.IService.StartService">
<summary>
Initialize the Service
</summary>
</member>
<member name="M:NUnit.Engine.IService.StopService">
<summary>
Do any cleanup needed before terminating the service
</summary>
</member>
<member name="T:NUnit.Engine.IServiceLocator">
<summary>
IServiceLocator allows clients to locate any NUnit services
for which the interface is referenced. In normal use, this
linits it to those services using interfaces defined in the
nunit.engine.api assembly.
</summary>
</member>
<member name="M:NUnit.Engine.IServiceLocator.GetService``1">
<summary>
Return a specified type of service
</summary>
</member>
<member name="M:NUnit.Engine.IServiceLocator.GetService(System.Type)">
<summary>
Return a specified type of service
</summary>
</member>
<member name="T:NUnit.Engine.SettingsEventHandler">
<summary>
Event handler for settings changes
</summary>
<param name="sender">The sender.</param>
<param name="args">The <see cref="T:NUnit.Engine.SettingsEventArgs"/> instance containing the event data.</param>
</member>
<member name="T:NUnit.Engine.SettingsEventArgs">
<summary>
Event argument for settings changes
</summary>
</member>
<member name="M:NUnit.Engine.SettingsEventArgs.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:NUnit.Engine.SettingsEventArgs"/> class.
</summary>
<param name="settingName">Name of the setting that has changed.</param>
</member>
<member name="P:NUnit.Engine.SettingsEventArgs.SettingName">
<summary>
Gets the name of the setting that has changed
</summary>
</member>
<member name="T:NUnit.Engine.ISettings">
<summary>
The ISettings interface is used to access all user
settings and options.
</summary>
</member>
<member name="E:NUnit.Engine.ISettings.Changed">
<summary>
Occurs when the settings are changed.
</summary>
</member>
<member name="M:NUnit.Engine.ISettings.GetSetting(System.String)">
<summary>
Load a setting from the storage.
</summary>
<param name="settingName">Name of the setting to load</param>
<returns>Value of the setting or null</returns>
</member>
<member name="M:NUnit.Engine.ISettings.GetSetting``1(System.String,``0)">
<summary>
Load a setting from the storage or return a default value
</summary>
<param name="settingName">Name of the setting to load</param>
<param name="defaultValue">Value to return if the setting is missing</param>
<returns>Value of the setting or the default value</returns>
</member>
<member name="M:NUnit.Engine.ISettings.RemoveSetting(System.String)">
<summary>
Remove a setting from the storage
</summary>
<param name="settingName">Name of the setting to remove</param>
</member>
<member name="M:NUnit.Engine.ISettings.RemoveGroup(System.String)">
<summary>
Remove an entire group of settings from the storage
</summary>
<param name="groupName">Name of the group to remove</param>
</member>
<member name="M:NUnit.Engine.ISettings.SaveSetting(System.String,System.Object)">
<summary>
Save a setting in the storage
</summary>
<param name="settingName">Name of the setting to save</param>
<param name="settingValue">Value to be saved</param>
</member>
<member name="T:NUnit.Engine.ITestEngine">
<summary>
ITestEngine represents an instance of the test engine.
Clients wanting to discover, explore or run tests start
require an instance of the engine, which is generally
acquired from the TestEngineActivator class.
</summary>
</member>
<member name="P:NUnit.Engine.ITestEngine.Services">
<summary>
Gets the IServiceLocator interface, which gives access to
certain services provided by the engine.
</summary>
</member>
<member name="P:NUnit.Engine.ITestEngine.WorkDirectory">
<summary>
Gets and sets the directory path used by the engine for saving files.
Some services may ignore changes to this path made after initialization.
The default value is the current directory.
</summary>
</member>
<member name="P:NUnit.Engine.ITestEngine.InternalTraceLevel">
<summary>
Gets and sets the InternalTraceLevel used by the engine. Changing this
setting after initialization will have no effect. The default value
is the value saved in the NUnit settings.
</summary>
</member>
<member name="M:NUnit.Engine.ITestEngine.Initialize">
<summary>
Initialize the engine. This includes initializing mono addins,
setting the trace level and creating the standard set of services
used in the Engine.
This interface is not normally called by user code. Programs linking
only to the nunit.engine.api assembly are given a
pre-initialized instance of TestEngine. Programs
that link directly to nunit.engine usually do so
in order to perform custom initialization.
</summary>
</member>
<member name="M:NUnit.Engine.ITestEngine.GetRunner(NUnit.Engine.TestPackage)">
<summary>
Returns a test runner instance for use by clients in discovering,
exploring and executing tests.
</summary>
<param name="package">The TestPackage for which the runner is intended.</param>
<returns>An ITestRunner.</returns>
</member>
<member name="T:NUnit.Engine.ITestEventListener">
<summary>
The ITestListener interface is used to receive notices of significant
events while a test is running. Its single method accepts an Xml string,
which may represent any event generated by the test framework, the driver
or any of the runners internal to the engine. Use of Xml means that
any driver and framework may add additional events and the engine will
simply pass them on through this interface.
</summary>
</member>
<member name="M:NUnit.Engine.ITestEventListener.OnTestEvent(System.String)">
<summary>
Handle a progress report or other event.
</summary>
<param name="report">An XML progress report.</param>
</member>
<member name="T:NUnit.Engine.ITestFilterBuilder">
<summary>
Interface to a TestFilterBuilder, which is used to create TestFilters
</summary>
</member>
<member name="M:NUnit.Engine.ITestFilterBuilder.AddTest(System.String)">
<summary>
Add a test to be selected
</summary>
<param name="fullName">The full name of the test, as created by NUnit</param>
</member>
<member name="M:NUnit.Engine.ITestFilterBuilder.SelectWhere(System.String)">
<summary>
Specify what is to be included by the filter using a where clause.
</summary>
<param name="whereClause">A where clause that will be parsed by NUnit to create the filter.</param>
</member>
<member name="M:NUnit.Engine.ITestFilterBuilder.GetFilter">
<summary>
Get a TestFilter constructed according to the criteria specified by the other calls.
</summary>
<returns>A TestFilter.</returns>
</member>
<member name="T:NUnit.Engine.ITestFilterService">
<summary>
The TestFilterService provides builders that can create TestFilters
</summary>
</member>
<member name="M:NUnit.Engine.ITestFilterService.GetTestFilterBuilder">
<summary>
Get an uninitialized TestFilterBuilder
</summary>
</member>
<member name="T:NUnit.Engine.ITestRun">
<summary>
The ITestRun class represents an ongoing test run.
</summary>
</member>
<member name="P:NUnit.Engine.ITestRun.Result">
<summary>
Get the result of the test.
</summary>
<returns>An XmlNode representing the test run result</returns>
</member>
<member name="M:NUnit.Engine.ITestRun.Wait(System.Int32)">
<summary>
Blocks the current thread until the current test run completes
or the timeout is reached
</summary>
<param name="timeout">A <see cref="T:System.Int32"/> that represents the number of milliseconds to wait or -1 milliseconds to wait indefinitely. </param>
<returns>True if the run completed</returns>
</member>
<member name="T:NUnit.Engine.ITestRunner">
<summary>
Interface implemented by all test runners.
</summary>
</member>
<member name="P:NUnit.Engine.ITestRunner.IsTestRunning">
<summary>
Get a flag indicating whether a test is running
</summary>
</member>
<member name="M:NUnit.Engine.ITestRunner.Load">
<summary>
Load a TestPackage for possible execution
</summary>
<returns>An XmlNode representing the loaded package.</returns>
<remarks>
This method is normally optional, since Explore and Run call
it automatically when necessary. The method is kept in order
to make it easier to convert older programs that use it.
</remarks>
</member>
<member name="M:NUnit.Engine.ITestRunner.Unload">
<summary>
Unload any loaded TestPackage. If none is loaded,
the call is ignored.
</summary>
</member>
<member name="M:NUnit.Engine.ITestRunner.Reload">
<summary>
Reload the current TestPackage
</summary>
<returns>An XmlNode representing the loaded package.</returns>
</member>
<member name="M:NUnit.Engine.ITestRunner.CountTestCases(NUnit.Engine.TestFilter)">
<summary>
Count the test cases that would be run under
the specified filter.
</summary>
<param name="filter">A TestFilter</param>
<returns>The count of test cases</returns>
</member>
<member name="M:NUnit.Engine.ITestRunner.Run(NUnit.Engine.ITestEventListener,NUnit.Engine.TestFilter)">
<summary>
Run the tests in the loaded TestPackage and return a test result. The tests
are run synchronously and the listener interface is notified as it progresses.
</summary>
<param name="listener">The listener that is notified as the run progresses</param>
<param name="filter">A TestFilter used to select tests</param>
<returns>An XmlNode giving the result of the test execution</returns>
</member>
<member name="M:NUnit.Engine.ITestRunner.RunAsync(NUnit.Engine.ITestEventListener,NUnit.Engine.TestFilter)">
<summary>
Start a run of the tests in the loaded TestPackage. The tests are run
asynchronously and the listener interface is notified as it progresses.
</summary>
<param name="listener">The listener that is notified as the run progresses</param>
<param name="filter">A TestFilter used to select tests</param>
<returns></returns>
</member>
<member name="M:NUnit.Engine.ITestRunner.StopRun(System.Boolean)">
<summary>
Cancel the ongoing test run. If no test is running, the call is ignored.
</summary>
<param name="force">If true, cancel any ongoing test threads, otherwise wait for them to complete.</param>
</member>
<member name="M:NUnit.Engine.ITestRunner.Explore(NUnit.Engine.TestFilter)">
<summary>
Explore a loaded TestPackage and return information about the tests found.
</summary>
<param name="filter">The TestFilter to be used in selecting tests to explore.</param>
<returns>An XmlNode representing the tests found.</returns>
</member>
<member name="T:NUnit.Engine.TestEngineActivator">
<summary>
TestEngineActivator creates an instance of the test engine and returns an ITestEngine interface.
</summary>
</member>
<member name="M:NUnit.Engine.TestEngineActivator.CreateInstance">
<summary>
Create an instance of the test engine.
</summary>
<returns>An <see cref="T:NUnit.Engine.ITestEngine"/></returns>
</member>
<member name="T:NUnit.Engine.TestFilter">
<summary>
Abstract base for all test filters. A filter is represented
by an XmlNode with <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:NUnit.Engine.TestFilter.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:NUnit.Engine.TestFilter"/> class.
</summary>
<param name="xmlText">The XML text that specifies the filter.</param>
</member>
<member name="F:NUnit.Engine.TestFilter.Empty">
<summary>
The empty filter - one that always passes.
</summary>
</member>
<member name="P:NUnit.Engine.TestFilter.Text">
<summary>
Gets the XML representation of this filter as a string.
</summary>
</member>
<member name="T:NUnit.Engine.TestPackage">
<summary>
TestPackage holds information about a set of test files to
be loaded by a TestRunner. Each TestPackage represents
tests for one or more test files. TestPackages may be named
or anonymous, depending on the constructor used.
Upon construction, a package is given an ID (string), which
remains unchanged for the lifetime of the TestPackage instance.
The package ID is passed to the test framework for use in generating
test IDs.
A runner that reloads test assemblies and wants the ids to remain stable
should avoid creating a new package but should instead use the original
package, changing settings as needed. This gives the best chance for the
tests in the reloaded assembly to match those originally loaded.
</summary>
</member>
<member name="M:NUnit.Engine.TestPackage.#ctor(System.String)">
<summary>
Construct a named TestPackage, specifying a file path for
the assembly or project to be used.
</summary>
<param name="filePath">The file path.</param>
</member>
<member name="M:NUnit.Engine.TestPackage.#ctor(System.Collections.Generic.IList{System.String})">
<summary>
Construct an anonymous TestPackage that wraps test files.
</summary>
<param name="testFiles"></param>
</member>
<member name="P:NUnit.Engine.TestPackage.ID">
<summary>
Every test package gets a unique ID used to prefix test IDs within that package.
</summary>
<remarks>
The generated ID is only unique for packages created within the same application domain.
For that reason, NUnit pre-creates all test packages that will be needed.
</remarks>
</member>
<member name="P:NUnit.Engine.TestPackage.Name">
<summary>
Gets the name of the package
</summary>
</member>
<member name="P:NUnit.Engine.TestPackage.FullName">
<summary>
Gets the path to the file containing tests. It may be
an assembly or a recognized project type.
</summary>
</member>
<member name="P:NUnit.Engine.TestPackage.SubPackages">
<summary>
Gets the list of SubPackages contained in this package
</summary>
</member>
<member name="P:NUnit.Engine.TestPackage.Settings">
<summary>
Gets the settings dictionary for this package.
</summary>
</member>
<member name="M:NUnit.Engine.TestPackage.AddSubPackage(NUnit.Engine.TestPackage)">
<summary>
Add a subproject to the package.
</summary>
<param name="subPackage">The subpackage to be added</param>
</member>
<member name="M:NUnit.Engine.TestPackage.AddSetting(System.String,System.Object)">
<summary>
Add a setting to a package and all of its subpackages.
</summary>
<param name="name">The name of the setting</param>
<param name="value">The value of the setting</param>
<remarks>
Once a package is created, subpackages may have been created
as well. If you add a setting directly to the Settings dictionary
of the package, the subpackages are not updated. This method is
used when the settings are intended to be reflected to all the
subpackages under the package.
</remarks>
</member>
<member name="M:NUnit.Engine.TestPackage.GetSetting``1(System.String,``0)">
<summary>
Return the value of a setting or a default.
</summary>
<param name="name">The name of the setting</param>
<param name="defaultSetting">The default value</param>
<returns></returns>
</member>
<member name="T:NUnit.Engine.TestSelectionParserException">
<summary>
TestSelectionParserException is thrown when an error
is found while parsing the selection expression.
</summary>
</member>
<member name="M:NUnit.Engine.TestSelectionParserException.#ctor(System.String)">
<summary>
Construct with a message
</summary>
</member>
<member name="M:NUnit.Engine.TestSelectionParserException.#ctor(System.String,System.Exception)">
<summary>
Construct with a message and inner exception
</summary>
<param name="message"></param>
<param name="innerException"></param>
</member>
<member name="M:NUnit.Engine.TestSelectionParserException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serialization constructor
</summary>
</member>
</members>
</doc>
md5: 1A94FABBC134F2243F78429D3081A0CC | sha1: 9C576F43214196E2AFD538C2748EAA4E6D01612E | sha256: 492C246E536BA641A58EDAA55FF3E7A42496455BC1CAA487487AFA2588518645 | sha512: 7407B511B324C6800B63B054F5967D4AB38C3F27D82DDACC7E023F1089E2A0A34CBBA47509376BCF6874506108928DE0D12A04B67881C7A353B1000E2DC069A3
md5: 0840A47D2A6E084B91BE187E648A533A | sha1: 6532647038F6EF4B9725D3F0CE49162754ACB285 | sha256: 69E4533EE53BFCEE5305EE16C1FE485C4D4D8525AC3D367D9E04D5B4BAA4A6C6 | sha512: 8B5C99F4C14D6FEF6DD57CDC5BC272D4028D2A0E9CAB4819245ADB1C9305F7B96A4BFED01FE239E9C223EF987984165FA3926BA5A7F3290E07ED9350335AF45E
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v3.1",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v3.1": {
"nunit-agent/3.15.2": {
"dependencies": {
"nunit.engine.api": "3.15.2",
"nunit.engine.core": "3.15.2"
},
"runtime": {
"nunit-agent.dll": {}
}
},
"Microsoft.NETCore.Platforms/1.1.0": {},
"Microsoft.NETCore.Targets/1.1.0": {},
"Microsoft.Win32.Registry/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0",
"System.Collections": "4.3.0",
"System.Globalization": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0"
}
},
"System.Collections/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Globalization/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.IO/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Threading.Tasks": "4.3.0"
}
},
"System.Reflection/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.IO": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Reflection.Primitives/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Resources.ResourceManager/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Globalization": "4.3.0",
"System.Reflection": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Runtime/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0",
"Microsoft.NETCore.Targets": "1.1.0"
}
},
"System.Runtime.Extensions/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Runtime.Handles/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Runtime.InteropServices/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Reflection": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Handles": "4.3.0"
}
},
"System.Text.Encoding/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Threading.Tasks/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"TestCentric.Metadata/1.7.1": {
"runtime": {
"lib/netstandard2.0/testcentric.engine.metadata.dll": {
"assemblyVersion": "1.7.1.0",
"fileVersion": "1.7.1.0"
}
}
},
"nunit.engine.api/3.15.2": {
"runtime": {
"nunit.engine.api.dll": {}
}
},
"nunit.engine.core/3.15.2": {
"dependencies": {
"Microsoft.Win32.Registry": "4.3.0",
"TestCentric.Metadata": "1.7.1",
"nunit.engine.api": "3.15.2"
},
"runtime": {
"nunit.engine.core.dll": {}
}
}
}
},
"libraries": {
"nunit-agent/3.15.2": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"Microsoft.NETCore.Platforms/1.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
"path": "microsoft.netcore.platforms/1.1.0",
"hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512"
},
"Microsoft.NETCore.Targets/1.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
"path": "microsoft.netcore.targets/1.1.0",
"hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
},
"Microsoft.Win32.Registry/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-FgqDNuyVifJ/h60gVTGnnv5A5kQXSGMD6yqafUVf47msW1IF/sl9oIB53MU3VTbylc+aubQCIF9QT5x0oFHnAQ==",
"path": "microsoft.win32.registry/4.3.0",
"hashPath": "microsoft.win32.registry.4.3.0.nupkg.sha512"
},
"System.Collections/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
"path": "system.collections/4.3.0",
"hashPath": "system.collections.4.3.0.nupkg.sha512"
},
"System.Globalization/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
"path": "system.globalization/4.3.0",
"hashPath": "system.globalization.4.3.0.nupkg.sha512"
},
"System.IO/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
"path": "system.io/4.3.0",
"hashPath": "system.io.4.3.0.nupkg.sha512"
},
"System.Reflection/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
"path": "system.reflection/4.3.0",
"hashPath": "system.reflection.4.3.0.nupkg.sha512"
},
"System.Reflection.Primitives/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
"path": "system.reflection.primitives/4.3.0",
"hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
},
"System.Resources.ResourceManager/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
"path": "system.resources.resourcemanager/4.3.0",
"hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
},
"System.Runtime/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
"path": "system.runtime/4.3.0",
"hashPath": "system.runtime.4.3.0.nupkg.sha512"
},
"System.Runtime.Extensions/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
"path": "system.runtime.extensions/4.3.0",
"hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
},
"System.Runtime.Handles/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
"path": "system.runtime.handles/4.3.0",
"hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
},
"System.Runtime.InteropServices/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
"path": "system.runtime.interopservices/4.3.0",
"hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
},
"System.Text.Encoding/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
"path": "system.text.encoding/4.3.0",
"hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
},
"System.Threading.Tasks/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
"path": "system.threading.tasks/4.3.0",
"hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
},
"TestCentric.Metadata/1.7.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-QjdwsUJXJbGmFKNiTZbWeRpwhqRcEAtgb+dwR4YVK8xUBBEfXfrFV074f1DBtnrOfAIT+LnZCeVVeg/fYUlAEA==",
"path": "testcentric.metadata/1.7.1",
"hashPath": "testcentric.metadata.1.7.1.nupkg.sha512"
},
"nunit.engine.api/3.15.2": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"nunit.engine.core/3.15.2": {
"type": "project",
"serviceable": false,
"sha512": ""
}
}
}
md5: 28FEACC476441230D033915E30BE61A7 | sha1: 07B6E5762625D82D7E533BD36BC1F84E5392E04C | sha256: 8E50ABA4AAF820FF9E7DE14D54DEF1923265D1DBD7CA2F4EDBCCA7FD7FDFBEE5 | sha512: 86E6DC58F41C80D1B52FB271B6562CF010C09F30FDBF0C078CDE2D27C35B42512C3982E0FF4398BDD020935C4F5D6BFAD88C336549E905E8F71299D72E9BE167
<?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>
{
"runtimeOptions": {
"tfm": "netcoreapp3.1",
"framework": {
"name": "Microsoft.NETCore.App",
"version": "3.1.0"
},
"configProperties": {
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false
}
}
}
md5: AF1FC26A92A9A4FE953A0DD5BB0BB012 | sha1: 2B0A2AAA11D237B8B97238D0FBBB7EA858790EE4 | sha256: 07749B711C1033F0E6086DF6500DE595AD783D859C64700930D2907EDCBFB291 | sha512: D1A0495E937E7D940AE31A94E36375376651209681E506D76EC487AF6756980D9B5F400B5157BCD21A98CE38720AA51E772507F2577012F9C605D3B9AC7A8A40
<?xml version="1.0"?>
<doc>
<assembly>
<name>nunit.engine.api</name>
</assembly>
<members>
<member name="T:NUnit.Engine.NUnitEngineException">
<summary>
NUnitEngineException is thrown when the engine has been
called with improper values or when a particular facility
is not available.
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineException.#ctor(System.String)">
<summary>
Construct with a message
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineException.#ctor(System.String,System.Exception)">
<summary>
Construct with a message and inner exception
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serialization constructor
</summary>
</member>
<member name="T:NUnit.Engine.NUnitEngineNotFoundException">
<summary>
The exception that is thrown if a valid test engine is not found
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineNotFoundException.#ctor">
<summary>
Initializes a new instance of the <see cref="T:NUnit.Engine.NUnitEngineNotFoundException"/> class.
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineNotFoundException.#ctor(System.Version)">
<summary>
Initializes a new instance of the <see cref="T:NUnit.Engine.NUnitEngineNotFoundException"/> class.
</summary>
<param name="minVersion">The minimum version.</param>
</member>
<member name="T:NUnit.Engine.NUnitEngineUnloadException">
<summary>
NUnitEngineUnloadException is thrown when a test run has completed successfully
but one or more errors were encountered when attempting to unload
and shut down the test run cleanly.
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.String)">
<summary>
Construct with a message
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.String,System.Exception)">
<summary>
Construct with a message and inner exception
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.Collections.Generic.ICollection{System.Exception})">
<summary>
Construct with a message and a collection of exceptions.
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serialization constructor.
</summary>
</member>
<member name="P:NUnit.Engine.NUnitEngineUnloadException.AggregatedExceptions">
<summary>
Gets the collection of exceptions .
</summary>
</member>
<member name="T:NUnit.Engine.Extensibility.ExtensionAttribute">
<summary>
The ExtensionAttribute is used to identify a class that is intended
to serve as an extension.
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.ExtensionAttribute.#ctor">
<summary>
Initializes a new instance of the <see cref="T:NUnit.Engine.Extensibility.ExtensionAttribute"/> class.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.Path">
<summary>
A unique string identifying the ExtensionPoint for which this Extension is
intended. This is an optional field provided NUnit is able to deduce the
ExtensionPoint from the Type of the extension class.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.Description">
<summary>
An optional description of what the extension does.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.Enabled">
<summary>
Flag indicating whether the extension is enabled.
</summary>
<value><c>true</c> if enabled; otherwise, <c>false</c>.</value>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.EngineVersion">
<summary>
The minimum Engine version for which this extension is designed
</summary>
</member>
<member name="T:NUnit.Engine.Extensibility.ExtensionPointAttribute">
<summary>
ExtensionPointAttribute is used at the assembly level to identify and
document any ExtensionPoints supported by the assembly.
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.ExtensionPointAttribute.#ctor(System.String,System.Type)">
<summary>
Construct an ExtensionPointAttribute
</summary>
<param name="path">A unique string identifying the extension point.</param>
<param name="type">The required Type of any extension that is installed at this extension point.</param>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionPointAttribute.Path">
<summary>
The unique string identifying this ExtensionPoint. This identifier
is typically formatted as a path using '/' and the set of extension
points is sometimes viewed as forming a tree.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionPointAttribute.Type">
<summary>
The required Type (usually an interface) of any extension that is
installed at this ExtensionPoint.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionPointAttribute.Description">
<summary>
An optional description of the purpose of the ExtensionPoint
</summary>
</member>
<member name="T:NUnit.Engine.Extensibility.ExtensionPropertyAttribute">
<summary>
The ExtensionPropertyAttribute is used to specify named properties for an extension.
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.ExtensionPropertyAttribute.#ctor(System.String,System.String)">
<summary>
Construct an ExtensionPropertyAttribute
</summary>
<param name="name">The name of the property</param>
<param name="value">The property value</param>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionPropertyAttribute.Name">
<summary>
The name of the property.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionPropertyAttribute.Value">
<summary>
The property value
</summary>
</member>
<member name="T:NUnit.Engine.Extensibility.IDriverFactory">
<summary>
Interface implemented by a Type that knows how to create a driver for a test assembly.
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.IDriverFactory.IsSupportedTestFramework(System.Reflection.AssemblyName)">
<summary>
Gets a flag indicating whether a given AssemblyName
represents a test framework supported by this factory.
</summary>
<param name="reference">An AssemblyName referring to the possible test framework.</param>
</member>
<member name="M:NUnit.Engine.Extensibility.IDriverFactory.GetDriver(System.Reflection.AssemblyName)">
<summary>
Gets a driver for a given test assembly and a framework
which the assembly is already known to reference.
</summary>
<param name="reference">An AssemblyName referring to the test framework.</param>
<returns></returns>
</member>
<member name="T:NUnit.Engine.Extensibility.IExtensionNode">
<summary>
The IExtensionNode interface is implemented by a class that represents a
single extension being installed on a particular extension point.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionNode.TypeName">
<summary>
Gets the full name of the Type of the extension object.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionNode.Enabled">
<summary>
Gets a value indicating whether this <see cref="T:NUnit.Engine.Extensibility.IExtensionNode"/> is enabled.
</summary>
<value><c>true</c> if enabled; otherwise, <c>false</c>.</value>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionNode.Path">
<summary>
Gets the unique string identifying the ExtensionPoint for which
this Extension is intended. This identifier may be supplied by the attribute
marking the extension or deduced by NUnit from the Type of the extension class.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionNode.Description">
<summary>
Gets an optional description of what the extension does.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionNode.TargetFramework">
<summary>
The TargetFramework of the extension assembly.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionNode.PropertyNames">
<summary>
Gets a collection of the names of all this extension's properties
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.IExtensionNode.GetValues(System.String)">
<summary>
Gets a collection of the values of a particular named property
If none are present, returns an empty enumerator.
</summary>
<param name="name">The property name</param>
<returns>A collection of values</returns>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionNode.AssemblyPath">
<summary>
The path to the assembly implementing this extension.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionNode.AssemblyVersion">
<summary>
The version of the assembly implementing this extension.
</summary>
</member>
<member name="T:NUnit.Engine.Extensibility.IExtensionPoint">
<summary>
An ExtensionPoint represents a single point in the TestEngine
that may be extended by user addins and extensions.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionPoint.Path">
<summary>
Gets the unique path identifying this extension point.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionPoint.Description">
<summary>
Gets the description of this extension point. May be null.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionPoint.TypeName">
<summary>
Gets the FullName of the Type required for any extension to be installed at this extension point.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionPoint.Extensions">
<summary>
Gets an enumeration of IExtensionNodes for extensions installed on this extension point.
</summary>
</member>
<member name="T:NUnit.Engine.Extensibility.IFrameworkDriver">
<summary>
The IFrameworkDriver interface is implemented by a class that
is able to use an external framework to explore or run tests
under the engine.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IFrameworkDriver.ID">
<summary>
Gets and sets the unique identifier for this driver,
used to ensure that test ids are unique across drivers.
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.Load(System.String,System.Collections.Generic.IDictionary{System.String,System.Object})">
<summary>
Loads the tests in an assembly.
</summary>
<returns>An Xml string representing the loaded test</returns>
</member>
<member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.CountTestCases(System.String)">
<summary>
Count the test cases that would be executed.
</summary>
<param name="filter">An XML string representing the TestFilter to use in counting the tests</param>
<returns>The number of test cases counted</returns>
</member>
<member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.Run(NUnit.Engine.ITestEventListener,System.String)">
<summary>
Executes the tests in an assembly.
</summary>
<param name="listener">An ITestEventHandler that receives progress notices</param>
<param name="filter">A XML string representing the filter that controls which tests are executed</param>
<returns>An Xml string representing the result</returns>
</member>
<member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.Explore(System.String)">
<summary>
Returns information about the tests in an assembly.
</summary>
<param name="filter">An XML string representing the filter that controls which tests are included</param>
<returns>An Xml string representing the tests</returns>
</member>
<member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.StopRun(System.Boolean)">
<summary>
Cancel the ongoing test run. If no test is running, the call is ignored.
</summary>
<param name="force">If true, cancel any ongoing test threads, otherwise wait for them to complete.</param>
</member>
<member name="T:NUnit.Engine.Extensibility.IProject">
<summary>
Interface for the various project types that the engine can load.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IProject.ProjectPath">
<summary>
Gets the path to the file storing this project, if any.
If the project has not been saved, this is null.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IProject.ActiveConfigName">
<summary>
Gets the active configuration, as defined
by the particular project.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IProject.ConfigNames">
<summary>
Gets a list of the configs for this project
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.IProject.GetTestPackage">
<summary>
Gets a test package for the primary or active
configuration within the project. The package
includes all the assemblies and any settings
specified in the project format.
</summary>
<returns>A TestPackage</returns>
</member>
<member name="M:NUnit.Engine.Extensibility.IProject.GetTestPackage(System.String)">
<summary>
Gets a TestPackage for a specific configuration
within the project. The package includes all the
assemblies and any settings specified in the
project format.
</summary>
<param name="configName">The name of the config to use</param>
<returns>A TestPackage for the named configuration.</returns>
</member>
<member name="T:NUnit.Engine.Extensibility.IProjectLoader">
<summary>
The IProjectLoader interface is implemented by any class
that knows how to load projects in a specific format.
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.IProjectLoader.CanLoadFrom(System.String)">
<summary>
Returns true if the file indicated is one that this
loader knows how to load.
</summary>
<param name="path">The path of the project file</param>
<returns>True if the loader knows how to load this file, otherwise false</returns>
</member>
<member name="M:NUnit.Engine.Extensibility.IProjectLoader.LoadFrom(System.String)">
<summary>
Loads a project of a known format.
</summary>
<param name="path">The path of the project file</param>
<returns>An IProject interface to the loaded project or null if the project cannot be loaded</returns>
</member>
<member name="T:NUnit.Engine.Extensibility.IResultWriter">
<summary>
Common interface for objects that process and write out test results
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.IResultWriter.CheckWritability(System.String)">
<summary>
Checks if the output path is writable. If the output is not
writable, this method should throw an exception.
</summary>
<param name="outputPath"></param>
</member>
<member name="M:NUnit.Engine.Extensibility.IResultWriter.WriteResultFile(System.Xml.XmlNode,System.String)">
<summary>
Writes result to the specified output path.
</summary>
<param name="resultNode">XmlNode for the result</param>
<param name="outputPath">Path to which it should be written</param>
</member>
<member name="M:NUnit.Engine.Extensibility.IResultWriter.WriteResultFile(System.Xml.XmlNode,System.IO.TextWriter)">
<summary>
Writes result to a TextWriter.
</summary>
<param name="resultNode">XmlNode for the result</param>
<param name="writer">TextWriter to which it should be written</param>
</member>
<member name="T:NUnit.Engine.Extensibility.TypeExtensionPointAttribute">
<summary>
TypeExtensionPointAttribute is used to bind an extension point
to a class or interface.
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.#ctor(System.String)">
<summary>
Construct a TypeExtensionPointAttribute, specifying the path.
</summary>
<param name="path">A unique string identifying the extension point.</param>
</member>
<member name="M:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.#ctor">
<summary>
Construct an TypeExtensionPointAttribute, without specifying the path.
The extension point will use a path constructed based on the interface
or class to which the attribute is applied.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.Path">
<summary>
The unique string identifying this ExtensionPoint. This identifier
is typically formatted as a path using '/' and the set of extension
points is sometimes viewed as forming a tree.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.Description">
<summary>
An optional description of the purpose of the ExtensionPoint
</summary>
</member>
<member name="T:NUnit.Engine.IAvailableRuntimes">
<summary>
Interface that returns a list of available runtime frameworks.
</summary>
</member>
<member name="P:NUnit.Engine.IAvailableRuntimes.AvailableRuntimes">
<summary>
Gets a list of available runtime frameworks.
</summary>
</member>
<member name="T:NUnit.Engine.IExtensionService">
<summary>
The IExtensionService interface allows a runner to manage extensions.
</summary>
</member>
<member name="P:NUnit.Engine.IExtensionService.ExtensionPoints">
<summary>
Gets an enumeration of all ExtensionPoints in the engine.
</summary>
</member>
<member name="P:NUnit.Engine.IExtensionService.Extensions">
<summary>
Gets an enumeration of all installed Extensions.
</summary>
</member>
<member name="M:NUnit.Engine.IExtensionService.GetExtensionPoint(System.String)">
<summary>
Get an ExtensionPoint based on its unique identifying path.
</summary>
</member>
<member name="M:NUnit.Engine.IExtensionService.GetExtensionNodes(System.String)">
<summary>
Get an enumeration of ExtensionNodes based on their identifying path.
</summary>
</member>
<member name="M:NUnit.Engine.IExtensionService.EnableExtension(System.String,System.Boolean)">
<summary>
Enable or disable an extension
</summary>
<param name="typeName"></param>
<param name="enabled"></param>
</member>
<member name="T:NUnit.Engine.ILogger">
<summary>
Interface for logging within the engine
</summary>
</member>
<member name="M:NUnit.Engine.ILogger.Error(System.String)">
<summary>
Logs the specified message at the error level.
</summary>
<param name="message">The message.</param>
</member>
<member name="M:NUnit.Engine.ILogger.Error(System.String,System.Object[])">
<summary>
Logs the specified message at the error level.
</summary>
<param name="format">The message.</param>
<param name="args">The arguments.</param>
</member>
<member name="M:NUnit.Engine.ILogger.Warning(System.String)">
<summary>
Logs the specified message at the warning level.
</summary>
<param name="message">The message.</param>
</member>
<member name="M:NUnit.Engine.ILogger.Warning(System.String,System.Object[])">
<summary>
Logs the specified message at the warning level.
</summary>
<param name="format">The message.</param>
<param name="args">The arguments.</param>
</member>
<member name="M:NUnit.Engine.ILogger.Info(System.String)">
<summary>
Logs the specified message at the info level.
</summary>
<param name="message">The message.</param>
</member>
<member name="M:NUnit.Engine.ILogger.Info(System.String,System.Object[])">
<summary>
Logs the specified message at the info level.
</summary>
<param name="format">The message.</param>
<param name="args">The arguments.</param>
</member>
<member name="M:NUnit.Engine.ILogger.Debug(System.String)">
<summary>
Logs the specified message at the debug level.
</summary>
<param name="message">The message.</param>
</member>
<member name="M:NUnit.Engine.ILogger.Debug(System.String,System.Object[])">
<summary>
Logs the specified message at the debug level.
</summary>
<param name="format">The message.</param>
<param name="args">The arguments.</param>
</member>
<member name="T:NUnit.Engine.ILogging">
<summary>
Interface to abstract getting loggers
</summary>
</member>
<member name="M:NUnit.Engine.ILogging.GetLogger(System.String)">
<summary>
Gets the logger.
</summary>
<param name="name">The name of the logger to get.</param>
<returns></returns>
</member>
<member name="T:NUnit.Engine.InternalTraceLevel">
<summary>
InternalTraceLevel is an enumeration controlling the
level of detailed presented in the internal log.
</summary>
</member>
<member name="F:NUnit.Engine.InternalTraceLevel.Default">
<summary>
Use the default settings as specified by the user.
</summary>
</member>
<member name="F:NUnit.Engine.InternalTraceLevel.Off">
<summary>
Do not display any trace messages
</summary>
</member>
<member name="F:NUnit.Engine.InternalTraceLevel.Error">
<summary>
Display Error messages only
</summary>
</member>
<member name="F:NUnit.Engine.InternalTraceLevel.Warning">
<summary>
Display Warning level and higher messages
</summary>
</member>
<member name="F:NUnit.Engine.InternalTraceLevel.Info">
<summary>
Display informational and higher messages
</summary>
</member>
<member name="F:NUnit.Engine.InternalTraceLevel.Debug">
<summary>
Display debug messages and higher - i.e. all messages
</summary>
</member>
<member name="F:NUnit.Engine.InternalTraceLevel.Verbose">
<summary>
Display debug messages and higher - i.e. all messages
</summary>
</member>
<member name="T:NUnit.Engine.IRecentFiles">
<summary>
The IRecentFiles interface is used to isolate the app
from various implementations of recent files.
</summary>
</member>
<member name="P:NUnit.Engine.IRecentFiles.MaxFiles">
<summary>
The max number of files saved
</summary>
</member>
<member name="P:NUnit.Engine.IRecentFiles.Entries">
<summary>
Get a list of all the file entries
</summary>
<returns>The most recent file list</returns>
</member>
<member name="M:NUnit.Engine.IRecentFiles.SetMostRecent(System.String)">
<summary>
Set the most recent file name, reordering
the saved names as needed and removing the oldest
if the max number of files would be exceeded.
The current CLR version is used to create the entry.
</summary>
</member>
<member name="M:NUnit.Engine.IRecentFiles.Remove(System.String)">
<summary>
Remove a file from the list
</summary>
<param name="fileName">The name of the file to remove</param>
</member>
<member name="T:NUnit.Engine.IResultService">
<summary>
IResultWriterService provides result writers for a specified
well-known format.
</summary>
</member>
<member name="P:NUnit.Engine.IResultService.Formats">
<summary>
Gets an array of the available formats
</summary>
</member>
<member name="M:NUnit.Engine.IResultService.GetResultWriter(System.String,System.Object[])">
<summary>
Gets a ResultWriter for a given format and set of arguments.
</summary>
<param name="format">The name of the format to be used</param>
<param name="args">A set of arguments to be used in constructing the writer or null if non arguments are needed</param>
<returns>An IResultWriter</returns>
</member>
<member name="T:NUnit.Engine.IRuntimeFramework">
<summary>
Interface implemented by objects representing a runtime framework.
</summary>
</member>
<member name="P:NUnit.Engine.IRuntimeFramework.Id">
<summary>
Gets the inique Id for this runtime, such as "net-4.5"
</summary>
</member>
<member name="P:NUnit.Engine.IRuntimeFramework.DisplayName">
<summary>
Gets the display name of the framework, such as ".NET 4.5"
</summary>
</member>
<member name="P:NUnit.Engine.IRuntimeFramework.FrameworkVersion">
<summary>
Gets the framework version: usually contains two components, Major
and Minor, which match the corresponding CLR components, but not always.
</summary>
</member>
<member name="P:NUnit.Engine.IRuntimeFramework.ClrVersion">
<summary>
Gets the Version of the CLR for this framework
</summary>
</member>
<member name="P:NUnit.Engine.IRuntimeFramework.Profile">
<summary>
Gets a string representing the particular profile installed,
or null if there is no profile. Currently. the only defined
values are Full and Client.
</summary>
</member>
<member name="T:NUnit.Engine.IRuntimeFrameworkService">
<summary>
Implemented by a type that provides information about the
current and other available runtimes.
</summary>
</member>
<member name="M:NUnit.Engine.IRuntimeFrameworkService.IsAvailable(System.String)">
<summary>
Returns true if the runtime framework represented by
the string passed as an argument is available.
</summary>
<param name="framework">A string representing a framework, like 'net-4.0'</param>
<returns>True if the framework is available, false if unavailable or nonexistent</returns>
</member>
<member name="M:NUnit.Engine.IRuntimeFrameworkService.SelectRuntimeFramework(NUnit.Engine.TestPackage)">
<summary>
Selects a target runtime framework for a TestPackage based on
the settings in the package and the assemblies themselves.
The package RuntimeFramework setting may be updated as a
result and the selected runtime is returned.
Note that if a package has subpackages, the subpackages may run on a different
framework to the top-level package. In future, this method should
probably not return a simple string, and instead require runners
to inspect the test package structure, to find all desired frameworks.
</summary>
<param name="package">A TestPackage</param>
<returns>The selected RuntimeFramework</returns>
</member>
<member name="T:NUnit.Engine.ServiceStatus">
<summary>
Enumeration representing the status of a service
</summary>
</member>
<member name="F:NUnit.Engine.ServiceStatus.Stopped">
<summary>Service was never started or has been stopped</summary>
</member>
<member name="F:NUnit.Engine.ServiceStatus.Started">
<summary>Started successfully</summary>
</member>
<member name="F:NUnit.Engine.ServiceStatus.Error">
<summary>Service failed to start and is unavailable</summary>
</member>
<member name="T:NUnit.Engine.IService">
<summary>
The IService interface is implemented by all Services. Although it
is extensible, it does not reside in the Extensibility namespace
because it is so widely used by the engine.
</summary>
</member>
<member name="P:NUnit.Engine.IService.ServiceContext">
<summary>
The ServiceContext
</summary>
</member>
<member name="P:NUnit.Engine.IService.Status">
<summary>
Gets the ServiceStatus of this service
</summary>
</member>
<member name="M:NUnit.Engine.IService.StartService">
<summary>
Initialize the Service
</summary>
</member>
<member name="M:NUnit.Engine.IService.StopService">
<summary>
Do any cleanup needed before terminating the service
</summary>
</member>
<member name="T:NUnit.Engine.IServiceLocator">
<summary>
IServiceLocator allows clients to locate any NUnit services
for which the interface is referenced. In normal use, this
linits it to those services using interfaces defined in the
nunit.engine.api assembly.
</summary>
</member>
<member name="M:NUnit.Engine.IServiceLocator.GetService``1">
<summary>
Return a specified type of service
</summary>
</member>
<member name="M:NUnit.Engine.IServiceLocator.GetService(System.Type)">
<summary>
Return a specified type of service
</summary>
</member>
<member name="T:NUnit.Engine.SettingsEventHandler">
<summary>
Event handler for settings changes
</summary>
<param name="sender">The sender.</param>
<param name="args">The <see cref="T:NUnit.Engine.SettingsEventArgs"/> instance containing the event data.</param>
</member>
<member name="T:NUnit.Engine.SettingsEventArgs">
<summary>
Event argument for settings changes
</summary>
</member>
<member name="M:NUnit.Engine.SettingsEventArgs.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:NUnit.Engine.SettingsEventArgs"/> class.
</summary>
<param name="settingName">Name of the setting that has changed.</param>
</member>
<member name="P:NUnit.Engine.SettingsEventArgs.SettingName">
<summary>
Gets the name of the setting that has changed
</summary>
</member>
<member name="T:NUnit.Engine.ISettings">
<summary>
The ISettings interface is used to access all user
settings and options.
</summary>
</member>
<member name="E:NUnit.Engine.ISettings.Changed">
<summary>
Occurs when the settings are changed.
</summary>
</member>
<member name="M:NUnit.Engine.ISettings.GetSetting(System.String)">
<summary>
Load a setting from the storage.
</summary>
<param name="settingName">Name of the setting to load</param>
<returns>Value of the setting or null</returns>
</member>
<member name="M:NUnit.Engine.ISettings.GetSetting``1(System.String,``0)">
<summary>
Load a setting from the storage or return a default value
</summary>
<param name="settingName">Name of the setting to load</param>
<param name="defaultValue">Value to return if the setting is missing</param>
<returns>Value of the setting or the default value</returns>
</member>
<member name="M:NUnit.Engine.ISettings.RemoveSetting(System.String)">
<summary>
Remove a setting from the storage
</summary>
<param name="settingName">Name of the setting to remove</param>
</member>
<member name="M:NUnit.Engine.ISettings.RemoveGroup(System.String)">
<summary>
Remove an entire group of settings from the storage
</summary>
<param name="groupName">Name of the group to remove</param>
</member>
<member name="M:NUnit.Engine.ISettings.SaveSetting(System.String,System.Object)">
<summary>
Save a setting in the storage
</summary>
<param name="settingName">Name of the setting to save</param>
<param name="settingValue">Value to be saved</param>
</member>
<member name="T:NUnit.Engine.ITestEngine">
<summary>
ITestEngine represents an instance of the test engine.
Clients wanting to discover, explore or run tests start
require an instance of the engine, which is generally
acquired from the TestEngineActivator class.
</summary>
</member>
<member name="P:NUnit.Engine.ITestEngine.Services">
<summary>
Gets the IServiceLocator interface, which gives access to
certain services provided by the engine.
</summary>
</member>
<member name="P:NUnit.Engine.ITestEngine.WorkDirectory">
<summary>
Gets and sets the directory path used by the engine for saving files.
Some services may ignore changes to this path made after initialization.
The default value is the current directory.
</summary>
</member>
<member name="P:NUnit.Engine.ITestEngine.InternalTraceLevel">
<summary>
Gets and sets the InternalTraceLevel used by the engine. Changing this
setting after initialization will have no effect. The default value
is the value saved in the NUnit settings.
</summary>
</member>
<member name="M:NUnit.Engine.ITestEngine.Initialize">
<summary>
Initialize the engine. This includes initializing mono addins,
setting the trace level and creating the standard set of services
used in the Engine.
This interface is not normally called by user code. Programs linking
only to the nunit.engine.api assembly are given a
pre-initialized instance of TestEngine. Programs
that link directly to nunit.engine usually do so
in order to perform custom initialization.
</summary>
</member>
<member name="M:NUnit.Engine.ITestEngine.GetRunner(NUnit.Engine.TestPackage)">
<summary>
Returns a test runner instance for use by clients in discovering,
exploring and executing tests.
</summary>
<param name="package">The TestPackage for which the runner is intended.</param>
<returns>An ITestRunner.</returns>
</member>
<member name="T:NUnit.Engine.ITestEventListener">
<summary>
The ITestListener interface is used to receive notices of significant
events while a test is running. Its single method accepts an Xml string,
which may represent any event generated by the test framework, the driver
or any of the runners internal to the engine. Use of Xml means that
any driver and framework may add additional events and the engine will
simply pass them on through this interface.
</summary>
</member>
<member name="M:NUnit.Engine.ITestEventListener.OnTestEvent(System.String)">
<summary>
Handle a progress report or other event.
</summary>
<param name="report">An XML progress report.</param>
</member>
<member name="T:NUnit.Engine.ITestFilterBuilder">
<summary>
Interface to a TestFilterBuilder, which is used to create TestFilters
</summary>
</member>
<member name="M:NUnit.Engine.ITestFilterBuilder.AddTest(System.String)">
<summary>
Add a test to be selected
</summary>
<param name="fullName">The full name of the test, as created by NUnit</param>
</member>
<member name="M:NUnit.Engine.ITestFilterBuilder.SelectWhere(System.String)">
<summary>
Specify what is to be included by the filter using a where clause.
</summary>
<param name="whereClause">A where clause that will be parsed by NUnit to create the filter.</param>
</member>
<member name="M:NUnit.Engine.ITestFilterBuilder.GetFilter">
<summary>
Get a TestFilter constructed according to the criteria specified by the other calls.
</summary>
<returns>A TestFilter.</returns>
</member>
<member name="T:NUnit.Engine.ITestFilterService">
<summary>
The TestFilterService provides builders that can create TestFilters
</summary>
</member>
<member name="M:NUnit.Engine.ITestFilterService.GetTestFilterBuilder">
<summary>
Get an uninitialized TestFilterBuilder
</summary>
</member>
<member name="T:NUnit.Engine.ITestRun">
<summary>
The ITestRun class represents an ongoing test run.
</summary>
</member>
<member name="P:NUnit.Engine.ITestRun.Result">
<summary>
Get the result of the test.
</summary>
<returns>An XmlNode representing the test run result</returns>
</member>
<member name="M:NUnit.Engine.ITestRun.Wait(System.Int32)">
<summary>
Blocks the current thread until the current test run completes
or the timeout is reached
</summary>
<param name="timeout">A <see cref="T:System.Int32"/> that represents the number of milliseconds to wait or -1 milliseconds to wait indefinitely. </param>
<returns>True if the run completed</returns>
</member>
<member name="T:NUnit.Engine.ITestRunner">
<summary>
Interface implemented by all test runners.
</summary>
</member>
<member name="P:NUnit.Engine.ITestRunner.IsTestRunning">
<summary>
Get a flag indicating whether a test is running
</summary>
</member>
<member name="M:NUnit.Engine.ITestRunner.Load">
<summary>
Load a TestPackage for possible execution
</summary>
<returns>An XmlNode representing the loaded package.</returns>
<remarks>
This method is normally optional, since Explore and Run call
it automatically when necessary. The method is kept in order
to make it easier to convert older programs that use it.
</remarks>
</member>
<member name="M:NUnit.Engine.ITestRunner.Unload">
<summary>
Unload any loaded TestPackage. If none is loaded,
the call is ignored.
</summary>
</member>
<member name="M:NUnit.Engine.ITestRunner.Reload">
<summary>
Reload the current TestPackage
</summary>
<returns>An XmlNode representing the loaded package.</returns>
</member>
<member name="M:NUnit.Engine.ITestRunner.CountTestCases(NUnit.Engine.TestFilter)">
<summary>
Count the test cases that would be run under
the specified filter.
</summary>
<param name="filter">A TestFilter</param>
<returns>The count of test cases</returns>
</member>
<member name="M:NUnit.Engine.ITestRunner.Run(NUnit.Engine.ITestEventListener,NUnit.Engine.TestFilter)">
<summary>
Run the tests in the loaded TestPackage and return a test result. The tests
are run synchronously and the listener interface is notified as it progresses.
</summary>
<param name="listener">The listener that is notified as the run progresses</param>
<param name="filter">A TestFilter used to select tests</param>
<returns>An XmlNode giving the result of the test execution</returns>
</member>
<member name="M:NUnit.Engine.ITestRunner.RunAsync(NUnit.Engine.ITestEventListener,NUnit.Engine.TestFilter)">
<summary>
Start a run of the tests in the loaded TestPackage. The tests are run
asynchronously and the listener interface is notified as it progresses.
</summary>
<param name="listener">The listener that is notified as the run progresses</param>
<param name="filter">A TestFilter used to select tests</param>
<returns></returns>
</member>
<member name="M:NUnit.Engine.ITestRunner.StopRun(System.Boolean)">
<summary>
Cancel the ongoing test run. If no test is running, the call is ignored.
</summary>
<param name="force">If true, cancel any ongoing test threads, otherwise wait for them to complete.</param>
</member>
<member name="M:NUnit.Engine.ITestRunner.Explore(NUnit.Engine.TestFilter)">
<summary>
Explore a loaded TestPackage and return information about the tests found.
</summary>
<param name="filter">The TestFilter to be used in selecting tests to explore.</param>
<returns>An XmlNode representing the tests found.</returns>
</member>
<member name="T:NUnit.Engine.TestEngineActivator">
<summary>
TestEngineActivator creates an instance of the test engine and returns an ITestEngine interface.
</summary>
</member>
<member name="M:NUnit.Engine.TestEngineActivator.CreateInstance">
<summary>
Create an instance of the test engine.
</summary>
<returns>An <see cref="T:NUnit.Engine.ITestEngine"/></returns>
</member>
<member name="T:NUnit.Engine.TestFilter">
<summary>
Abstract base for all test filters. A filter is represented
by an XmlNode with <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:NUnit.Engine.TestFilter.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:NUnit.Engine.TestFilter"/> class.
</summary>
<param name="xmlText">The XML text that specifies the filter.</param>
</member>
<member name="F:NUnit.Engine.TestFilter.Empty">
<summary>
The empty filter - one that always passes.
</summary>
</member>
<member name="P:NUnit.Engine.TestFilter.Text">
<summary>
Gets the XML representation of this filter as a string.
</summary>
</member>
<member name="T:NUnit.Engine.TestPackage">
<summary>
TestPackage holds information about a set of test files to
be loaded by a TestRunner. Each TestPackage represents
tests for one or more test files. TestPackages may be named
or anonymous, depending on the constructor used.
Upon construction, a package is given an ID (string), which
remains unchanged for the lifetime of the TestPackage instance.
The package ID is passed to the test framework for use in generating
test IDs.
A runner that reloads test assemblies and wants the ids to remain stable
should avoid creating a new package but should instead use the original
package, changing settings as needed. This gives the best chance for the
tests in the reloaded assembly to match those originally loaded.
</summary>
</member>
<member name="M:NUnit.Engine.TestPackage.#ctor(System.String)">
<summary>
Construct a named TestPackage, specifying a file path for
the assembly or project to be used.
</summary>
<param name="filePath">The file path.</param>
</member>
<member name="M:NUnit.Engine.TestPackage.#ctor(System.Collections.Generic.IList{System.String})">
<summary>
Construct an anonymous TestPackage that wraps test files.
</summary>
<param name="testFiles"></param>
</member>
<member name="P:NUnit.Engine.TestPackage.ID">
<summary>
Every test package gets a unique ID used to prefix test IDs within that package.
</summary>
<remarks>
The generated ID is only unique for packages created within the same application domain.
For that reason, NUnit pre-creates all test packages that will be needed.
</remarks>
</member>
<member name="P:NUnit.Engine.TestPackage.Name">
<summary>
Gets the name of the package
</summary>
</member>
<member name="P:NUnit.Engine.TestPackage.FullName">
<summary>
Gets the path to the file containing tests. It may be
an assembly or a recognized project type.
</summary>
</member>
<member name="P:NUnit.Engine.TestPackage.SubPackages">
<summary>
Gets the list of SubPackages contained in this package
</summary>
</member>
<member name="P:NUnit.Engine.TestPackage.Settings">
<summary>
Gets the settings dictionary for this package.
</summary>
</member>
<member name="M:NUnit.Engine.TestPackage.AddSubPackage(NUnit.Engine.TestPackage)">
<summary>
Add a subproject to the package.
</summary>
<param name="subPackage">The subpackage to be added</param>
</member>
<member name="M:NUnit.Engine.TestPackage.AddSetting(System.String,System.Object)">
<summary>
Add a setting to a package and all of its subpackages.
</summary>
<param name="name">The name of the setting</param>
<param name="value">The value of the setting</param>
<remarks>
Once a package is created, subpackages may have been created
as well. If you add a setting directly to the Settings dictionary
of the package, the subpackages are not updated. This method is
used when the settings are intended to be reflected to all the
subpackages under the package.
</remarks>
</member>
<member name="M:NUnit.Engine.TestPackage.GetSetting``1(System.String,``0)">
<summary>
Return the value of a setting or a default.
</summary>
<param name="name">The name of the setting</param>
<param name="defaultSetting">The default value</param>
<returns></returns>
</member>
<member name="T:NUnit.Engine.TestSelectionParserException">
<summary>
TestSelectionParserException is thrown when an error
is found while parsing the selection expression.
</summary>
</member>
<member name="M:NUnit.Engine.TestSelectionParserException.#ctor(System.String)">
<summary>
Construct with a message
</summary>
</member>
<member name="M:NUnit.Engine.TestSelectionParserException.#ctor(System.String,System.Exception)">
<summary>
Construct with a message and inner exception
</summary>
<param name="message"></param>
<param name="innerException"></param>
</member>
<member name="M:NUnit.Engine.TestSelectionParserException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serialization constructor
</summary>
</member>
</members>
</doc>
md5: 670C65C5A185A0678A7557750B0E8EB2 | sha1: 43893C5710DCBDE9A5824A19EBCF775616F5B70A | sha256: B11F85914D55020E8FFB124881D9BACEE8CE691F971D41B0C4D5242D15912462 | sha512: 47DC5470E6E8079B5A26F992555DEFD847DB6C3B2E310098B5E54A0D5B362B675B7BA376D4DBEEFCBFDE25CC41E8764C86EB76E74AEE66A7FABDEB4F9DD27911
md5: 0840A47D2A6E084B91BE187E648A533A | sha1: 6532647038F6EF4B9725D3F0CE49162754ACB285 | sha256: 69E4533EE53BFCEE5305EE16C1FE485C4D4D8525AC3D367D9E04D5B4BAA4A6C6 | sha512: 8B5C99F4C14D6FEF6DD57CDC5BC272D4028D2A0E9CAB4819245ADB1C9305F7B96A4BFED01FE239E9C223EF987984165FA3926BA5A7F3290E07ED9350335AF45E
Copyright (c) 2021 Charlie Poole, Rob Prouse
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
NUnit 3.0 is based on earlier versions of NUnit, with Portions
Copyright (c) 2002-2014 Charlie Poole or
Copyright (c) 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov or
Copyright (c) 2000-2002 Philip A. Craig
md5: 1EB5D51DD8CEA1DA37DA4B605FD3177F | sha1: E9839CAF9BB840A680A21F6622DCBCAE9E43D5D1 | sha256: F1BC0BF5677D24A9AE540B66BEBB835CCCD54231BB456735EE51F18BBBE25021 | sha512: 16F2B3AFC906DB3EA60E50A5D994227BBA3511620F16C6D78E783787493B444414225D4F1FC1E537DC53CA8D4F0C39D85B97642B02CFB517C348DF7E7E50D7E7
<?xml version="1.0"?>
<doc>
<assembly>
<name>nunit.engine.api</name>
</assembly>
<members>
<member name="T:NUnit.Engine.NUnitEngineException">
<summary>
NUnitEngineException is thrown when the engine has been
called with improper values or when a particular facility
is not available.
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineException.#ctor(System.String)">
<summary>
Construct with a message
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineException.#ctor(System.String,System.Exception)">
<summary>
Construct with a message and inner exception
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serialization constructor
</summary>
</member>
<member name="T:NUnit.Engine.NUnitEngineNotFoundException">
<summary>
The exception that is thrown if a valid test engine is not found
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineNotFoundException.#ctor">
<summary>
Initializes a new instance of the <see cref="T:NUnit.Engine.NUnitEngineNotFoundException"/> class.
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineNotFoundException.#ctor(System.Version)">
<summary>
Initializes a new instance of the <see cref="T:NUnit.Engine.NUnitEngineNotFoundException"/> class.
</summary>
<param name="minVersion">The minimum version.</param>
</member>
<member name="T:NUnit.Engine.NUnitEngineUnloadException">
<summary>
NUnitEngineUnloadException is thrown when a test run has completed successfully
but one or more errors were encountered when attempting to unload
and shut down the test run cleanly.
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.String)">
<summary>
Construct with a message
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.String,System.Exception)">
<summary>
Construct with a message and inner exception
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.Collections.Generic.ICollection{System.Exception})">
<summary>
Construct with a message and a collection of exceptions.
</summary>
</member>
<member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serialization constructor.
</summary>
</member>
<member name="P:NUnit.Engine.NUnitEngineUnloadException.AggregatedExceptions">
<summary>
Gets the collection of exceptions .
</summary>
</member>
<member name="T:NUnit.Engine.Extensibility.ExtensionAttribute">
<summary>
The ExtensionAttribute is used to identify a class that is intended
to serve as an extension.
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.ExtensionAttribute.#ctor">
<summary>
Initializes a new instance of the <see cref="T:NUnit.Engine.Extensibility.ExtensionAttribute"/> class.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.Path">
<summary>
A unique string identifying the ExtensionPoint for which this Extension is
intended. This is an optional field provided NUnit is able to deduce the
ExtensionPoint from the Type of the extension class.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.Description">
<summary>
An optional description of what the extension does.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.Enabled">
<summary>
Flag indicating whether the extension is enabled.
</summary>
<value><c>true</c> if enabled; otherwise, <c>false</c>.</value>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.EngineVersion">
<summary>
The minimum Engine version for which this extension is designed
</summary>
</member>
<member name="T:NUnit.Engine.Extensibility.ExtensionPointAttribute">
<summary>
ExtensionPointAttribute is used at the assembly level to identify and
document any ExtensionPoints supported by the assembly.
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.ExtensionPointAttribute.#ctor(System.String,System.Type)">
<summary>
Construct an ExtensionPointAttribute
</summary>
<param name="path">A unique string identifying the extension point.</param>
<param name="type">The required Type of any extension that is installed at this extension point.</param>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionPointAttribute.Path">
<summary>
The unique string identifying this ExtensionPoint. This identifier
is typically formatted as a path using '/' and the set of extension
points is sometimes viewed as forming a tree.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionPointAttribute.Type">
<summary>
The required Type (usually an interface) of any extension that is
installed at this ExtensionPoint.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionPointAttribute.Description">
<summary>
An optional description of the purpose of the ExtensionPoint
</summary>
</member>
<member name="T:NUnit.Engine.Extensibility.ExtensionPropertyAttribute">
<summary>
The ExtensionPropertyAttribute is used to specify named properties for an extension.
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.ExtensionPropertyAttribute.#ctor(System.String,System.String)">
<summary>
Construct an ExtensionPropertyAttribute
</summary>
<param name="name">The name of the property</param>
<param name="value">The property value</param>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionPropertyAttribute.Name">
<summary>
The name of the property.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.ExtensionPropertyAttribute.Value">
<summary>
The property value
</summary>
</member>
<member name="T:NUnit.Engine.Extensibility.IDriverFactory">
<summary>
Interface implemented by a Type that knows how to create a driver for a test assembly.
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.IDriverFactory.IsSupportedTestFramework(System.Reflection.AssemblyName)">
<summary>
Gets a flag indicating whether a given AssemblyName
represents a test framework supported by this factory.
</summary>
<param name="reference">An AssemblyName referring to the possible test framework.</param>
</member>
<member name="M:NUnit.Engine.Extensibility.IDriverFactory.GetDriver(System.AppDomain,System.Reflection.AssemblyName)">
<summary>
Gets a driver for a given test assembly and a framework
which the assembly is already known to reference.
</summary>
<param name="domain">The domain in which the assembly will be loaded</param>
<param name="reference">An AssemblyName referring to the test framework.</param>
<returns></returns>
</member>
<member name="T:NUnit.Engine.Extensibility.IExtensionNode">
<summary>
The IExtensionNode interface is implemented by a class that represents a
single extension being installed on a particular extension point.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionNode.TypeName">
<summary>
Gets the full name of the Type of the extension object.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionNode.Enabled">
<summary>
Gets a value indicating whether this <see cref="T:NUnit.Engine.Extensibility.IExtensionNode"/> is enabled.
</summary>
<value><c>true</c> if enabled; otherwise, <c>false</c>.</value>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionNode.Path">
<summary>
Gets the unique string identifying the ExtensionPoint for which
this Extension is intended. This identifier may be supplied by the attribute
marking the extension or deduced by NUnit from the Type of the extension class.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionNode.Description">
<summary>
Gets an optional description of what the extension does.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionNode.TargetFramework">
<summary>
The TargetFramework of the extension assembly.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionNode.PropertyNames">
<summary>
Gets a collection of the names of all this extension's properties
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.IExtensionNode.GetValues(System.String)">
<summary>
Gets a collection of the values of a particular named property
If none are present, returns an empty enumerator.
</summary>
<param name="name">The property name</param>
<returns>A collection of values</returns>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionNode.AssemblyPath">
<summary>
The path to the assembly implementing this extension.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionNode.AssemblyVersion">
<summary>
The version of the assembly implementing this extension.
</summary>
</member>
<member name="T:NUnit.Engine.Extensibility.IExtensionPoint">
<summary>
An ExtensionPoint represents a single point in the TestEngine
that may be extended by user addins and extensions.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionPoint.Path">
<summary>
Gets the unique path identifying this extension point.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionPoint.Description">
<summary>
Gets the description of this extension point. May be null.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionPoint.TypeName">
<summary>
Gets the FullName of the Type required for any extension to be installed at this extension point.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IExtensionPoint.Extensions">
<summary>
Gets an enumeration of IExtensionNodes for extensions installed on this extension point.
</summary>
</member>
<member name="T:NUnit.Engine.Extensibility.IFrameworkDriver">
<summary>
The IFrameworkDriver interface is implemented by a class that
is able to use an external framework to explore or run tests
under the engine.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IFrameworkDriver.ID">
<summary>
Gets and sets the unique identifier for this driver,
used to ensure that test ids are unique across drivers.
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.Load(System.String,System.Collections.Generic.IDictionary{System.String,System.Object})">
<summary>
Loads the tests in an assembly.
</summary>
<returns>An Xml string representing the loaded test</returns>
</member>
<member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.CountTestCases(System.String)">
<summary>
Count the test cases that would be executed.
</summary>
<param name="filter">An XML string representing the TestFilter to use in counting the tests</param>
<returns>The number of test cases counted</returns>
</member>
<member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.Run(NUnit.Engine.ITestEventListener,System.String)">
<summary>
Executes the tests in an assembly.
</summary>
<param name="listener">An ITestEventHandler that receives progress notices</param>
<param name="filter">A XML string representing the filter that controls which tests are executed</param>
<returns>An Xml string representing the result</returns>
</member>
<member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.Explore(System.String)">
<summary>
Returns information about the tests in an assembly.
</summary>
<param name="filter">An XML string representing the filter that controls which tests are included</param>
<returns>An Xml string representing the tests</returns>
</member>
<member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.StopRun(System.Boolean)">
<summary>
Cancel the ongoing test run. If no test is running, the call is ignored.
</summary>
<param name="force">If true, cancel any ongoing test threads, otherwise wait for them to complete.</param>
</member>
<member name="T:NUnit.Engine.Extensibility.IProject">
<summary>
Interface for the various project types that the engine can load.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IProject.ProjectPath">
<summary>
Gets the path to the file storing this project, if any.
If the project has not been saved, this is null.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IProject.ActiveConfigName">
<summary>
Gets the active configuration, as defined
by the particular project.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.IProject.ConfigNames">
<summary>
Gets a list of the configs for this project
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.IProject.GetTestPackage">
<summary>
Gets a test package for the primary or active
configuration within the project. The package
includes all the assemblies and any settings
specified in the project format.
</summary>
<returns>A TestPackage</returns>
</member>
<member name="M:NUnit.Engine.Extensibility.IProject.GetTestPackage(System.String)">
<summary>
Gets a TestPackage for a specific configuration
within the project. The package includes all the
assemblies and any settings specified in the
project format.
</summary>
<param name="configName">The name of the config to use</param>
<returns>A TestPackage for the named configuration.</returns>
</member>
<member name="T:NUnit.Engine.Extensibility.IProjectLoader">
<summary>
The IProjectLoader interface is implemented by any class
that knows how to load projects in a specific format.
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.IProjectLoader.CanLoadFrom(System.String)">
<summary>
Returns true if the file indicated is one that this
loader knows how to load.
</summary>
<param name="path">The path of the project file</param>
<returns>True if the loader knows how to load this file, otherwise false</returns>
</member>
<member name="M:NUnit.Engine.Extensibility.IProjectLoader.LoadFrom(System.String)">
<summary>
Loads a project of a known format.
</summary>
<param name="path">The path of the project file</param>
<returns>An IProject interface to the loaded project or null if the project cannot be loaded</returns>
</member>
<member name="T:NUnit.Engine.Extensibility.IResultWriter">
<summary>
Common interface for objects that process and write out test results
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.IResultWriter.CheckWritability(System.String)">
<summary>
Checks if the output path is writable. If the output is not
writable, this method should throw an exception.
</summary>
<param name="outputPath"></param>
</member>
<member name="M:NUnit.Engine.Extensibility.IResultWriter.WriteResultFile(System.Xml.XmlNode,System.String)">
<summary>
Writes result to the specified output path.
</summary>
<param name="resultNode">XmlNode for the result</param>
<param name="outputPath">Path to which it should be written</param>
</member>
<member name="M:NUnit.Engine.Extensibility.IResultWriter.WriteResultFile(System.Xml.XmlNode,System.IO.TextWriter)">
<summary>
Writes result to a TextWriter.
</summary>
<param name="resultNode">XmlNode for the result</param>
<param name="writer">TextWriter to which it should be written</param>
</member>
<member name="T:NUnit.Engine.Extensibility.TypeExtensionPointAttribute">
<summary>
TypeExtensionPointAttribute is used to bind an extension point
to a class or interface.
</summary>
</member>
<member name="M:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.#ctor(System.String)">
<summary>
Construct a TypeExtensionPointAttribute, specifying the path.
</summary>
<param name="path">A unique string identifying the extension point.</param>
</member>
<member name="M:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.#ctor">
<summary>
Construct an TypeExtensionPointAttribute, without specifying the path.
The extension point will use a path constructed based on the interface
or class to which the attribute is applied.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.Path">
<summary>
The unique string identifying this ExtensionPoint. This identifier
is typically formatted as a path using '/' and the set of extension
points is sometimes viewed as forming a tree.
</summary>
</member>
<member name="P:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.Description">
<summary>
An optional description of the purpose of the ExtensionPoint
</summary>
</member>
<member name="T:NUnit.Engine.IAvailableRuntimes">
<summary>
Interface that returns a list of available runtime frameworks.
</summary>
</member>
<member name="P:NUnit.Engine.IAvailableRuntimes.AvailableRuntimes">
<summary>
Gets a list of available runtime frameworks.
</summary>
</member>
<member name="T:NUnit.Engine.IExtensionService">
<summary>
The IExtensionService interface allows a runner to manage extensions.
</summary>
</member>
<member name="P:NUnit.Engine.IExtensionService.ExtensionPoints">
<summary>
Gets an enumeration of all ExtensionPoints in the engine.
</summary>
</member>
<member name="P:NUnit.Engine.IExtensionService.Extensions">
<summary>
Gets an enumeration of all installed Extensions.
</summary>
</member>
<member name="M:NUnit.Engine.IExtensionService.GetExtensionPoint(System.String)">
<summary>
Get an ExtensionPoint based on its unique identifying path.
</summary>
</member>
<member name="M:NUnit.Engine.IExtensionService.GetExtensionNodes(System.String)">
<summary>
Get an enumeration of ExtensionNodes based on their identifying path.
</summary>
</member>
<member name="M:NUnit.Engine.IExtensionService.EnableExtension(System.String,System.Boolean)">
<summary>
Enable or disable an extension
</summary>
<param name="typeName"></param>
<param name="enabled"></param>
</member>
<member name="T:NUnit.Engine.ILogger">
<summary>
Interface for logging within the engine
</summary>
</member>
<member name="M:NUnit.Engine.ILogger.Error(System.String)">
<summary>
Logs the specified message at the error level.
</summary>
<param name="message">The message.</param>
</member>
<member name="M:NUnit.Engine.ILogger.Error(System.String,System.Object[])">
<summary>
Logs the specified message at the error level.
</summary>
<param name="format">The message.</param>
<param name="args">The arguments.</param>
</member>
<member name="M:NUnit.Engine.ILogger.Warning(System.String)">
<summary>
Logs the specified message at the warning level.
</summary>
<param name="message">The message.</param>
</member>
<member name="M:NUnit.Engine.ILogger.Warning(System.String,System.Object[])">
<summary>
Logs the specified message at the warning level.
</summary>
<param name="format">The message.</param>
<param name="args">The arguments.</param>
</member>
<member name="M:NUnit.Engine.ILogger.Info(System.String)">
<summary>
Logs the specified message at the info level.
</summary>
<param name="message">The message.</param>
</member>
<member name="M:NUnit.Engine.ILogger.Info(System.String,System.Object[])">
<summary>
Logs the specified message at the info level.
</summary>
<param name="format">The message.</param>
<param name="args">The arguments.</param>
</member>
<member name="M:NUnit.Engine.ILogger.Debug(System.String)">
<summary>
Logs the specified message at the debug level.
</summary>
<param name="message">The message.</param>
</member>
<member name="M:NUnit.Engine.ILogger.Debug(System.String,System.Object[])">
<summary>
Logs the specified message at the debug level.
</summary>
<param name="format">The message.</param>
<param name="args">The arguments.</param>
</member>
<member name="T:NUnit.Engine.ILogging">
<summary>
Interface to abstract getting loggers
</summary>
</member>
<member name="M:NUnit.Engine.ILogging.GetLogger(System.String)">
<summary>
Gets the logger.
</summary>
<param name="name">The name of the logger to get.</param>
<returns></returns>
</member>
<member name="T:NUnit.Engine.InternalTraceLevel">
<summary>
InternalTraceLevel is an enumeration controlling the
level of detailed presented in the internal log.
</summary>
</member>
<member name="F:NUnit.Engine.InternalTraceLevel.Default">
<summary>
Use the default settings as specified by the user.
</summary>
</member>
<member name="F:NUnit.Engine.InternalTraceLevel.Off">
<summary>
Do not display any trace messages
</summary>
</member>
<member name="F:NUnit.Engine.InternalTraceLevel.Error">
<summary>
Display Error messages only
</summary>
</member>
<member name="F:NUnit.Engine.InternalTraceLevel.Warning">
<summary>
Display Warning level and higher messages
</summary>
</member>
<member name="F:NUnit.Engine.InternalTraceLevel.Info">
<summary>
Display informational and higher messages
</summary>
</member>
<member name="F:NUnit.Engine.InternalTraceLevel.Debug">
<summary>
Display debug messages and higher - i.e. all messages
</summary>
</member>
<member name="F:NUnit.Engine.InternalTraceLevel.Verbose">
<summary>
Display debug messages and higher - i.e. all messages
</summary>
</member>
<member name="T:NUnit.Engine.IRecentFiles">
<summary>
The IRecentFiles interface is used to isolate the app
from various implementations of recent files.
</summary>
</member>
<member name="P:NUnit.Engine.IRecentFiles.MaxFiles">
<summary>
The max number of files saved
</summary>
</member>
<member name="P:NUnit.Engine.IRecentFiles.Entries">
<summary>
Get a list of all the file entries
</summary>
<returns>The most recent file list</returns>
</member>
<member name="M:NUnit.Engine.IRecentFiles.SetMostRecent(System.String)">
<summary>
Set the most recent file name, reordering
the saved names as needed and removing the oldest
if the max number of files would be exceeded.
The current CLR version is used to create the entry.
</summary>
</member>
<member name="M:NUnit.Engine.IRecentFiles.Remove(System.String)">
<summary>
Remove a file from the list
</summary>
<param name="fileName">The name of the file to remove</param>
</member>
<member name="T:NUnit.Engine.IResultService">
<summary>
IResultWriterService provides result writers for a specified
well-known format.
</summary>
</member>
<member name="P:NUnit.Engine.IResultService.Formats">
<summary>
Gets an array of the available formats
</summary>
</member>
<member name="M:NUnit.Engine.IResultService.GetResultWriter(System.String,System.Object[])">
<summary>
Gets a ResultWriter for a given format and set of arguments.
</summary>
<param name="format">The name of the format to be used</param>
<param name="args">A set of arguments to be used in constructing the writer or null if non arguments are needed</param>
<returns>An IResultWriter</returns>
</member>
<member name="T:NUnit.Engine.IRuntimeFramework">
<summary>
Interface implemented by objects representing a runtime framework.
</summary>
</member>
<member name="P:NUnit.Engine.IRuntimeFramework.Id">
<summary>
Gets the inique Id for this runtime, such as "net-4.5"
</summary>
</member>
<member name="P:NUnit.Engine.IRuntimeFramework.DisplayName">
<summary>
Gets the display name of the framework, such as ".NET 4.5"
</summary>
</member>
<member name="P:NUnit.Engine.IRuntimeFramework.FrameworkVersion">
<summary>
Gets the framework version: usually contains two components, Major
and Minor, which match the corresponding CLR components, but not always.
</summary>
</member>
<member name="P:NUnit.Engine.IRuntimeFramework.ClrVersion">
<summary>
Gets the Version of the CLR for this framework
</summary>
</member>
<member name="P:NUnit.Engine.IRuntimeFramework.Profile">
<summary>
Gets a string representing the particular profile installed,
or null if there is no profile. Currently. the only defined
values are Full and Client.
</summary>
</member>
<member name="T:NUnit.Engine.IRuntimeFrameworkService">
<summary>
Implemented by a type that provides information about the
current and other available runtimes.
</summary>
</member>
<member name="M:NUnit.Engine.IRuntimeFrameworkService.IsAvailable(System.String)">
<summary>
Returns true if the runtime framework represented by
the string passed as an argument is available.
</summary>
<param name="framework">A string representing a framework, like 'net-4.0'</param>
<returns>True if the framework is available, false if unavailable or nonexistent</returns>
</member>
<member name="M:NUnit.Engine.IRuntimeFrameworkService.SelectRuntimeFramework(NUnit.Engine.TestPackage)">
<summary>
Selects a target runtime framework for a TestPackage based on
the settings in the package and the assemblies themselves.
The package RuntimeFramework setting may be updated as a
result and the selected runtime is returned.
Note that if a package has subpackages, the subpackages may run on a different
framework to the top-level package. In future, this method should
probably not return a simple string, and instead require runners
to inspect the test package structure, to find all desired frameworks.
</summary>
<param name="package">A TestPackage</param>
<returns>The selected RuntimeFramework</returns>
</member>
<member name="T:NUnit.Engine.ServiceStatus">
<summary>
Enumeration representing the status of a service
</summary>
</member>
<member name="F:NUnit.Engine.ServiceStatus.Stopped">
<summary>Service was never started or has been stopped</summary>
</member>
<member name="F:NUnit.Engine.ServiceStatus.Started">
<summary>Started successfully</summary>
</member>
<member name="F:NUnit.Engine.ServiceStatus.Error">
<summary>Service failed to start and is unavailable</summary>
</member>
<member name="T:NUnit.Engine.IService">
<summary>
The IService interface is implemented by all Services. Although it
is extensible, it does not reside in the Extensibility namespace
because it is so widely used by the engine.
</summary>
</member>
<member name="P:NUnit.Engine.IService.ServiceContext">
<summary>
The ServiceContext
</summary>
</member>
<member name="P:NUnit.Engine.IService.Status">
<summary>
Gets the ServiceStatus of this service
</summary>
</member>
<member name="M:NUnit.Engine.IService.StartService">
<summary>
Initialize the Service
</summary>
</member>
<member name="M:NUnit.Engine.IService.StopService">
<summary>
Do any cleanup needed before terminating the service
</summary>
</member>
<member name="T:NUnit.Engine.IServiceLocator">
<summary>
IServiceLocator allows clients to locate any NUnit services
for which the interface is referenced. In normal use, this
linits it to those services using interfaces defined in the
nunit.engine.api assembly.
</summary>
</member>
<member name="M:NUnit.Engine.IServiceLocator.GetService``1">
<summary>
Return a specified type of service
</summary>
</member>
<member name="M:NUnit.Engine.IServiceLocator.GetService(System.Type)">
<summary>
Return a specified type of service
</summary>
</member>
<member name="T:NUnit.Engine.SettingsEventHandler">
<summary>
Event handler for settings changes
</summary>
<param name="sender">The sender.</param>
<param name="args">The <see cref="T:NUnit.Engine.SettingsEventArgs"/> instance containing the event data.</param>
</member>
<member name="T:NUnit.Engine.SettingsEventArgs">
<summary>
Event argument for settings changes
</summary>
</member>
<member name="M:NUnit.Engine.SettingsEventArgs.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:NUnit.Engine.SettingsEventArgs"/> class.
</summary>
<param name="settingName">Name of the setting that has changed.</param>
</member>
<member name="P:NUnit.Engine.SettingsEventArgs.SettingName">
<summary>
Gets the name of the setting that has changed
</summary>
</member>
<member name="T:NUnit.Engine.ISettings">
<summary>
The ISettings interface is used to access all user
settings and options.
</summary>
</member>
<member name="E:NUnit.Engine.ISettings.Changed">
<summary>
Occurs when the settings are changed.
</summary>
</member>
<member name="M:NUnit.Engine.ISettings.GetSetting(System.String)">
<summary>
Load a setting from the storage.
</summary>
<param name="settingName">Name of the setting to load</param>
<returns>Value of the setting or null</returns>
</member>
<member name="M:NUnit.Engine.ISettings.GetSetting``1(System.String,``0)">
<summary>
Load a setting from the storage or return a default value
</summary>
<param name="settingName">Name of the setting to load</param>
<param name="defaultValue">Value to return if the setting is missing</param>
<returns>Value of the setting or the default value</returns>
</member>
<member name="M:NUnit.Engine.ISettings.RemoveSetting(System.String)">
<summary>
Remove a setting from the storage
</summary>
<param name="settingName">Name of the setting to remove</param>
</member>
<member name="M:NUnit.Engine.ISettings.RemoveGroup(System.String)">
<summary>
Remove an entire group of settings from the storage
</summary>
<param name="groupName">Name of the group to remove</param>
</member>
<member name="M:NUnit.Engine.ISettings.SaveSetting(System.String,System.Object)">
<summary>
Save a setting in the storage
</summary>
<param name="settingName">Name of the setting to save</param>
<param name="settingValue">Value to be saved</param>
</member>
<member name="T:NUnit.Engine.ITestEngine">
<summary>
ITestEngine represents an instance of the test engine.
Clients wanting to discover, explore or run tests start
require an instance of the engine, which is generally
acquired from the TestEngineActivator class.
</summary>
</member>
<member name="P:NUnit.Engine.ITestEngine.Services">
<summary>
Gets the IServiceLocator interface, which gives access to
certain services provided by the engine.
</summary>
</member>
<member name="P:NUnit.Engine.ITestEngine.WorkDirectory">
<summary>
Gets and sets the directory path used by the engine for saving files.
Some services may ignore changes to this path made after initialization.
The default value is the current directory.
</summary>
</member>
<member name="P:NUnit.Engine.ITestEngine.InternalTraceLevel">
<summary>
Gets and sets the InternalTraceLevel used by the engine. Changing this
setting after initialization will have no effect. The default value
is the value saved in the NUnit settings.
</summary>
</member>
<member name="M:NUnit.Engine.ITestEngine.Initialize">
<summary>
Initialize the engine. This includes initializing mono addins,
setting the trace level and creating the standard set of services
used in the Engine.
This interface is not normally called by user code. Programs linking
only to the nunit.engine.api assembly are given a
pre-initialized instance of TestEngine. Programs
that link directly to nunit.engine usually do so
in order to perform custom initialization.
</summary>
</member>
<member name="M:NUnit.Engine.ITestEngine.GetRunner(NUnit.Engine.TestPackage)">
<summary>
Returns a test runner instance for use by clients in discovering,
exploring and executing tests.
</summary>
<param name="package">The TestPackage for which the runner is intended.</param>
<returns>An ITestRunner.</returns>
</member>
<member name="T:NUnit.Engine.ITestEventListener">
<summary>
The ITestListener interface is used to receive notices of significant
events while a test is running. Its single method accepts an Xml string,
which may represent any event generated by the test framework, the driver
or any of the runners internal to the engine. Use of Xml means that
any driver and framework may add additional events and the engine will
simply pass them on through this interface.
</summary>
</member>
<member name="M:NUnit.Engine.ITestEventListener.OnTestEvent(System.String)">
<summary>
Handle a progress report or other event.
</summary>
<param name="report">An XML progress report.</param>
</member>
<member name="T:NUnit.Engine.ITestFilterBuilder">
<summary>
Interface to a TestFilterBuilder, which is used to create TestFilters
</summary>
</member>
<member name="M:NUnit.Engine.ITestFilterBuilder.AddTest(System.String)">
<summary>
Add a test to be selected
</summary>
<param name="fullName">The full name of the test, as created by NUnit</param>
</member>
<member name="M:NUnit.Engine.ITestFilterBuilder.SelectWhere(System.String)">
<summary>
Specify what is to be included by the filter using a where clause.
</summary>
<param name="whereClause">A where clause that will be parsed by NUnit to create the filter.</param>
</member>
<member name="M:NUnit.Engine.ITestFilterBuilder.GetFilter">
<summary>
Get a TestFilter constructed according to the criteria specified by the other calls.
</summary>
<returns>A TestFilter.</returns>
</member>
<member name="T:NUnit.Engine.ITestFilterService">
<summary>
The TestFilterService provides builders that can create TestFilters
</summary>
</member>
<member name="M:NUnit.Engine.ITestFilterService.GetTestFilterBuilder">
<summary>
Get an uninitialized TestFilterBuilder
</summary>
</member>
<member name="T:NUnit.Engine.ITestRun">
<summary>
The ITestRun class represents an ongoing test run.
</summary>
</member>
<member name="P:NUnit.Engine.ITestRun.Result">
<summary>
Get the result of the test.
</summary>
<returns>An XmlNode representing the test run result</returns>
</member>
<member name="M:NUnit.Engine.ITestRun.Wait(System.Int32)">
<summary>
Blocks the current thread until the current test run completes
or the timeout is reached
</summary>
<param name="timeout">A <see cref="T:System.Int32"/> that represents the number of milliseconds to wait or -1 milliseconds to wait indefinitely. </param>
<returns>True if the run completed</returns>
</member>
<member name="T:NUnit.Engine.ITestRunner">
<summary>
Interface implemented by all test runners.
</summary>
</member>
<member name="P:NUnit.Engine.ITestRunner.IsTestRunning">
<summary>
Get a flag indicating whether a test is running
</summary>
</member>
<member name="M:NUnit.Engine.ITestRunner.Load">
<summary>
Load a TestPackage for possible execution
</summary>
<returns>An XmlNode representing the loaded package.</returns>
<remarks>
This method is normally optional, since Explore and Run call
it automatically when necessary. The method is kept in order
to make it easier to convert older programs that use it.
</remarks>
</member>
<member name="M:NUnit.Engine.ITestRunner.Unload">
<summary>
Unload any loaded TestPackage. If none is loaded,
the call is ignored.
</summary>
</member>
<member name="M:NUnit.Engine.ITestRunner.Reload">
<summary>
Reload the current TestPackage
</summary>
<returns>An XmlNode representing the loaded package.</returns>
</member>
<member name="M:NUnit.Engine.ITestRunner.CountTestCases(NUnit.Engine.TestFilter)">
<summary>
Count the test cases that would be run under
the specified filter.
</summary>
<param name="filter">A TestFilter</param>
<returns>The count of test cases</returns>
</member>
<member name="M:NUnit.Engine.ITestRunner.Run(NUnit.Engine.ITestEventListener,NUnit.Engine.TestFilter)">
<summary>
Run the tests in the loaded TestPackage and return a test result. The tests
are run synchronously and the listener interface is notified as it progresses.
</summary>
<param name="listener">The listener that is notified as the run progresses</param>
<param name="filter">A TestFilter used to select tests</param>
<returns>An XmlNode giving the result of the test execution</returns>
</member>
<member name="M:NUnit.Engine.ITestRunner.RunAsync(NUnit.Engine.ITestEventListener,NUnit.Engine.TestFilter)">
<summary>
Start a run of the tests in the loaded TestPackage. The tests are run
asynchronously and the listener interface is notified as it progresses.
</summary>
<param name="listener">The listener that is notified as the run progresses</param>
<param name="filter">A TestFilter used to select tests</param>
<returns></returns>
</member>
<member name="M:NUnit.Engine.ITestRunner.StopRun(System.Boolean)">
<summary>
Cancel the ongoing test run. If no test is running, the call is ignored.
</summary>
<param name="force">If true, cancel any ongoing test threads, otherwise wait for them to complete.</param>
</member>
<member name="M:NUnit.Engine.ITestRunner.Explore(NUnit.Engine.TestFilter)">
<summary>
Explore a loaded TestPackage and return information about the tests found.
</summary>
<param name="filter">The TestFilter to be used in selecting tests to explore.</param>
<returns>An XmlNode representing the tests found.</returns>
</member>
<member name="T:NUnit.Engine.TestEngineActivator">
<summary>
TestEngineActivator creates an instance of the test engine and returns an ITestEngine interface.
</summary>
</member>
<member name="M:NUnit.Engine.TestEngineActivator.CreateInstance(System.Boolean)">
<summary>
Create an instance of the test engine.
</summary>
<param name="unused">This parameter is no longer used but has not been removed to ensure API compatibility.</param>
<exception cref="T:NUnit.Engine.NUnitEngineNotFoundException">Thrown when a test engine of the required minimum version is not found</exception>
<returns>An <see cref="T:NUnit.Engine.ITestEngine"/></returns>
</member>
<member name="M:NUnit.Engine.TestEngineActivator.CreateInstance(System.Version,System.Boolean)">
<summary>
Create an instance of the test engine with a minimum version.
</summary>
<param name="minVersion">The minimum version of the engine to return inclusive.</param>
<param name="unused">This parameter is no longer used but has not been removed to ensure API compatibility.</param>
<exception cref="T:NUnit.Engine.NUnitEngineNotFoundException">Thrown when a test engine of the required minimum version is not found</exception>
<returns>An <see cref="T:NUnit.Engine.ITestEngine"/></returns>
</member>
<member name="T:NUnit.Engine.TestFilter">
<summary>
Abstract base for all test filters. A filter is represented
by an XmlNode with <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:NUnit.Engine.TestFilter.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:NUnit.Engine.TestFilter"/> class.
</summary>
<param name="xmlText">The XML text that specifies the filter.</param>
</member>
<member name="F:NUnit.Engine.TestFilter.Empty">
<summary>
The empty filter - one that always passes.
</summary>
</member>
<member name="P:NUnit.Engine.TestFilter.Text">
<summary>
Gets the XML representation of this filter as a string.
</summary>
</member>
<member name="T:NUnit.Engine.TestPackage">
<summary>
TestPackage holds information about a set of test files to
be loaded by a TestRunner. Each TestPackage represents
tests for one or more test files. TestPackages may be named
or anonymous, depending on the constructor used.
Upon construction, a package is given an ID (string), which
remains unchanged for the lifetime of the TestPackage instance.
The package ID is passed to the test framework for use in generating
test IDs.
A runner that reloads test assemblies and wants the ids to remain stable
should avoid creating a new package but should instead use the original
package, changing settings as needed. This gives the best chance for the
tests in the reloaded assembly to match those originally loaded.
</summary>
</member>
<member name="M:NUnit.Engine.TestPackage.#ctor(System.String)">
<summary>
Construct a named TestPackage, specifying a file path for
the assembly or project to be used.
</summary>
<param name="filePath">The file path.</param>
</member>
<member name="M:NUnit.Engine.TestPackage.#ctor(System.Collections.Generic.IList{System.String})">
<summary>
Construct an anonymous TestPackage that wraps test files.
</summary>
<param name="testFiles"></param>
</member>
<member name="P:NUnit.Engine.TestPackage.ID">
<summary>
Every test package gets a unique ID used to prefix test IDs within that package.
</summary>
<remarks>
The generated ID is only unique for packages created within the same application domain.
For that reason, NUnit pre-creates all test packages that will be needed.
</remarks>
</member>
<member name="P:NUnit.Engine.TestPackage.Name">
<summary>
Gets the name of the package
</summary>
</member>
<member name="P:NUnit.Engine.TestPackage.FullName">
<summary>
Gets the path to the file containing tests. It may be
an assembly or a recognized project type.
</summary>
</member>
<member name="P:NUnit.Engine.TestPackage.SubPackages">
<summary>
Gets the list of SubPackages contained in this package
</summary>
</member>
<member name="P:NUnit.Engine.TestPackage.Settings">
<summary>
Gets the settings dictionary for this package.
</summary>
</member>
<member name="M:NUnit.Engine.TestPackage.AddSubPackage(NUnit.Engine.TestPackage)">
<summary>
Add a subproject to the package.
</summary>
<param name="subPackage">The subpackage to be added</param>
</member>
<member name="M:NUnit.Engine.TestPackage.AddSetting(System.String,System.Object)">
<summary>
Add a setting to a package and all of its subpackages.
</summary>
<param name="name">The name of the setting</param>
<param name="value">The value of the setting</param>
<remarks>
Once a package is created, subpackages may have been created
as well. If you add a setting directly to the Settings dictionary
of the package, the subpackages are not updated. This method is
used when the settings are intended to be reflected to all the
subpackages under the package.
</remarks>
</member>
<member name="M:NUnit.Engine.TestPackage.GetSetting``1(System.String,``0)">
<summary>
Return the value of a setting or a default.
</summary>
<param name="name">The name of the setting</param>
<param name="defaultSetting">The default value</param>
<returns></returns>
</member>
<member name="T:NUnit.Engine.TestSelectionParserException">
<summary>
TestSelectionParserException is thrown when an error
is found while parsing the selection expression.
</summary>
</member>
<member name="M:NUnit.Engine.TestSelectionParserException.#ctor(System.String)">
<summary>
Construct with a message
</summary>
</member>
<member name="M:NUnit.Engine.TestSelectionParserException.#ctor(System.String,System.Exception)">
<summary>
Construct with a message and inner exception
</summary>
<param name="message"></param>
<param name="innerException"></param>
</member>
<member name="M:NUnit.Engine.TestSelectionParserException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serialization constructor
</summary>
</member>
</members>
</doc>
md5: C2E3F991E99326B2D489EAE9B82D72C4 | sha1: 310FE818A1773E74188E20BC4652A8D3E4227FA5 | sha256: A938B0701C87DADC7A09E8FF7303C4F99D70D90A8FB27E77CB96B55EAD68442F | sha512: D7C1FBBDD348323AC4E920A7F61B7A6900A1DB8C087B600433502ED08E598DE17F392C2A0C6D7ED03643085354A2C3BFF134CFC4F5E6935497BD8BF3553B2507
md5: CE0ED6C8493BBF1CA03E5905F2049D5A | sha1: 34810DD265C6076121255007E07B4171A69D37D7 | sha256: FA3FFD184272492235E98609F45C34FADC940D6977F5F1AA7A48228F8652A5E8 | sha512: 3E9D911F5810611BB8D7FAC110C23056FD7DE30CAAA78B72439CFD05A9C22D329A208C570782BFE7F5ED2A321D67064BAAB7E32B37C1E659FD743E9BB1B438A9
md5: 10C2C13A8957B2FD41B0EE3E97D64613 | sha1: C121C6CA0DB80C49D123984B976DBAFB78DB1EDD | sha256: CFCCB98A456C6D00D4DA5EBE798A0E948FA1F3753AE134BA6B6E3C84BF4E3846 | sha512: 7E9C1305A1493486CA2DF5DAD0CC3461D438C025F9185AFF14B832AE88C933DECFFFF5BDA11E0236703077C3328925BB0A6B018B6453E0E6A5569C6839C1E7A9
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<!--
The console runner runs under .NET 2.0 or higher.
The setting useLegacyV2RuntimeActivationPolicy only applies
under .NET 4.0 and permits use of mixed mode assemblies,
which would otherwise not load correctly.
-->
<startup useLegacyV2RuntimeActivationPolicy="true">
<supportedRuntime version="v4.0.30319" />
<supportedRuntime version="v2.0.50727" />
</startup>
<runtime>
<!-- Ensure that test exceptions don't crash NUnit -->
<legacyUnhandledExceptionPolicy enabled="1" />
<!--
Since legacyUnhandledExceptionPolicy keeps the console from being killed even though an NUnit framework
test worker thread is killed, this is needed to prevent a hang. NUnit framework can only handle these
exceptions when this config element is present. (Or if future versions of NUnit framework drop support
for partial trust which would enable it to use [HandleProcessCorruptedStateExceptions].)
-->
<legacyCorruptedStateExceptionsPolicy enabled="true" />
<!-- Run partial trust V2 assemblies in full trust under .NET 4.0 -->
<loadFromRemoteSources enabled="true" />
<!-- Enable reading source information from Portable and Embedded PDBs when running applications -->
<!-- built against previous .NET Framework versions on .NET Framework 4.7.2 -->
<AppContextSwitchOverrides value="Switch.System.Diagnostics.IgnorePortablePDBsInStackTraces=false" />
</runtime>
</configuration>
md5: 28FCEF2FE7F3D3430A5BEEB5A0E998A9 | sha1: 228D3569AA37BC5A60A50404E3D7371A870AC453 | sha256: 9B6975C9821F1BD152DE573516847CF0D7BFDE33A7DAE52553E8149A0CD490E4 | sha512: F1CB9E669C07187FD0AC0CE9556A05106164258633B610A0B76F57E7F2A98EC9A5BDB7DD0188714E3D5FA647AB7B7368BA1F1665D00994CA431F552DEB1956CE
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
This package is published by the NUnit Project itself. Any binaries will be
identical to other package types published by the project, in particular
the NUnit.ConsoleRunner and NUnit.Console NuGet packages.
Log in or click on link to see number of positives.
- testcentric.engine.metadata.dll (9b6975c9821f) - ## / 50
- testcentric.engine.metadata.dll (b08bf44fd327) - ## / 66
- testcentric.engine.metadata.dll (69e4533ee53b) - ## / 69
- nunit-console-runner.3.15.2.nupkg (4b11f9150a92) - ## / 62
- nunit.engine.api.dll (f1bc0bf5677d) - ## / 66
- nunit.engine.core.dll (a938b0701c87) - ## / 66
- nunit.engine.dll (fa3ffd184272) - ## / 66
- nunit3-console.exe (cfccb98a456c) - ## / 67
- nunit-agent-x86.exe (6328e4652d0c) - ## / 67
- nunit-agent.exe (97ed25e86838) - ## / 67
- nunit-agent-x86.exe (dfdf1c79ce13) - ## / 67
- nunit-agent.exe (b5fd2a87cc43) - ## / 67
- nunit-agent.dll (8b8870b45b1e) - ## / 67
- nunit.engine.api.dll (07749b711c10) - ## / 66
- nunit.engine.core.dll (b109be744dd2) - ## / 66
- nunit-agent.dll (dc83c51a01a7) - ## / 67
- nunit.engine.core.dll (492c246e536b) - ## / 66
- nunit-agent.dll (8e50aba4aaf8) - ## / 67
- nunit.engine.core.dll (b11f85914d55) - ## / 66
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
NUnit 3 Console Runner 3.15.2 | 4093 | Wednesday, June 29, 2022 | Approved | |
NUnit 3 Console Runner 3.15.1 | 67 | Wednesday, June 29, 2022 | Approved | |
NUnit 3 Console Runner 3.15.0 | 13659 | Thursday, February 10, 2022 | Approved | |
NUnit 3 Console Runner 3.15.0-beta1 | 37 | Monday, February 7, 2022 | Approved | |
NUnit 3 Console Runner 3.14.0 | 3745 | Saturday, January 15, 2022 | Approved | |
NUnit 3 Console Runner 3.13.2 | 1391 | Thursday, January 6, 2022 | Approved | |
NUnit 3 Console Runner 3.13.1 | 223 | Tuesday, January 4, 2022 | Approved | |
NUnit 3 Console Runner 3.13.0 | 3168 | Wednesday, December 1, 2021 | Approved | |
NUnit 3 Console Runner 3.12.0 | 30287 | Sunday, January 17, 2021 | Approved | |
NUnit 3 Console Runner 3.12.0-beta1 | 514 | Saturday, August 1, 2020 | Approved | |
NUnit 3 Console Runner 3.11.1 | 22706 | Monday, February 17, 2020 | Approved | |
NUnit 3 Console Runner 3.10.0 | 36342 | Sunday, March 24, 2019 | Approved | |
NUnit 3 Console Runner 3.9.0 | 11232 | Thursday, September 6, 2018 | Approved | |
NUnit 3 Console Runner 3.8.0 | 21741 | Tuesday, January 30, 2018 | Approved | |
NUnit 3 Console Runner 3.7.0 | 1879 | Friday, July 14, 2017 | Approved | |
NUnit 3 Console Runner 3.6.1 | 3623 | Friday, July 7, 2017 | Approved |
Copyright (c) 2021 Charlie Poole, Rob Prouse
This package has no dependencies.
Ground Rules:
- This discussion is only about NUnit 3 Console Runner and the NUnit 3 Console Runner package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or NUnit 3 Console Runner, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.