Downloads:
9,836
Downloads of v 2.0.0-beta2:
71
Last Update:
04 Sep 2023
Package Maintainer(s):
Software Author(s):
- Charlie Poole
Tags:
testcentrictestcentric-gui
This is a prerelease version of testcentric-gui.
- 1
- 2
- 3
2.0.0-beta2 | Updated: 04 Sep 2023
Downloads:
9,836
Downloads of v 2.0.0-beta2:
71
Maintainer(s):
Software Author(s):
- Charlie Poole
Tags:
testcentrictestcentric-gui 2.0.0-beta2
This is a prerelease version of testcentric-gui.
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-gui, run the following command from the command line or from PowerShell:
To upgrade testcentric-gui, run the following command from the command line or from PowerShell:
To uninstall testcentric-gui, 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-beta2 --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-beta2'" --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-beta2'" --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-beta2'
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-beta2'
options '--prerelease'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller testcentric-gui
{
Name = "testcentric-gui"
Version = "2.0.0-beta2"
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-beta2',
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 was approved as a trusted package on 04 Sep 2023.
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: ACF2742C5D5751612BE6AB0EE05666CC | sha1: BE2F71D43C903231AFBDC3BA6AF95FAB776E383A | sha256: 0DCBB1616356E29F0E11597C56441BFD2CFB45B5A4FB3F8527F95118C9CA2529 | sha512: 536B782A35549BF58FCD20F366D7944D9362A9714F171EEF1E8701DC88DF4B87F4BE09134E85FDA3D8C21FB0FD9985B56DD495557F23F62ED05AA6F920EACFEB
<?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: D0FAA3AAABC13C26C1F12E2534F14F10 | sha1: 85E95AF488B052E5FA65E7F3C17642266EF3E3C9 | sha256: BBF3BFAB45C44A74BAAE503C655DD61F28DB75082C93E5C30A350D89AD946D8A | sha512: EBC0BFC63A803A565055DC190A6964488ED5645F7E5B8E6DB35EFD943B718603C06BBEE1CF87A2ED76983B7EFF5992A56A319971415025D798822A3DA2085ADC
md5: 098F0FAA4CAA302EFDE598B057EEFA69 | sha1: D17D3F9FE13784F9D1BC822381B93389D8B94C6C | sha256: CA9B07EB00E7123650DDD2DFABE8AC26E4D07202543A32FBF27B89D9325E2DAA | sha512: 6812126588D57F693A2AB2A43B317C8B5EC321E6A3F0EF33761B26F3D4D40D4378944917117B1194C69784AFA83D74AB23CE023F4EA39AC2152D46FCEB032C31
md5: 6B69D698E9FD36DA7918B8F70EA91F4F | sha1: C96F3D273A73CB6E21E590A7DE385E2E385B414F | sha256: 597438F4B6E4AA7682C3BB7CCED1A421DDEEC4334E3F48F44C78CC73D080FA91 | sha512: 69BBF4730752269EA0BAA70A85C77836DFD3136AB13C79B0006843B19D853815167D14C3C8CB748B6CCB67B4499F4B1E61A865B3E05970B603B91A97C71E1053
md5: DAEA61C1530EFCD89B115F6826C0C2B0 | sha1: B3901DB864F4719FF67CA56D7AD67C5F23EDB91F | sha256: 471538189FC8DF3170C68290924C42DBD54C11DB6246678FD3891806261D497A | sha512: DE6351FA6A65A22FE383A51C1A6FCA29C469712EBB0865186CD1E7D770FE2B889EE345EEBB6A348B310189F64A880A0D015B66AA4D3F01BCDBBC29CC02DE9D7A
md5: 346EA21590A73426CE0D4A62EE434374 | sha1: BDB2F36FDAC9DE1BF7B534469DFE45BC7E31F632 | sha256: 6A13181428F2889C47A9417F25EBEF187AAFBA9EDDC273B08C26882A60EF6256 | sha512: 2205A0E72366D66D00E8387D6230AD919A301E3F283E3214EEB262289981A2998826CA54F970078A408C12CBDF1656BB37AB3B1CDA0C741CF8C5CEFE96025E5D
md5: FECB6ADE9FBB1966237EC40095CFAA74 | sha1: 64B72ED0EDEDA667AE0A6D2A6409A0141087CCFC | sha256: 88E57516191DA6FA72D95661020C0F7F615FC93F4C457EEDB013569725E158E3 | sha512: C2C2FDEF85E3B5B925D0ED7F152DE3D69E2E1BA11F7F56CE3E19178BD2F26DB51D10268DC0B3F596BE76CA7DBA58BA83ACE6A58B0A80C187184317C7A4CB86DE
md5: 556C35A147DA347069AE96021E459BC2 | sha1: 2110BEC953FD53592AB056F3AD59980C7580ADE7 | sha256: C4E8ACEF9F937482CCEB338B1F12F666DCF61C2C3AEFF8CE4916036A5969466B | sha512: 0C56EE14B254FB5486828576CA032834B76845C4CFCFB06E8316294844332116BFF37A6B5400F974CE01E731D9E56404B44A914D245F4F22E44E2D7F18329037
md5: 06A46EDD18D055C2BFF509B273FDB256 | sha1: 37ECD1CE01A757C1870A1C98B316002A1F14DCB0 | sha256: BA3C92F7AA62A0B5FE7C0EDEAC4635AF45179BDACC6BC018ED8E700F72359D53 | sha512: CFA4DF99859E13B4F68E8ACA1810D9243DF5F3EC57415252CE0F3CF1544D055599B2600F70172C76B6AA03F4AED552146FEC1C38746372E5748A3D065D99CA2A
md5: CE74403A752B90B484FF3ED4FB62C691 | sha1: 5563CDF9087DF52B75890B4EAC4BDF33815DE17B | sha256: 642C34D12BBC41162FDC231592CDC816AFF6B024B9F26D4D37A0D608E45B5BBA | sha512: 5CBC354B10C90EA8F1163F145599D7D24B46BB9DDD78EABAB4FF10CE7F3994CDEFBA3C318C20088ADF1AAFE8E99468E0C795CDEE4659EFF4C821AAE4F5D2F172
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.engine.api.dll (88e57516191d) - ## / 68
- testcentric.engine.core.dll (6a13181428f2) - ## / 64
- testcentric.extensibility.dll (c4e8acef9f93) - ## / 70
- testcentric-gui.2.0.0-beta2.nupkg (f7fef45ae579) - ## / 57
- nunit.uiexception.dll (ca9b07eb00e7) - ## / 66
- test-bed.exe (642c34d12bbc) - ## / 65
- testcentric.engine.dll (471538189fc8) - ## / 70
- testcentric.exe (0dcbb1616356) - ## / 65
- TestCentric.Gui.Model.dll (597438f4b6e4) - ## / 63
- TestCentric.Gui.Runner.dll (bbf3bfab45c4) - ## / 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) 2021-2023 Charlie Poole
-
- nunit-extension-net462-pluggable-agent (≥ 2.1.1)
- nunit-extension-net60-pluggable-agent (≥ 2.1.0)
- nunit-extension-net70-pluggable-agent (≥ 2.1.0)
Ground Rules:
- This discussion is only about testcentric-gui and the testcentric-gui 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-gui, 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.