This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Place actual test suites outside of primary "test_[folder]" and include them | |
| #include "../mysuite/testsuite_mysuite.cpp" | |
| // #include ... more test suites | |
| int run_testsuites(void) { | |
| testsuite_mysuite::run(); | |
| // ... more test suites | |
| return 0; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| A KeyValue pair property variant in C++ for the RaspberryPi RP2040/Arduino/PlatformIO | |
| PropertyType is the base class that describes the underlying property type | |
| PropertyDescriptor is the variant value for that property name | |
| PropertySet is the unique Key/Value set itself | |
| Internally the PropertyDescriptors are stored as std:shared_ptrs so should be thread-safe | |
| To build in PlatformIO add to platformio.ini: |