I have a rather unconventional question related to TDD and armcc (Keil).
I understand TDD as compile -> link -> execute -> Test output.
In my case I have to compile and link with armcc, but I can not execute the file without Keil (Simulation). I simple don't have a simulator for my device. At least there is no other way to my knowledge. You need to run the tests on your target.
I think that is very inconvenient all in all and I am searching for a better solution. So I am thinking of compiling and linking with armcc but executing with gcc/g++ (depending on the test framework).
Is this a viable option? To be honest I have no idea.
I would really appreciate it if somebody could guide me to my messed perception. Any hint is more then welcome.
I already know about "Unity", but still the target issue is not resolved.