| 23 | #include "parquet/api/writer.h" // IWYU pragma: keep |
| 24 | |
| 25 | TEST(TestPublicAPI, DoesNotIncludeThrift) { |
| 26 | #ifdef _THRIFT_THRIFT_H_ |
| 27 | FAIL() << "Thrift headers should not be in the public API"; |
| 28 | #endif |
| 29 | } |
| 30 | |
| 31 | TEST(TestPublicAPI, DoesNotExportDCHECK) { |
| 32 | #ifdef DCHECK |
nothing calls this directly
no test coverage detected