CurrentTest.h 233 B

1234567891011121314151617
  1. #ifndef UNITTEST_CURRENTTESTRESULTS_H
  2. #define UNITTEST_CURRENTTESTRESULTS_H
  3. namespace UnitTest {
  4. class TestResults;
  5. class TestDetails;
  6. namespace CurrentTest
  7. {
  8. TestResults*& Results();
  9. const TestDetails*& Details();
  10. }
  11. }
  12. #endif