| 5065 | |
| 5066 | template<char C> |
| 5067 | char const* getLineOfChars() { |
| 5068 | static char line[CATCH_CONFIG_CONSOLE_WIDTH] = {0}; |
| 5069 | if( !*line ) { |
| 5070 | std::memset( line, C, CATCH_CONFIG_CONSOLE_WIDTH-1 ); |
| 5071 | line[CATCH_CONFIG_CONSOLE_WIDTH-1] = 0; |
| 5072 | } |
| 5073 | return line; |
| 5074 | } |
| 5075 | |
| 5076 | struct TestEventListenerBase : StreamingReporterBase<TestEventListenerBase> { |
| 5077 | TestEventListenerBase( ReporterConfig const& _config ); |
nothing calls this directly
no outgoing calls
no test coverage detected