Constructor
| 30 | |
| 31 | // Constructor |
| 32 | TestSuite::TestSuite(const std::string& name, std::ostream* outputStream) |
| 33 | : mName(name), mOutputStream(outputStream) { |
| 34 | |
| 35 | } |
| 36 | |
| 37 | // Return the number of passed tests |
| 38 | long TestSuite::getNbPassedTests() const { |
nothing calls this directly
no outgoing calls
no test coverage detected