Direct-BT
2.3.1
Direct-BT - Direct Bluetooth Programming.
|
#include <catch2/catch_amalgamated.hpp>
#include <jau/float_math.hpp>
#include <jau/test/catch2_my_main.cpp>
Go to the source code of this file.
Macros | |
#define | INTERNAL_CATCH_TEST_M(msg, macroName, resultDisposition, ...) |
#define | REQUIRE_MSG(MSG, ...) INTERNAL_CATCH_TEST_M( MSG, "REQUIRE: ", Catch::ResultDisposition::Normal, __VA_ARGS__ ) |
#define | INFO_STR(msg) INTERNAL_CATCH_INFO( "INFO", static_cast<std::string>(msg) ) |
#define | REQUIRE_EPSI(a, b) INTERNAL_CATCH_TEST( "REQUIRE: ", Catch::ResultDisposition::Normal, jau::machine_equal(a, b)) |
#define | REQUIRE_EPSI_MSG(m, a, b) INTERNAL_CATCH_TEST_M( m, "REQUIRE: ", Catch::ResultDisposition::Normal, jau::machine_equal(a, b)) |
#define | REQUIRE_DIFF(a, b, d) INTERNAL_CATCH_TEST( "REQUIRE: ", Catch::ResultDisposition::Normal, jau::machine_equal(a, b, 1, d)) |
#define | REQUIRE_DIFF_MSG(m, a, b, d) INTERNAL_CATCH_TEST_M( m, "REQUIRE: ", Catch::ResultDisposition::Normal, jau::machine_equal(a, b, 1, d)) |
#define INFO_STR | ( | msg | ) | INTERNAL_CATCH_INFO( "INFO", static_cast<std::string>(msg) ) |
Definition at line 60 of file catch2_ext.hpp.
#define INTERNAL_CATCH_TEST_M | ( | msg, | |
macroName, | |||
resultDisposition, | |||
... | |||
) |
Definition at line 42 of file catch2_ext.hpp.
#define REQUIRE_DIFF | ( | a, | |
b, | |||
d | |||
) | INTERNAL_CATCH_TEST( "REQUIRE: ", Catch::ResultDisposition::Normal, jau::machine_equal(a, b, 1, d)) |
Definition at line 65 of file catch2_ext.hpp.
#define REQUIRE_DIFF_MSG | ( | m, | |
a, | |||
b, | |||
d | |||
) | INTERNAL_CATCH_TEST_M( m, "REQUIRE: ", Catch::ResultDisposition::Normal, jau::machine_equal(a, b, 1, d)) |
Definition at line 66 of file catch2_ext.hpp.
#define REQUIRE_EPSI | ( | a, | |
b | |||
) | INTERNAL_CATCH_TEST( "REQUIRE: ", Catch::ResultDisposition::Normal, jau::machine_equal(a, b)) |
Definition at line 62 of file catch2_ext.hpp.
#define REQUIRE_EPSI_MSG | ( | m, | |
a, | |||
b | |||
) | INTERNAL_CATCH_TEST_M( m, "REQUIRE: ", Catch::ResultDisposition::Normal, jau::machine_equal(a, b)) |
Definition at line 63 of file catch2_ext.hpp.
#define REQUIRE_MSG | ( | MSG, | |
... | |||
) | INTERNAL_CATCH_TEST_M( MSG, "REQUIRE: ", Catch::ResultDisposition::Normal, __VA_ARGS__ ) |
Definition at line 59 of file catch2_ext.hpp.