Hi,
I want to run unit tests on an actual device (nRF52dk) - is it possible?
When I'm trying to run
`west build -b nrf52840dk_nrf52840` on `ncs/nrf/tests/unity/example_test`
the compiler complains about missing `#include <setjmp.h>` file.
On the other hand, trying to run native Zephyr tests, as explained in docs.zephyrproject.org/.../index.html
`./scripts/sanitycheck -v -T tests/foo/bar/ -p nrf52840dk_nrf52840`
I cannot execute test on the platform - the test is getting built only
`0 tests executed on platforms, 1 tests were only built.`
One more question, can you explain why in nRF Connect SDK you are using unity + cmock instead od native ztest from the Zephyr package?