Downloads:
9,836
Downloads of v 2.0.0-beta5:
125
Last Update:
16 May 2024
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-beta5 | Updated: 16 May 2024
Downloads:
9,836
Downloads of v 2.0.0-beta5:
125
Maintainer(s):
Software Author(s):
- Charlie Poole
Tags:
testcentrictestcentric-gui 2.0.0-beta5
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-beta5 --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-beta5'" --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-beta5'" --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-beta5'
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-beta5'
options '--prerelease'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller testcentric-gui
{
Name = "testcentric-gui"
Version = "2.0.0-beta5"
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-beta5',
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 16 May 2024.
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.
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
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
md5: 45D493C646D36E727C612BB1EB5A52D6 | sha1: 4A6174B93295E2FFCF74AD32D486018FB48A01C2 | sha256: 1294F61FBE9635424103AA8532D8CEB73FD738312EFCA826DF50F2E392B676F1 | sha512: F31AE1828F1C5A71182C1C64A9F5D282369EBFBAFBC40AA0C1D15CD6CE2F24B070D6C167097EAE0FD2DBDBB16437C63D95AFB6B8F585D65882976249CC7205C2
md5: 654DF88A2FD3E1996EC4F0C9C485C30D | sha1: 46087501D99267A2F7E5DF1784F5896C015536AF | sha256: 68B2643E9952D655B653EA318F6510DD0E461A19F3730ABF2BBF37138B18EFFD | sha512: 697E7BDB1113A9C09EBF7D2F601B367E3E73D95F596CA53BBDE302D9683E3156FF77866C05A0DB8FBEB27AA67235B33058C14CF5EB39263997290871E9F4AA9A
md5: 5C5E3D365D4740A0808F14608B9FD195 | sha1: F052E23D9FF301ABDA40988400DC922D52140C4F | sha256: 1C398EF02ABEF6E3990CBA7E9C9127A5F0441CF1196AF7A25E4A45FEB2E3E1A6 | sha512: 631D83FCEE82FC2F3B9607D660ED9637C7A369A449D72A89C0E1C41294A0BA4FC4812B07941E002DEE17C91B106B2DE159ADBCE23A79F0EC82DAEFA98A915CD8
md5: 7E5961C8CDA5DA4CD9E135A79EFD0419 | sha1: 2D2627A44BB15FCF173E10919CAD5A582DD992CB | sha256: 37474540DA38BD0B91250D0A52A169C036C336D020F18868EF5D0AA29224F541 | sha512: 9363A74F5BBB316AE508CB241DC832005EF715013F0EE1F3A4341F766E4C7EEF94E8EE2A7AAB763282BDB11045167F7A5E5A03EC659760A51326F7CBB601EABA
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<!--
The GUI only runs under .NET 2.0 or higher. The
useLegacyV2RuntimeActivationPolicy setting only
applies under .NET 4.0 and permits use of mixed
mode assemblies, which would otherwise not load
correctly.
-->
<startup useLegacyV2RuntimeActivationPolicy="true">
<!-- Comment out the next line to force use of .NET 4.0 -->
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
<runtime>
<!-- Ensure that test exceptions don't crash NUnit -->
<legacyUnhandledExceptionPolicy enabled="1" />
<!-- Run partial trust V2 assemblies in full trust under .NET 4.0 -->
<loadFromRemoteSources enabled="true" />
<!-- Look for addins in the addins directory for now -->
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<probing privatePath="lib;addins" />
</assemblyBinding>
</runtime>
</configuration>
md5: 2E8470BE802FB4AB721FE633571FCAFC | sha1: 6571B1BFEC343525AAC1ED94F10C2F475A359708 | sha256: EA1E9B0BD9F281581A5D03546C60C565C7708CF607B87798DFC4E75FFD8C7A46 | sha512: D20CBDF71EA153D2EC7F417D4CB8E25FA511DE7C6F049C4AA5ECFA650045E8B8BDC695AB69483A1FD314F5F6B6D1396E5A1953C3792F7A18A9E4C43FAEAA917B
md5: 84916AB8029A25E251A4967B0B5DD8A6 | sha1: B5486B7138A9DA0CECCF1282AC0FE16E73E82379 | sha256: 66BAF01DCB725462F6814799778E252A9307C22613A7017E8E39D57EC8C165DF | sha512: F4F7E8DAA89F405BDF628390D74B517D517A6E8B369F215FB866BC592C925D0AAFC1E92F277D70F6978DA8F09C4DDF3E8DED6A5752EB9A650F4BE8DC8C6DD48F
md5: 5F42ACD8345E81904206EBF03A113D69 | sha1: 0D0BD636592080BE43404946ECE24D0673557DE7 | sha256: BCBFC5A42C5303C7B052B9DBEA448D712203242EAFE2E56D47687585B268EEF0 | sha512: 8D72C1E1E00B92AD5CD4EAFB990DEA26C57DD12AA07E17AB57A43DA75F13F54DBF1AB6563D2F72DB6A1564CBCA78C04F587DFEC9DA4EF8DC419AFE15F79B4A58
md5: 60BBB02456613928AEA3DF0B0C2F1FF0 | sha1: 1398FDEA09819E254E71CEF38053EF5E2024D799 | sha256: 4A00234ABD95AB45BBB25F2FC11FD58B480903D59CF9218F353EA08A1D5F1862 | sha512: EDD795B187FC22EFC0D3744DC9A2A98859CFF47C3C399793DCF85302754085E51425C7BC43ADB3F3EF84C322BC9FFCAFDF9C5598E00428CB9637005B2DE32851
md5: 4A4407EB126A0D99BE1E17CB7C8136F3 | sha1: B2205374543D95AFC39439F5764EDF52B46704D0 | sha256: E8277DBA5B9D21DBFAFD59E9B3151B91EA8445F3C3D550D1F05AC71BB049CA57 | sha512: D378CB3A177F4546A503C672C9AB890A37FE8125619BFD44E49A55711CA49CCB154886FD55E5C722CE53AE399163D59376539F7B132228A78316026E640A67B6
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
This package is published by the author of the software, Charlie Poole.
Any binaries will be identical to other package types published by the
author at https://github.com/TestCentric/testcentric-gui.
Log in or click on link to see number of positives.
- Mono.Options.dll (02f97bd6698c) - ## / 72
- TestCentric.Engine.Api.dll (68b2643e9952) - ## / 69
- TestCentric.Extensibility.Api.dll (ea1e9b0bd9f2) - ## / 69
- TestCentric.Extensibility.dll (66baf01dcb72) - ## / 71
- TestCentric.InternalTrace.dll (e8277dba5b9d) - ## / 71
- TestCentric.Metadata.dll (3fea025a8d37) - ## / 70
- testcentric-gui.2.0.0-beta5.nupkg (fa76fb290acf) - ## / 70
- nunit.uiexception.dll (1294f61fbe96) - ## / 73
- testcentric.engine.dll (1c398ef02abe) - ## / 73
- testcentric.exe (37474540da38) - ## / 73
- TestCentric.Gui.Model.dll (bcbfc5a42c53) - ## / 73
- TestCentric.Gui.Runner.dll (4a00234abd95) - ## / 73
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-2024 Charlie Poole
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.