Keyboard firmwares for Atmel AVR and Cortex-M
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.

basic.cpp 264B

12345678910111213
  1. #include "TestHarness.h"
  2. TEST_GROUP(FirstTestGroup)
  3. {
  4. };
  5. TEST(FirstTestGroup, FirstTest)
  6. {
  7. /* These checks are here to make sure assertions outside test runs don't crash */
  8. CHECK(true);
  9. LONGS_EQUAL(1, 1);
  10. STRCMP_EQUAL("mbed SDK!", "mbed SDK!");
  11. }