| 5 | #include "microReticulum/Log.h" |
| 6 | |
| 7 | void testBytesDefault(const RNS::Bytes& bytes = {}) { |
| 8 | TEST_ASSERT_FALSE(bytes); |
| 9 | TEST_ASSERT_EQUAL_size_t(0, bytes.size()); |
| 10 | TEST_ASSERT_NULL(bytes.data()); |
| 11 | } |
| 12 | |
| 13 | RNS::Bytes ref("Test"); |
| 14 | const RNS::Bytes& testBytesReference() { |
no test coverage detected