зеркало из
1
0
Форкнуть 0
azure-iot-sdk-python/tests
..
e2e
unit
README.md
__init__.py
conftest.py

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