| 449 | } |
| 450 | |
| 451 | void AppendBasics() { |
| 452 | AppendInt(33); |
| 453 | AppendString("abc"); |
| 454 | AppendDouble(1.0); |
| 455 | AppendDouble(-1.0); |
| 456 | AppendString(""); |
| 457 | AppendInt(10); |
| 458 | AppendString("def"); |
| 459 | AppendInt(-10); |
| 460 | AppendDouble(0.5); |
| 461 | |
| 462 | ASSERT_OK(union_builder->Finish(&actual)); |
| 463 | ASSERT_OK(actual->ValidateFull()); |
| 464 | ArrayFromVector<Int8Type, uint8_t>(expected_types_vector, &expected_types); |
| 465 | } |
| 466 | |
| 467 | void AppendNullsAndEmptyValues() { |
| 468 | AppendString("abc"); |
nothing calls this directly
no test coverage detected