Learning by doing: Reading books and trying to understand the (code) examples
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
185 B

  1. #include "unity_fixture.h"
  2. static void RunAllTests(void)
  3. {
  4. RUN_TEST_GROUP(LedDriver);
  5. }
  6. int main(int argc, const char * argv[])
  7. {
  8. return UnityMain(argc, argv, RunAllTests);
  9. }