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

  1. Download the BELLATRIX projects zip file from the green button Code.
  2. Unzip it. The projects are grouped by technology: web, desktop, mobile, API, load testing

Grouping By Technology

  1. Open the project based on the test framework you prefer: MSTest or NUnit.

Grouping By Test Framework

  1. Click on the csproj file.

Open csproj

  1. Run the sample tests.
  2. You can try to write a simple test yourself.
  3. 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.

  1. Navigate to the folder of your test project.
  2. Open the CMD there.
  3. 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.