An open API service indexing awesome lists of open source software.

https://github.com/tooniez/specflow-nunit-template

Ready to use boilerplate with BDD Specflow and NUnit runner
https://github.com/tooniez/specflow-nunit-template

csharp dotnet nunit specflow

Last synced: about 1 month ago
JSON representation

Ready to use boilerplate with BDD Specflow and NUnit runner

Awesome Lists containing this project

README

          

# SpecFlow NUnit Boilerplate

A ready-to-use boilerplate for SpecFlow applications with NUnit for testing.

## Project setup

Run the following command to install all the project dependencies:

```shell
dotnet restore
```

## Compiles and runs the application

Run the following command to compile and run the application:

```shell
dotnet run
```

## Compiles for production

Run the following command to compile the application for production:

```shell
dotnet build --configuration Release
```

This command generates an optimized production-ready build.

## Run your unit tests

Run the following command to execute the unit tests for the application using NUnit:

```shell
dotnet test
```

Unit tests are used to test individual components and functions in isolation.

## Customize configuration

For more information on customizing the configuration of your SpecFlow project, refer to the [SpecFlow Documentation](https://docs.specflow.org/en/latest/).

## License

Copyright 2024 [tooniez](https://github.com/tooniez).

This project is [MIT](https://github.com/tooniez/specflow-nunit-template/blob/main/LICENSE) licensed.