-
Notifications
You must be signed in to change notification settings - Fork 152
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update readme to list .NET Core Runner
- Loading branch information
1 parent
97b484f
commit 00a2ae0
Showing
1 changed file
with
13 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,68 +1,42 @@ | ||
# NUnit 3 Console and Engine # | ||
# NUnit 4 Console and Engine | ||
|
||
[![AppVeyor Build status](https://ci.appveyor.com/api/projects/status/81uhucr7tlq2kwup/branch/master?svg=true)](https://ci.appveyor.com/project/CharliePoole/nunit-console/branch/master) [![Azure Pipelines Build Status](https://nunit.visualstudio.com/NUnit/_apis/build/status/NUnit%20Engine%20&%20Console/NUnit%20Console%20CI?branchName=master)](https://nunit.visualstudio.com/NUnit/_build/latest?definitionId=13&branchName=master) [![NuGet Version and Downloads count](https://buildstats.info/nuget/NUnit.ConsoleRunner)](https://www.nuget.org/packages/NUnit.ConsoleRunner) | ||
|
||
[![Follow NUnit](https://img.shields.io/twitter/follow/nunit.svg?style=social)](https://twitter.com/nunit) [![Slack](https://img.shields.io/badge/chat-on%20Slack-brightgreen)](https://join.slack.com/t/nunit/shared_invite/zt-jz58jw68-Led8y3WH4n2a~Y5WjuOpKA) [![nunit-discuss Google Groups](https://img.shields.io/badge/mailing%20list-nunit--discuss-blue.svg)](https://groups.google.com/forum/#!forum/nunit-discuss) | ||
[![Follow NUnit](https://img.shields.io/twitter/follow/nunit.svg?style=social)](https://twitter.com/nunit) [![Slack](https://img.shields.io/badge/chat-on%20Slack-brightgreen)](https://join.slack.com/t/nunit/shared_invite/zt-jz58jw68-Led8y3WH4n2a~Y5WjuOpKA) | ||
|
||
NUnit is a unit-testing framework for all .NET languages. Initially ported from JUnit, the current production release, version 3, has been completely rewritten with many new features and support for a wide range of .NET platforms. | ||
The NUnit Console Runner and Engine are used for executing NUnit tests with a wide variety of options. Version 4 is the latest major release, with many new features. in a bais a unit-testing framework for all .NET languages. Initially ported from JUnit, the current production release, version 3, has been completely rewritten with many new features and support for a wide range of .NET platforms. | ||
|
||
## Table of Contents ## | ||
## Table of Contents | ||
|
||
- [Downloads](#downloads) | ||
- [Documentation](#documentation) | ||
- [Contributing](#contributing) | ||
- [License](#license) | ||
- [NUnit Projects](#nunit-projects) | ||
|
||
## Downloads ## | ||
## Downloads | ||
|
||
The latest stable release of the NUnit Console is [available on NuGet](https://www.nuget.org/packages/NUnit.ConsoleRunner/), [Chocolatey](https://chocolatey.org/packages/nunit-console-runner), or can be [downloaded from GitHub](/~https://github.com/nunit/nunit-console/releases). Pre-release builds are [available on MyGet](https://www.myget.org/feed/nunit/package/nuget/NUnit.ConsoleRunner). | ||
|
||
The Console/Engine are available in various packages: | ||
- [NUnit.ConsoleRunner](https://www.nuget.org/packages/NUnit.ConsoleRunner/): The NUnit Console, with no extensions. | ||
- [NUnit.Console](https://www.nuget.org/packages/NUnit.Console/): The NUnit Console, with key extensions additionally packaged. Also available as an [msi installer](/~https://github.com/nunit/nunit-console/releases), you may need to add your **actual** msi install location to the `Path` environment variable after installing, for example: `C:\Program Files (x86)\NUnit.org\nunit-console`. | ||
- [NUnit.ConsoleRunner](https://www.nuget.org/packages/NUnit.ConsoleRunner/): The NUnit Console itself, with no extensions. Also available as a [Chocolatey package](https://community.chocolatey.org/packages/nunit-console-runner). | ||
- [NUnit.ConsoleRunner.NetCore](https://www.nuget.org/packages/NUnit.ConsoleRunner.NetCore/): A version of the runner built for .NET 8, which runs .NET Core tests in process. | ||
- [NUnit.Console](https://www.nuget.org/packages/NUnit.Console/): The NUnit Console, with key extensions additionally packaged. | ||
- [NUnit.Engine](https://www.nuget.org/packages/NUnit.Engine/) & [NUnit.Engine.Api](https://www.nuget.org/packages/NUnit.Engine.Api/): Packages intended for custom runners integrating directly with the NUnit Engine. | ||
|
||
## Documentation ## | ||
Development builds of all packages are available from our MyGet feed at https://www.myget.org/feed/Packages/nunit | ||
## Documentation | ||
|
||
Documentation for all NUnit projects are available at [https://docs.nunit.org/](https://docs.nunit.org/). | ||
|
||
## Contributing ## | ||
## Contributing | ||
|
||
For more information on contributing to the NUnit project, please see [CONTRIBUTING.md](/~https://github.com/nunit/nunit-console/blob/master/CONTRIBUTING.md) and the [Developer Docs](/~https://github.com/nunit/docs/wiki/Team-Practices#technical-practices). | ||
|
||
NUnit 3.0 was created by [Charlie Poole](/~https://github.com/CharliePoole), [Rob Prouse](/~https://github.com/rprouse), [Simone Busoli](/~https://github.com/simoneb), [Neil Colvin](/~https://github.com/oznetmaster) and numerous community contributors. A complete list of contributors since the nunit-console repository was created can be [found on GitHub](/~https://github.com/nunit/nunit-console/graphs/contributors). | ||
|
||
Earlier versions of NUnit were developed by Charlie Poole, James W. Newkirk, Alexei A. Vorontsov, Michael C. Two and Philip A. Craig. | ||
|
||
## License ## | ||
## License | ||
|
||
NUnit is Open Source software and NUnit 3 is released under the [MIT license](/~https://github.com/nunit/docs/wiki/License). Earlier releases used the [NUnit license](https://www.nunit.org/nuget/license.html). Both of these licenses allow the use of NUnit in free and commercial applications and libraries without restrictions. | ||
NUnit is Open Source software and the NUnit 4 Console Runner and Engine are released under the [MIT license](/~https://github.com/nunit/docs/wiki/License). Earlier releases used the [NUnit license](http://www.nunit.org/nuget/license.html). Both of these licenses allow the use of NUnit in free and commercial applications and libraries without restrictions. | ||
|
||
## NUnit Projects ## | ||
|
||
NUnit is made up of several projects. When reporting issues, please try to report issues in the correct project. | ||
|
||
### Core Projects ### | ||
|
||
- [NUnit Test Framework](/~https://github.com/nunit/nunit) - The test framework used to write NUnit tests | ||
- [NUnit Console and Engine](/~https://github.com/nunit/nunit-console) - Runs unit tests from the command line and provides the engine that is used by other test runners to run NUnit tests | ||
|
||
### Visual Studio Extensions ### | ||
|
||
- [NUnit 3 Visual Studio Adapter](/~https://github.com/nunit/nunit3-vs-adapter) - Visual Studio adapter for running NUnit 3 tests in Visual Studio and in VSTS/TFS builds | ||
- [NUnit Visual Studio Templates](/~https://github.com/nunit/nunit-vs-templates) - Project templates and snippets for writing unit tests in Visual Studio | ||
- [Visual Studio Test Generator](/~https://github.com/nunit/nunit-vs-testgenerator) - Generates NUnit tests in Visual Studio | ||
- [NUnit 2 Visual Studio Adapter](/~https://github.com/nunit/nunit-vs-adapter) - Visual Studio adapter for running older NUnit 2.x tests in Visual Studio and in VSTS/TFS builds | ||
|
||
### Other Projects ### | ||
|
||
- [NUnit Xamarin Runner](/~https://github.com/nunit/nunit.xamarin) - Runs NUnit 3 tests on mobile devices using the Xamarin framework | ||
|
||
### NUnit Engine Extensions ### | ||
|
||
- [NUnit 2 Driver](/~https://github.com/nunit/nunit-v2-framework-driver) - Allows the NUnit 3 engine to run NUnit 2 tests | ||
- [NUnit 2 Result Writer](/~https://github.com/nunit/nunit-v2-result-writer) - Writes test results in the legacy NUnit 2 format | ||
- [Visual Studio Project Loader](/~https://github.com/nunit/vs-project-loader) - Loads and parses Visual Studio projects and solutions | ||
- [NUnit Project Loader](/~https://github.com/nunit/nunit-project-loader) - Loads NUnit projects | ||
- [TeamCity Event Listener](/~https://github.com/nunit/teamcity-event-listener) - Allows you to run and integrate NUnit tests into TeamCity |