https://github.com/aliasadidev/sample-tdd
sample TDD project
https://github.com/aliasadidev/sample-tdd
Last synced: about 1 month ago
JSON representation
sample TDD project
- Host: GitHub
- URL: https://github.com/aliasadidev/sample-tdd
- Owner: aliasadidev
- Created: 2021-03-28T23:05:16.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-03-30T13:59:32.000Z (about 5 years ago)
- Last Synced: 2025-06-26T02:11:30.678Z (12 months ago)
- Language: C#
- Size: 57.6 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Sample-TDD
Sample TDD project
Requirements for run the tests:
1. `MongoDB 4.3+`
2. `Dotnet 5`
### The unit test project path:
`tests/SampleTDD.UnitTest/`
```shell
#run test
cd tests/SampleTDD.UnitTest/ && dotnet test
```
### The integration test project path:
`tests/SampleTDD.IntegrationTest/`
```shell
#run test
cd tests/SampleTDD.IntegrationTest/ && dotnet test
```