Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: mbed-TFT-example-NCS36510 mbed-Accelerometer-example-NCS36510 mbed-Accelerometer-example-NCS36510
main.cpp
00001 #include <stdio.h> 00002 #include <stdint.h> 00003 00004 #include "toolchain.h" 00005 #include "greentea-client/test_env.h" 00006 #include "unity.h" 00007 #include "utest.h" 00008 00009 using namespace utest::v1; 00010 00011 void no_test() {} 00012 00013 utest::v1::status_t test_setup(const size_t number_of_cases) { 00014 GREENTEA_SETUP(5, "default_auto"); 00015 return verbose_test_setup_handler(number_of_cases); 00016 } 00017 00018 Case cases[] = { 00019 Case("Compilation test", no_test), 00020 }; 00021 00022 Specification specification(test_setup, cases); 00023 00024 int main() { 00025 return !Harness::run(specification); 00026 }
Generated on Tue Jul 12 2022 11:02:46 by
