зеркало из
1
0
Форкнуть 0
azure-iot-sdk-python/tests
Carter Tinney a658a99293 reverted some changes 2024-07-17 08:10:04 -07:00
..
e2e reverted some changes 2024-07-17 08:10:04 -07:00
unit reverted some changes 2024-07-17 08:10:04 -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