Downloads:
9,837
Downloads of v 2.0.0-beta6:
40
Last Update:
16 Oct 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-beta6 | Updated: 16 Oct 2024
Downloads:
9,837
Downloads of v 2.0.0-beta6:
40
Maintainer(s):
Software Author(s):
- Charlie Poole
Tags:
testcentrictestcentric-gui 2.0.0-beta6
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
All Checks are Passing
3 Passing Tests
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 --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'" --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'" --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-beta6'
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-beta6'
options '--prerelease'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller testcentric-gui
{
Name = "testcentric-gui"
Version = "2.0.0-beta6"
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-beta6',
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 Oct 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: EBA9A7306D4AE30C4BAEAE25DE2F384D | sha1: DDB2F603D1F66ED0C0F86F63108F8233E1FB06C2 | sha256: D327E6325C1D82B1215050772A57DFAE9F38F86BC719FAB7E16EE71B4055E7BB | sha512: C50D602BF134D46AED621C23C51B1D2E82DB6FF13EF4E67A43FEAFE5363EB101479C50CA0D6AC837D627B3838284BD62C61CA43FF5CE4EC6384A91366ED4C10C
md5: D1733E6E9C92513CC42CE5218646A6C1 | sha1: 73305E2937369260718BD882E357BD2EB030CCF5 | sha256: FE935D0D48CAA25A2749FD2124B4C1007CB782B7D5A63B5650335D0A49597D5A | sha512: 51322A8A883EE9078951CD1B5A372A396580198C691492A690486EE965E52463620225CF062460CB28AA1D3F695C769C69B9756D41E0EA8BCC358D768CCACCCE
md5: 2D087F634DE88C9A8230BDFE2D9A0F23 | sha1: CFAAE0DD51836A71E87139BBA8B3C84ECFC5FBA6 | sha256: 3558F5814E412FE0483CFBBF83E28D7200C38B6865E2D07C43781807A22C258A | sha512: 2139D70F2DB1B49F925E8D4423632862A7C8DC4C78F89F94377B146A7B65CF3280CD78625097B8AEA5217CD0814CD4F83450AE908FCDEDD2A7B811CE7394F5E5
md5: A83876F4FA7239CAF8182318543CDD62 | sha1: 862B66AD9535883923AD7C048987F77A933FD3F5 | sha256: 0681EB2AA12DD50CE5536EB2C60B0F862B28D5D445F18A43969D5C137F18B778 | sha512: 0581778DA454DE2FA5C5200E65980C8525163D5A442A3139330BB5523AE726036957FF178CBC3E53B071858C73B574914DE882753191902FF680BE75CC8A7EF1
md5: 056AD479CFCBD318732096313F5008B5 | sha1: 427D1CC1ABF584EB5637329D5B371485C46852AC | sha256: 1C60AB0A3E6ECF7790BDCDE7FCF540B74F824BCAF41FDA6D584C0F5A17BAFD4B | sha512: 78EEDA3E862BDBB721C9901F075335A21EE32EBD688FFAB745094DCF35A9BC43F26C55D529E84D26E9F5DD98815F478AECBB18D635CDDFC46C4FCCBF6B25F53B
<?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="TestCentric.Metadata" publicKeyToken="6fe0a02d2036aa1d" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-3.0.3.0" newVersion="3.0.3.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
md5: AFE267655EB314EC628E17CA2193D6AA | sha1: 72A798AAF685229A789E959F3EC8360EE2800FBA | sha256: 1D085B4D2B7232E02292BAADD3ADA8DD2184D32AAEC6F9742717B597C1E3B260 | sha512: 40FF9DAC36ED791D45E3BDC4CB986D2786F556C36E41EF15D226F77ABB57AF7875ADECF0B837413A9C7872838AFAB5F7ED54BC6D75F6341D0930600D08D6AD9B
md5: 23A899100220835C0454B1272C8C9176 | sha1: 201652B93EE2AE63D5DF11A3FD7C8F0228800852 | sha256: EA9CA04DFAAA90B2920586E52C509828E10118868E7CB659B2709976C2675AB2 | sha512: 9DCA4D25476B841252AA0CFDF01662B25F9DCA3DF707A799560B356596C27EFB67F1972A1324B8FE532E5171C3FAF762E2D540E921FCD91F841EF2E09CFC770B
md5: 499D7241630093BFC3170367A35ADFDC | sha1: B08B79C0727E53987EF36ABBC1C91E7A194471AD | sha256: C28ED9831CD8021E6DB1D378AA7C6AAF902B7A421B96F42DF9E5E38C35FB81C2 | sha512: A9A11E4CE30523CED47DA6A16EAE61D852AFBA208C45D1A9FF1D9CE25DA50D2AAC6EE3CD189439D92C56AB7C52E78F65B287AA0E27D41B8706C330D87AE9A598
md5: 5A8EA200A041AAD97461F34350945FE2 | sha1: 343840A1988D3FD9417BF1C6366193689C0D08EB | sha256: 868612D6FE0A51632922C8E09D30D1D90C2A4646273427C413B81BAAF3AC80CC | sha512: A8C0DD602CD68EC28DAEAE4C2B67475741950A956F3F04F1B0009C76090F5EBCEAE7B1F61D37A4CAEFA90307A1D2BC181B843916744160E5B9F5E387F52BD284
md5: 7BE1D43DD50DFBA8D34A76ABDA7A074A | sha1: 9CDDC0BEB713DC2C35E9A63B1D1B576FC9EE2CDC | sha256: B531F630D9640C8A3A12CB08A7812E4006693BF5323E06F64BA5906A37B3308A | sha512: 834BF489D91E7AB798CACD635488916B1A7471CEC08252D6DBC910DF93255A150B340AFCDF90E1BCEED80A3336D066FF21255B2F3895FD5701991F8926A94E1A
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
- nunit.engine.api.dll (d327e6325c1d) - ## / 72
- TestCentric.Engine.Api.dll (3558f5814e41) - ## / 72
- TestCentric.Extensibility.Api.dll (1d085b4d2b72) - ## / 73
- TestCentric.Extensibility.dll (ea9ca04dfaaa) - ## / 68
- TestCentric.InternalTrace.dll (b531f630d964) - ## / 73
- TestCentric.Metadata.dll (958aa33031e7) - ## / 73
- testcentric-gui.2.0.0-beta6.nupkg (6856d9fa384d) - ## / 64
- nunit.uiexception.dll (fe935d0d48ca) - ## / 73
- testcentric.engine.dll (0681eb2aa12d) - ## / 66
- testcentric.exe (1c60ab0a3e6e) - ## / 73
- TestCentric.Gui.Model.dll (c28ed9831cd8) - ## / 66
- TestCentric.Gui.Runner.dll (868612d6fe0a) - ## / 70
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 | 40 | 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.