华容道高性能计算引擎
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
253 B

#include <cstdint>
#include "all_cases.h"
#include "gtest/gtest.h"
const uint32_t BASIC_RANGES_SIZE = 7311921;
TEST(AllCases, basic_ranges_size) {
auto &basic_ranges = BasicRanges::fetch();
EXPECT_EQ(basic_ranges.size(), BASIC_RANGES_SIZE);
}