Hi,
I’m working on a make-based project for nrf52xxx MCU. My team is using VisualGDB + Visual Studio for development as well as debugging. Now, we want to write Unit Tests for the application using TinyEmbeddedTest Framework,,, but we didn’t find any support related to Unit Tests configuration via makefile.
For “Advance CMake” projects, It’s really easy to configure Unit Tests, just like;
find_test_framework(ID com.sysprogs.unittest.tinyembtest)
How can I configure Unit Tests for Make-based project?
Thank You!