зеркало из
1
0
Форкнуть 0
azure-iot-sdk-python/tests
Ludovic Rivallain 014440103e Fix: empty payload (#1105)
Closes #1081

Signed-off-by: Ludovic Rivallain <ludovic.rivallain@gmail.com>
2023-08-28 08:56:35 -07:00
..
e2e Increase test timeouts (#1046) 2022-08-29 09:17:55 -07:00
unit Fix: empty payload (#1105) 2023-08-28 08:56:35 -07:00
README.md chore: Restructure testing directory for future testing (#1045) 2022-08-26 12:27:47 -07:00
__init__.py chore: Restructure repository for single project (#1030) 2022-08-04 12:58:57 -07:00
conftest.py chore: Restructure repository for single project (#1030) 2022-08-04 12:58:57 -07:00

README.md

Five types of tests

Unit Tests

Test functionality of individual units, generally an object or a method (or even more specific). Generally whitebox style testing, with lots of mocking.

Integration Tests

Test the intersections of distinct units. Limited mocking, lean more toward greybox or blackbox testing.

E2E Tests

Test end to end functionality with no mocking, a live network, and real IoTHubs

Stress Tests

  • Coming Soon

Scenario Tests

  • Coming Soon