Constructor
| 32 | |
| 33 | /// Constructor |
| 34 | Test::Test(const std::string& name, std::ostream* stream) |
| 35 | : mName(name), mNbPassedTests(0), mNbFailedTests(0), mOutputStream(stream) { |
| 36 | |
| 37 | } |
| 38 | |
| 39 | /// Destructor |
| 40 | Test::~Test() { |
nothing calls this directly
no outgoing calls
no test coverage detected