blob: cd478a8c92c3968f3d1fbe94cfc4c31d3d1f19c7 [file] [log] [blame]
Maxwell Henderson6a929ff2024-01-14 20:03:59 -08001#include "glog/logging.h"
2#include "gtest/gtest.h"
3
4#include "aos/json_to_flatbuffer.h"
5#include "y2024/constants/constants_list_generated.h"
6
Maxwell Henderson09a4b022024-01-19 21:39:51 -08007namespace y2024::constants::testing {
Maxwell Henderson6a929ff2024-01-14 20:03:59 -08008class ConstantsValidatorTest : public ::testing::Test {};
9
10TEST_F(ConstantsValidatorTest, CheckConstants) {
11 CHECK_NOTNULL(aos::JsonFileToFlatbuffer<y2024::ConstantsList>(
12 "y2024/constants/constants.json")
13 .message()
14 .constants());
15}
16
Maxwell Henderson09a4b022024-01-19 21:39:51 -080017} // namespace y2024::constants::testing