| 88 | class TestLogging : public ::testing::Test { |
| 89 | public: |
| 90 | void SetUp() override { |
| 91 | tracer_ = arrow::internal::tracing::GetTracer(); |
| 92 | span_ = tracer_->StartSpan("test-logging"); |
| 93 | } |
| 94 | |
| 95 | otel::trace::Scope MakeScope() { return tracer_->WithActiveSpan(span_); } |
| 96 |
nothing calls this directly
no test coverage detected