device-simulation-dotnet/Services.Test
Hugh Xiong b8dab0315e Add device model scripts endpoint (#231)
* Add device model scripts endpoint
2018-08-27 12:49:05 -07:00
..
Concurrency New logger & dependencies upgrade (#232) 2018-08-12 15:36:40 -07:00
IntegrationTests Initialize project with files from template 2017-05-25 18:22:07 -07:00
Models Custom device model management (#199) 2018-05-22 17:24:57 -07:00
Runtime Performance improvements (#223) 2018-07-17 16:37:58 -07:00
Simulation Add device model scripts endpoint (#231) 2018-08-27 12:49:05 -07:00
helpers New logger & dependencies upgrade (#232) 2018-08-12 15:36:40 -07:00
CustomDeviceModelsTest.cs Performance improvements (#223) 2018-07-17 16:37:58 -07:00
DeviceClientTest.cs Performance improvements (#223) 2018-07-17 16:37:58 -07:00
DeviceModelScriptsTest.cs Add device model scripts endpoint (#231) 2018-08-27 12:49:05 -07:00
DeviceModelsGenerationTest.cs Custom device model management (#199) 2018-05-22 17:24:57 -07:00
DeviceModelsTest.cs New logger & dependencies upgrade (#232) 2018-08-12 15:36:40 -07:00
DevicePropertiesRequestTest.cs Performance improvements (#223) 2018-07-17 16:37:58 -07:00
DevicesTest.cs Performance improvements (#223) 2018-07-17 16:37:58 -07:00
IotHubConnectionStringManagerTest.cs Custom device model management (#199) 2018-05-22 17:24:57 -07:00
README.md Initialize project with files from template 2017-05-25 18:22:07 -07:00
Services.Test.csproj New logger & dependencies upgrade (#232) 2018-08-12 15:36:40 -07:00
SimulationsTest.cs New logger & dependencies upgrade (#232) 2018-08-12 15:36:40 -07:00
SmartDictionaryTest.cs New logger & dependencies upgrade (#232) 2018-08-12 15:36:40 -07:00
StockDeviceModelTest.cs Adding Protobuf support for truck (#235) 2018-08-13 14:08:52 -07: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