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

7 lines
126 B
C++

#include "doctest/doctest.h"
#include <stdint.h>
TEST_CASE("type tests", "[system]") {
REQUIRE(sizeof(uint64_t) == 8);
}