PlatformIO package of the Teensy core framework compatible with GCC 10 & C++20
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.
|
- #pragma once
-
- #define UNIT_TESTS_NAMESPACE unit_tests
- #define BEGIN_UNIT_TESTS_NAMESPACE namespace UNIT_TESTS_NAMESPACE {
- #define END_UNIT_TESTS_NAMESPACE }
- #define BEGIN_UNNAMED_NAMESPACE namespace {
- #define END_UNNAMED_NAMESPACE }
-
- #define USING_NAMESPACE_UNIT_TESTS using namespace UNIT_TESTS_NAMESPACE;
-
- BEGIN_UNIT_TESTS_NAMESPACE
-
- END_UNIT_TESTS_NAMESPACE
|