General Information
Learn how to install and activate BELLATRIX. Read the system requirements.
Overview
BELLATRIX is not a single thing, it contains multiple framework libraries, extensions and tools. The tool is built to be cross-platform.
Simple Installation
- Download BELLATRIX file/zip.
- Unzip it. Open BellatrixTestFramework.sln in Visual Studio.
- Open one of the preconfigured projects. It works for both MSTest and NUnit without additional configuration.
- Run the sample tests.
- You can try to write a simple test yourself.
- For an in-depth revision of all framework features you can open the getting started projects.
Running Tests through CLI
To execute your tests via command line in Continues Integration (CI), you can use the native .NET Core test runner.
- Navigate to the folder of your test project.
- Open the CMD there.
- Execute the following command:
dotnet test
For applying filters and other more advanced configuration check the official documentation https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-test and https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-vstest.
Both MSTest and NUnit are supported.