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, however some of the features can be used under Windows since they are written for Visual Studio.
Simple Installation
- Download the BELLATRIX projects zip file from the green button Code.
- Unzip it. The projects are grouped by technology: web, desktop, mobile, API, load testing
- Open the project based on the test framework you prefer: MSTest or NUnit.
- Click on the csproj file.
- 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.