device-simulation-dotnet/WebService.Test
Benjamin Sai a0b3405ee7 Merged code from master 2019-03-08 17:37:44 -08:00
..
IntegrationTests Initialize project with files from template 2017-05-25 18:22:07 -07:00
helpers Create devices bulk import job (#255) 2018-10-01 10:08:31 -07:00
v1 Replay file APIs (#333) 2019-01-16 10:59:21 -08:00
README.md Initialize project with files from template 2017-05-25 18:22:07 -07:00
WebService.Test.csproj Merged code from master 2019-03-08 17:37:44 -08:00

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