Prusa-Firmware-MMU/tests/unit/system_test.cpp

7 lines
139 B
C++

#include "catch2/catch.hpp"
TEST_CASE("type tests", "[system]") {
REQUIRE(sizeof(uint64_t) == 8);
REQUIRE(sizeof(char *) == 4);
}