https://github.com/devpro/aspnetcore-testing-sample
Example of testing an ASP.NET Core application
https://github.com/devpro/aspnetcore-testing-sample
Last synced: 3 months ago
JSON representation
Example of testing an ASP.NET Core application
- Host: GitHub
- URL: https://github.com/devpro/aspnetcore-testing-sample
- Owner: devpro
- License: mit
- Created: 2019-02-20T21:16:17.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T14:54:56.000Z (about 3 years ago)
- Last Synced: 2025-09-03T05:38:54.844Z (5 months ago)
- Language: C#
- Size: 482 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# aspnetcore-testing-sample
[](https://dev.azure.com/devprofr/open-source/_build/latest?definitionId=29&branchName=master)
[](https://sonarcloud.io/dashboard?id=devpro.aspnet-testing-sample)
Example of integration testing on an ASP.NET Core application.
## Dependencies
- [.NET Core 3.1 SDK](dot.net)
- MongoDB 4.2 database
- [MongoDB Atlas](https://cloud.mongodb.com/) cluster
- Local server
- Docker
```bash
docker run --name mongodb422 -d -p 27017:27017 mongo
```
## Client code packing
```bash
cd src/WebApp
npx webpack --config webpack.config.js --mode=production
```