\brief Report that a test has started. \pre reportTestStart() has not been called yet for the given testAtom \param[in] testAtom The handle to the test that has started
| 393 | //! \param[in] testAtom The handle to the test that has started |
| 394 | //! |
| 395 | static void reportTestStart(TestAtom& testAtom) |
| 396 | { |
| 397 | reportTestResult(testAtom, TestResult::kRUNNING); |
| 398 | assert(!testAtom.mStarted); |
| 399 | testAtom.mStarted = true; |
| 400 | } |
| 401 | |
| 402 | //! |
| 403 | //! \brief Report that a test has ended. |