Lines Matching full:tests
7 …tests using a central unit test application which runs on the {IDF_TARGET_PATH_NAME}. These tests …
8 - Linux-host based unit tests in which all the hardware is abstracted via mocks. Linux-host based t…
13 Unit tests are located in the ``test`` subdirectory of a component. Tests are written in C, and a s…
17 Tests are added in a function in the C file as follows:
27 …tifier in square brackets. Identifiers are used to group related test, or tests with specific prop…
32 …`should list their sources manually <cmake-file-globbing>`; for component tests however, this requ…
42 See http://www.throwtheswitch.org/unity for more information about writing tests in Unity.
82 …5 test functions can be defined, each function will be the entry point of tests running on each DU…
101 …need to check if reset happens). Sometimes we expect to run some specific tests after certain kind…
119 Tests For Different Targets
122 Some tests (especially those related to hardware) cannot run on all targets. Below is a guide how t…
132 …tests to be compiled on a specified target, just modify the targets in the disabled list. It's mor…
136 TEST_CASE("a sdio slave tests that is not ready for esp64 yet", "[sdio_slave]")
145 Some old ways of disabling unit tests for targets, that have obvious disadvantages, are deprecated:
149 …o disable the test items any more. This makes it harder to track disabled tests and enable them ag…
153 …, SD 4-bit and SDSPI. For ESP32-S2, which doesn't have SD host, among the tests only SDSPI is enab…
169 * ``idf.py -T all build`` - build unit test app with tests for each component having tests in the `…
170 …ld unit test app with tests for some space-separated specific components (For instance: ``idf.py -…
171 …ith all unit tests, except for unit tests of some components (For instance: ``idf.py -T all -E "ul…
183 Running Unit Tests
188 When unit test app is idle, press "Enter" will make it print test menu with all available tests::
285 …ng of embedded systems are the strong hardware dependencies. Running unit tests directly on the {I…
296 …tests. This may work but increases the dependency on the "real" code's behavior. Furthermore, once…
297 …components. This may seem burdensome but it is common knowledge that unit tests often expose softw…