1 #ifndef UNITTEST_CURRENTTESTRESULTS_H 2 #define UNITTEST_CURRENTTESTRESULTS_H 3 4 #include "HelperMacros.h" 5 6 namespace UnitTest { 7 8 class TestResults; 9 class TestDetails; 10 11 namespace CurrentTest 12 { 13 UNITTEST_LINKAGE TestResults*& Results(); 14 UNITTEST_LINKAGE const TestDetails*& Details(); 15 } 16 17 } 18 19 #endif 20