| 37 | { |
| 38 | protected: |
| 39 | void Initialize(CppBenchmark::Context& context) override |
| 40 | { |
| 41 | auto text_sink = std::make_shared<Processor>(std::make_shared<TextLayout>()); |
| 42 | text_sink->appenders().push_back(std::make_shared<NullAppender>()); |
| 43 | Config::ConfigLogger("text", text_sink); |
| 44 | Config::Startup(); |
| 45 | } |
| 46 | }; |
| 47 | |
| 48 | BENCHMARK_FIXTURE(BinaryConfigFixture, "NullAppender-binary") |
nothing calls this directly
no outgoing calls
no test coverage detected