| 275 | } |
| 276 | |
| 277 | std::string TestCounts::diffLines( std::string const & check |
| 278 | , std::string const & ref ) |
| 279 | { |
| 280 | auto checkLines = splitInLines( check ); |
| 281 | auto refLines = splitInLines( ref ); |
| 282 | std::string result; |
| 283 | result += findMissing( checkLines, refLines, "+" ); |
| 284 | result += findMissing( refLines, checkLines, "-" ); |
| 285 | return result; |
| 286 | } |
| 287 | |
| 288 | //********************************************************************************************* |
| 289 |
nothing calls this directly
no test coverage detected