| 404 | } |
| 405 | |
| 406 | void AppendBasics() { |
| 407 | AppendInt(33); |
| 408 | AppendString("abc"); |
| 409 | AppendDouble(1.0); |
| 410 | AppendDouble(-1.0); |
| 411 | AppendString(""); |
| 412 | AppendInt(10); |
| 413 | AppendString("def"); |
| 414 | AppendInt(-10); |
| 415 | AppendDouble(0.5); |
| 416 | |
| 417 | ASSERT_OK(union_builder->Finish(&actual)); |
| 418 | ASSERT_OK(actual->ValidateFull()); |
| 419 | ArrayFromVector<Int8Type, uint8_t>(expected_types_vector, &expected_types); |
| 420 | } |
| 421 | |
| 422 | void AppendNullsAndEmptyValues() { |
| 423 | AppendString("abc"); |
nothing calls this directly
no test coverage detected