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.

unit-tests_Namespace.h 433B

3 years ago
12345678910111213
  1. #pragma once
  2. #define UNIT_TESTS_NAMESPACE unit_tests
  3. #define BEGIN_UNIT_TESTS_NAMESPACE namespace UNIT_TESTS_NAMESPACE {
  4. #define END_UNIT_TESTS_NAMESPACE }
  5. #define BEGIN_UNNAMED_NAMESPACE namespace {
  6. #define END_UNNAMED_NAMESPACE }
  7. #define USING_NAMESPACE_UNIT_TESTS using namespace UNIT_TESTS_NAMESPACE;
  8. BEGIN_UNIT_TESTS_NAMESPACE
  9. END_UNIT_TESTS_NAMESPACE