8630227130
* Initial ASP.Net Core 2.x -> 3.1 conversion. Basic functionality working. * All dependencies updated. * comments. * Build script and dockerfile changes. * Removed some debug comments. * Updating Travis configuration to use the .Net Core 3.1 SDK * PR feedback. |
||
---|---|---|
.. | ||
IntegrationTests | ||
helpers | ||
v1 | ||
README.md | ||
WebService.Test.csproj |
README.md
Unit Tests and Integration Tests
Guidelines
Conventions
- For each class create a test class with "Test" suffix.
- Flag all the tests with a type, e.g.
[Fact, Trait(Constants.Type, Constants.UnitTest)]
- Store Integration Tests under
IntegrationTests/
and use the[Fact, Trait(Constants.Type, Constants.IntegrationTest)]
attribute