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
- Host: GitHub
- URL: https://github.com/tooniez/specflow-nunit-template
- Owner: tooniez
- Created: 2024-05-06T08:42:25.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2026-05-03T05:03:04.000Z (about 2 months ago)
- Last Synced: 2026-05-03T07:10:13.126Z (about 2 months ago)
- Topics: csharp, dotnet, nunit, specflow
- Language: C#
- Homepage:
- Size: 31.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- Code of conduct: .github/CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
- Security: .github/SECURITY.md
- Support: .github/SUPPORT.md
- Governance: .github/GOVERNANCE.md
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.