| 90 | }; |
| 91 | |
| 92 | TEST_P(RandomArrayTest, GenerateArray) { |
| 93 | auto field = GetField(); |
| 94 | auto array = GenerateArray(*field, kExpectedLength, 0xDEADBEEF); |
| 95 | AssertTypeEqual(field->type(), array->type()); |
| 96 | ASSERT_EQ(kExpectedLength, array->length()); |
| 97 | ASSERT_OK(array->ValidateFull()); |
| 98 | } |
| 99 | |
| 100 | TEST_P(RandomArrayTest, GenerateArrayAlignment) { |
| 101 | const int64_t alignment = 1024; |
nothing calls this directly
no test coverage detected