blob: cd478a8c92c3968f3d1fbe94cfc4c31d3d1f19c7 [file] [log] [blame]
#include "glog/logging.h"
#include "gtest/gtest.h"
#include "aos/json_to_flatbuffer.h"
#include "y2024/constants/constants_list_generated.h"
namespace y2024::constants::testing {
class ConstantsValidatorTest : public ::testing::Test {};
TEST_F(ConstantsValidatorTest, CheckConstants) {
CHECK_NOTNULL(aos::JsonFileToFlatbuffer<y2024::ConstantsList>(
"y2024/constants/constants.json")
.message()
.constants());
}
} // namespace y2024::constants::testing