| 48 | } |
| 49 | |
| 50 | PARQUET_NORETURN void ThrowsParquetException() { |
| 51 | throw parquet::ParquetException("This function throws"); |
| 52 | } |
| 53 | |
| 54 | TEST(TestPublicAPI, CanThrowParquetException) { |
| 55 | ASSERT_THROW(ThrowsParquetException(), parquet::ParquetException); |
no test coverage detected