https://github.com/webmasterdevlin/softwaretesting
Writing automated tests in DotNet
https://github.com/webmasterdevlin/softwaretesting
Last synced: 2 months ago
JSON representation
Writing automated tests in DotNet
- Host: GitHub
- URL: https://github.com/webmasterdevlin/softwaretesting
- Owner: webmasterdevlin
- Created: 2023-02-16T14:34:17.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-08-04T07:53:55.000Z (almost 3 years ago)
- Last Synced: 2025-01-26T13:30:48.590Z (over 1 year ago)
- Language: C#
- Homepage:
- Size: 182 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Writing Automated Tests
- Note: Create an instance of the database before running the tests
- Name the database "TestDB"
## Installing Database using Docker
- https://github.com/webmasterdevlin/docker-compose-database
- install docker client for your OS
- Install Azure Data Studio
- docker commands of each database are located on each Readme.md file
## Commands
- dotnet tool install --global dotnet-ef
- dotnet ef migrations add InitialCreate
- dotnet ef database update