Downloads:
9,836
Downloads of v 2.0.0-beta1:
146
Last Update:
09 May 2023
Package Maintainer(s):
Software Author(s):
- Charlie Poole
Tags:
testcentric nunit gui runner test centric testing tddTestCentric Runner for NUnit
This is a prerelease version of TestCentric Runner for NUnit.
- 1
- 2
- 3
2.0.0-beta1 | Updated: 09 May 2023
Downloads:
9,836
Downloads of v 2.0.0-beta1:
146
Maintainer(s):
Software Author(s):
- Charlie Poole
TestCentric Runner for NUnit 2.0.0-beta1
This is a prerelease version of TestCentric Runner for NUnit.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Charlie Poole. The inclusion of Charlie Poole trademark(s), if any, upon this webpage is solely to identify Charlie Poole goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
Deployment Method: Individual Install, Upgrade, & Uninstall
To install TestCentric Runner for NUnit, run the following command from the command line or from PowerShell:
To upgrade TestCentric Runner for NUnit, run the following command from the command line or from PowerShell:
To uninstall TestCentric Runner for NUnit, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download testcentric-gui --internalize --version=2.0.0-beta1 --pre --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade testcentric-gui -y --source="'INTERNAL REPO URL'" --version="'2.0.0-beta1'" --prerelease [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade testcentric-gui -y --source="'INTERNAL REPO URL'" --version="'2.0.0-beta1'" --prerelease
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install testcentric-gui
win_chocolatey:
name: testcentric-gui
version: '2.0.0-beta1'
source: INTERNAL REPO URL
state: present
allow_prerelease: yes
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'testcentric-gui' do
action :install
source 'INTERNAL REPO URL'
version '2.0.0-beta1'
options '--prerelease'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller testcentric-gui
{
Name = "testcentric-gui"
Version = "2.0.0-beta1"
Source = "INTERNAL REPO URL"
chocoParams = "--prerelease"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'testcentric-gui':
ensure => '2.0.0-beta1',
install_options => ['--prerelease'],
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 is exempt from moderation. While it is likely safe for you, there is more risk involved.
The TestCentric Runner for NUnit (TestCentric) is a GUI runner aimed at eventually supporting a range of .NET testing frameworks. In the 1.x release series, we are concentrating on support of NUnit tests. The user interface is based on the layout and feature set of the of the original NUnit GUI, with the internals modified so as to run NUnit 3 tests.
This package includes the both the standard TestCentric GUI runner (testcentric.exe
) and an experiental runner (tc-next.exe
) which is available for... wait for it... experimentation! The package incorporates the TestCentric test engine, a modified version of the NUnit engine.
Features
Most features of the NUnit V2 Gui runner are supported. See CHANGES.txt for more detailed information.
NUnit engine extensions are supported but no extensions are bundled with the GUI itself. They must be installed separately using chocolatey. In particular, to run NUnit V2 tests, you should install the NUnit V2 Framework Driver Extension.
Warning: When using the GUI chocolatey package, only chocolatey-packaged extensions will be availble. This is by design.
Prerequisites
TestCentric requires .NET 4.5 or later in order to function, although your tests may run in a separate process under other framework versions.
Projects with tests to be run under TestCentric must already have some version of the NUnit framework installed separtely.
cCopyright (c) 2018-2019 Charlie Poole
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
The TestCentric GUI Runner 1.0 is based in part on the NUnit 2.x GUI Runner,
with portions of the code...
Copyright (c) 2002-2014 Charlie Poole or
Copyright (c) 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov or
Copyright (c) 2000-2002 Philip A. Craig
The TestCentric GUI Runner uses the NUnit 3 Test Engine to run tests...
Copyright (c) 2017-2019 Charlie Poole, Rob Prouse
For the latest list of changes to the TestCentric Runner, please see the
release notes at https://test-centric.org/testcentric-gui/release-notes.html
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
This package is published by the author of the software, Charlie Poole.
Any binaries will be identical to other package types published by the
author at https://github.com/TestCentric/testcentric-gui.
md5: 4B02C350CBDC55D88CCF048453402D98 | sha1: D7508A33EA2D6CC91822491377C59A8A8A77C841 | sha256: DC194C033550444FAB07B346956F9C4084FB29A8D469598002FAC700208DC06D | sha512: 01CE76EFBF4AA1366943E7814F7F3F5E50B6D9568AA3AED785241E9977257F3532A166A9B05E3A2CF291EF64F2850D38E5E99249D1D3FC1906B15EF06CA254F4
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<!--
The GUI only runs under .NET 2.0 or higher. The
useLegacyV2RuntimeActivationPolicy setting only
applies under .NET 4.0 and permits use of mixed
mode assemblies, which would otherwise not load
correctly.
-->
<startup useLegacyV2RuntimeActivationPolicy="true">
<!-- Comment out the next line to force use of .NET 4.0 -->
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
<runtime>
<!-- Ensure that test exceptions don't crash NUnit -->
<legacyUnhandledExceptionPolicy enabled="1" />
<!-- Run partial trust V2 assemblies in full trust under .NET 4.0 -->
<loadFromRemoteSources enabled="true" />
<!-- Look for addins in the addins directory for now -->
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<probing privatePath="lib;addins" />
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Runtime.InteropServices.RuntimeInformation" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.2.0" newVersion="4.0.2.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Collections.Concurrent" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Collections" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.ComponentModel" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.ComponentModel.EventBasedAsync" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Data.Common" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Diagnostics.Contracts" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Diagnostics.Debug" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Diagnostics.StackTrace" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Diagnostics.Tools" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Diagnostics.Tracing" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Dynamic.Runtime" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Globalization" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Globalization.Extensions" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.IO.Compression" publicKeyToken="b77a5c561934e089" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.IO" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.2.0" newVersion="4.1.2.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Linq" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.2.0" newVersion="4.1.2.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Linq.Expressions" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.2.0" newVersion="4.1.2.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Linq.Parallel" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Linq.Queryable" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Net.Http" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Net.NetworkInformation" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.2.0" newVersion="4.1.2.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Net.Primitives" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Net.Requests" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Net.Sockets" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.ObjectModel" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Reflection" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.2.0" newVersion="4.1.2.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Reflection.Extensions" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Reflection.Primitives" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Resources.ResourceManager" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Runtime" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.2.0" newVersion="4.1.2.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Runtime.Extensions" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.2.0" newVersion="4.1.2.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Runtime.InteropServices" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.2.0" newVersion="4.1.2.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Runtime.Numerics" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Runtime.Serialization.Json" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Runtime.Serialization.Primitives" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Runtime.Serialization.Xml" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.3.0" newVersion="4.1.3.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Security.Cryptography.Algorithms" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.3.0.0" newVersion="4.3.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Security.Principal" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Security.SecureString" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Text.Encoding" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Text.Encoding.Extensions" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Text.RegularExpressions" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.1.0" newVersion="4.1.1.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Threading" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Threading.Overlapped" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Threading.Tasks" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Threading.Tasks.Parallel" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Threading.Timer" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.ValueTuple" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.2.0" newVersion="4.0.2.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Xml.ReaderWriter" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.1.0" newVersion="4.1.1.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Xml.XDocument" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Xml.XmlSerializer" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Xml.XPath.XDocument" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
md5: 6F9FC98D0533D13ACA7B928E5EDF4E8B | sha1: 2BB0E86A42F5E3D247B43EF8AA2505E7BD7053B4 | sha256: E78132E03C3889444A61B13958DCE577839BC930B4734918617258E4145E8020 | sha512: 31D1C64B74151F60AE77E835C2DE08386EE0F9156ABD1F3D40A6983F84683AB61CCAD95CC6C7064FC21AB4361E1999EB77F801757741E6824178D876F57AA71A
md5: 96F2E6C90DE3A0D05570283A72D2E143 | sha1: 406D9F87EB4238B2EFBCCAE14C767860A9A6D251 | sha256: 6F7C2AFF9CBEBBA5D17FC1250EE93F149343DC234F3C181A87E2C9791A33CF0F | sha512: DA3EB70E003F189BB8BCA1CDB8645A26140E7F5E2E6FAA1F2FC0FC8C3F3E32C0EDBDB569DDDB36BE371F747C4FE2CD9438706A4E8F91B41F5B8CEE81B5A9F335
md5: 282AA9F941FC39A7D4A4AEF5810C1A06 | sha1: 48651E750EF7E15B9527F7531A9A739FDA8C2EA1 | sha256: 31B9A93AE5EFA0B7D31388B6DCCBAEEEABBBDB689BD56426A2352DA54696753E | sha512: B16D7CDCCF70BDBE2F32F38CA76FF753860BB436A40183AA06E075201B2F44C549EED659A2DB49B22A53B3951643FD5FC566765323E383F5859BAF6A35199EB7
md5: 06A46EDD18D055C2BFF509B273FDB256 | sha1: 37ECD1CE01A757C1870A1C98B316002A1F14DCB0 | sha256: BA3C92F7AA62A0B5FE7C0EDEAC4635AF45179BDACC6BC018ED8E700F72359D53 | sha512: CFA4DF99859E13B4F68E8ACA1810D9243DF5F3EC57415252CE0F3CF1544D055599B2600F70172C76B6AA03F4AED552146FEC1C38746372E5748A3D065D99CA2A
md5: D2A97DE77FEA67D5FEF264D3D3AAF3D3 | sha1: 0A00383383CF1F059F859E00A5D62C3C3F2CF800 | sha256: DBE9374BC3E7AAC754ED57CCDF30AF3F82B524A7B520B63BC0BA0FC4349B9C39 | sha512: 861CCCE4CD338B09C6187165EA604ED68A27BD0A3266E9FD58D073B21E80485762F63A266B8BB65E644401A803B210D23A1495860D70F5DE7D7DE897AB708A91
md5: B1D58B5FDD3D731F64672A272A3711F2 | sha1: 380EF2E9EC7F619FC66F543DD11DDDFD5A04F3C5 | sha256: 0B1115A8CCC84565906484D017E8FD5333B49EEFECA64609D74B38C403107DA1 | sha512: 95E0E9FC5EFE80A890075CE6EF1B6A633649D12DC4279DC0661BAA608BDAC634FE2BDF97EEA4C73CAC1E5785AA095CF5DA24F6C222BF607F547D1D4B7DA9338E
md5: B7FD8AA280CC8506B16E9CFE8BCCB0EB | sha1: CC508AA268C0F2018E146C5DF41D17E6A5781268 | sha256: B5A75856E17DA006AF81969FECE9D587B293230C4C5169EF97DC4DE1DD197173 | sha512: 03DC105D152909228A06F8EE81856A049ACA588843EB4425C5155EDD4DA8A23969878D4B518ED6D337054331E46C6F0CC5C31F4D84CE8FEAD3BFB20F5FCB5F24
md5: 241300B295FF207CBDAA9D507970B76C | sha1: 9C395353D025E8F3FB23C4663691950B55984BE4 | sha256: 9C7A314C1F142B22AC254234A70A288A03E764347DC7BBA0B720B816FBB47A96 | sha512: 153313B99DF6E86D32A389187397367E194273FCD273ADCF4C6B4144EC0A0D7249E6EF373388E64FD7D9FF318B19FDE93897228BF9C862C36E870E26BF3F7B56
Log in or click on link to see number of positives.
- Mono.Options.dll (02f97bd6698c) - ## / 72
- nunit.engine.api.dll (ba3c92f7aa62) - ## / 70
- testcentric.engine.metadata.dll (8a1098f54f72) - ## / 75
- testcentric-gui.2.0.0-beta1.nupkg (ad73465a2287) - ## / 64
- nunit.uiexception.dll (6f7c2aff9cbe) - ## / 69
- testcentric.engine.api.dll (dbe9374bc3e7) - ## / 69
- testcentric.engine.core.dll (b5a75856e17d) - ## / 68
- testcentric.engine.dll (9c7a314c1f14) - ## / 59
- testcentric.exe (dc194c033550) - ## / 70
- testcentric.extensibility.dll (0b1115a8ccc8) - ## / 69
- TestCentric.Gui.Model.dll (31b9a93ae5ef) - ## / 69
- TestCentric.Gui.Runner.dll (e78132e03c38) - ## / 65
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
testcentric-gui 2.0.0-beta6 | 39 | Wednesday, October 16, 2024 | Approved | |
testcentric-gui 2.0.0-beta5 | 125 | Thursday, May 16, 2024 | Approved | |
testcentric-gui 2.0.0-beta4 | 555 | Thursday, November 23, 2023 | Approved | |
testcentric-gui 2.0.0-beta3-1 | 72 | Wednesday, October 25, 2023 | Approved | |
testcentric-gui 2.0.0-beta3 | 27 | Sunday, October 22, 2023 | Exempted | |
testcentric-gui 2.0.0-beta2 | 71 | Monday, September 4, 2023 | Approved | |
TestCentric Runner for NUnit 2.0.0-beta1 | 146 | Tuesday, May 9, 2023 | Exempted | |
TestCentric Runner for NUnit 2.0.0-alpha8 | 110 | Tuesday, April 25, 2023 | Approved | |
TestCentric Runner for NUnit 2.0.0-alpha7 | 64 | Monday, February 6, 2023 | Approved | |
TestCentric Runner for NUnit 2.0.0-alpha6 | 101 | Saturday, June 18, 2022 | Approved | |
TestCentric Runner for NUnit 2.0.0-alpha5 | 90 | Saturday, May 14, 2022 | Approved | |
TestCentric Runner for NUnit 2.0.0-alpha4 | 191 | Sunday, October 3, 2021 | Approved | |
TestCentric Runner for NUnit 2.0.0-alpha3 | 83 | Thursday, September 30, 2021 | Approved | |
TestCentric Runner for NUnit 2.0.0-alpha2 | 229 | Sunday, August 15, 2021 | Approved | |
TestCentric Runner for NUnit 2.0.0-alpha1 | 125 | Thursday, July 1, 2021 | Approved | |
testcentric-gui 1.7.0 | 92 | Saturday, September 28, 2024 | Approved | |
TestCentric Runner for NUnit 1.6.4 | 1057 | Friday, December 2, 2022 | Approved | |
TestCentric Runner for NUnit 1.6.3 | 182 | Monday, August 1, 2022 | Approved | |
TestCentric Runner for NUnit 1.6.2 | 628 | Thursday, March 25, 2021 | Approved | |
TestCentric Runner for NUnit 1.6.1 | 230 | Sunday, January 17, 2021 | Approved | |
TestCentric Runner for NUnit 1.6.0 | 159 | Monday, January 11, 2021 | Approved | |
TestCentric Runner for NUnit 1.5.3 | 155 | Thursday, December 24, 2020 | Approved | |
TestCentric Runner for NUnit 1.5.2 | 169 | Thursday, December 17, 2020 | Approved | |
TestCentric Runner for NUnit 1.5.1 | 148 | Tuesday, December 15, 2020 | Approved | |
TestCentric Runner for NUnit 1.5.0 | 140 | Wednesday, December 9, 2020 | Approved | |
TestCentric Runner for NUnit 1.4.1 | 288 | Friday, September 4, 2020 | Approved | |
TestCentric Runner for NUnit 1.4.0 | 472 | Friday, May 1, 2020 | Approved | |
TestCentric Runner for NUnit 1.3.3 | 205 | Saturday, April 18, 2020 | Approved | |
TestCentric Runner for NUnit 1.3.3-rc1 | 156 | Friday, April 17, 2020 | Approved | |
TestCentric Runner for NUnit 1.3.2 | 237 | Tuesday, April 7, 2020 | Approved | |
TestCentric Runner for NUnit 1.3.1 | 265 | Saturday, March 7, 2020 | Approved | |
TestCentric Runner for NUnit 1.3.0 | 212 | Tuesday, February 25, 2020 | Approved | |
TestCentric Runner for NUnit 1.2.0 | 226 | Sunday, February 16, 2020 | Approved | |
TestCentric Runner for NUnit 1.1.0 | 414 | Saturday, November 9, 2019 | Approved | |
TestCentric Runner for NUnit 1.0.1 | 293 | Friday, August 16, 2019 | Approved | |
TestCentric Runner for NUnit 1.0.0 | 269 | Saturday, July 27, 2019 | Approved | |
TestCentric Runner for NUnit 1.0-beta4 | 212 | Wednesday, July 17, 2019 | Exempted | |
TestCentric Runner for NUnit 1.0-beta3 | 181 | Sunday, July 14, 2019 | Exempted | |
TestCentric Runner for NUnit 1.0-beta2 | 214 | Thursday, May 30, 2019 | Exempted | |
TestCentric Runner for NUnit 1.0-beta | 217 | Saturday, April 13, 2019 | Exempted | |
TestCentric Runner for NUnit 1.0-alpha4 | 228 | Saturday, April 6, 2019 | Exempted | |
TestCentric Runner for NUnit 1.0-alpha3 | 217 | Wednesday, February 27, 2019 | Exempted | |
TestCentric Runner for NUnit 1.0-alpha2 | 233 | Tuesday, November 13, 2018 | Exempted | |
TestCentric Runner for NUnit 1.0-alpha1 | 243 | Friday, August 3, 2018 | Exempted |
Copyright (c) 2018-2019 Charlie Poole
-
- nunit-extension-net462-pluggable-agent (≥ 2.0.1)
- nunit-extension-net60-pluggable-agent (≥ 2.0.0)
- nunit-extension-net70-pluggable-agent (≥ 2.0.0)
Ground Rules:
- This discussion is only about TestCentric Runner for NUnit and the TestCentric Runner for NUnit package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or TestCentric Runner for NUnit, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.