| 5362 | }; |
| 5363 | |
| 5364 | struct TestCaseStats { |
| 5365 | TestCaseStats( TestCaseInfo const& _testInfo, |
| 5366 | Totals const& _totals, |
| 5367 | std::string const& _stdOut, |
| 5368 | std::string const& _stdErr, |
| 5369 | bool _aborting ); |
| 5370 | |
| 5371 | TestCaseStats( TestCaseStats const& ) = default; |
| 5372 | TestCaseStats( TestCaseStats && ) = default; |
| 5373 | TestCaseStats& operator = ( TestCaseStats const& ) = default; |
| 5374 | TestCaseStats& operator = ( TestCaseStats && ) = default; |
| 5375 | virtual ~TestCaseStats(); |
| 5376 | |
| 5377 | TestCaseInfo testInfo; |
| 5378 | Totals totals; |
| 5379 | std::string stdOut; |
| 5380 | std::string stdErr; |
| 5381 | bool aborting; |
| 5382 | }; |
| 5383 | |
| 5384 | struct TestGroupStats { |
| 5385 | TestGroupStats( GroupInfo const& _groupInfo, |
no outgoing calls
no test coverage detected