device-simulation-dotnet/Services.Test
Peter Felts 8630227130
DotNet 3.1 (#375)
* 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.
2020-07-24 10:55:27 -07:00
..
Clustering Add support for storing data in Azure Tables (#327) 2018-12-10 14:59:37 -08:00
Concurrency Add support for storing data in Azure Tables (#327) 2018-12-10 14:59:37 -08:00
DataStructures Reliability improvements 2018-11-29 17:29:58 -08:00
Diagnostics Bug fixes (#247) 2018-09-21 10:23:51 -07:00
IntegrationTests Initialize project with files from template 2017-05-25 18:22:07 -07:00
IotHub Add support for storing data in Azure Tables (#327) 2018-12-10 14:59:37 -08:00
Models Delete devices even after the simulation is stopped (#313) 2018-12-04 12:52:39 -08:00
Runtime Add support for storing data in Azure Tables (#327) 2018-12-10 14:59:37 -08:00
Simulation Reliability improvements 2018-11-29 17:29:58 -08:00
Statistics Add support for storing data in Azure Tables (#327) 2018-12-10 14:59:37 -08:00
Storage Adding diagnostics instrumentation around CosmosDB failures and process termination. (#341) 2019-03-29 15:41:22 -07:00
helpers Adding SimulationManager + tests (#263) 2018-10-05 14:39:33 -07:00
AzureManagementAdapterTest.cs Create devices bulk import job (#255) 2018-10-01 10:08:31 -07:00
CustomDeviceModelsTest.cs Webinsights - Sending Diagnostics Data from Microservice to Diagnostics Backend (#236) 2018-09-11 15:40:24 -07:00
DeviceClientTest.cs Add options to disable device twins and methods (#331) 2018-12-12 15:35:59 -08:00
DeviceModelScriptsTest.cs Replay file APIs (#333) 2019-01-16 10:59:21 -08:00
DeviceModelsGenerationTest.cs Create devices bulk import job (#255) 2018-10-01 10:08:31 -07:00
DeviceModelsTest.cs Adding SimulationManager + tests (#263) 2018-10-05 14:39:33 -07:00
DevicePropertiesTest.cs Add options to disable device twins and methods (#331) 2018-12-12 15:35:59 -08:00
DevicesTest.cs Stop the application when one of the threads fails (#316) 2018-11-19 11:44:28 -08:00
IotHubMetricsTest.cs Changes to support fetching Iothub metrics (#250) 2018-09-26 18:00:59 -07:00
README.md Initialize project with files from template 2017-05-25 18:22:07 -07:00
ReplayFileServiceTest.cs DotNet 3.1 (#375) 2020-07-24 10:55:27 -07:00
Services.Test.csproj DotNet 3.1 (#375) 2020-07-24 10:55:27 -07:00
SimulationsTest.cs Add support for storing data in Azure Tables (#327) 2018-12-10 14:59:37 -08:00
SmartDictionaryTest.cs Reliability improvements 2018-11-29 17:29:58 -08:00
StockDeviceModelTest.cs Create devices bulk import job (#255) 2018-10-01 10:08:31 -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