?login_element?

Subversion Repositories NedoOS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. #include "CurrentTest.h"
  2. #include <cstddef>
  3.  
  4. namespace UnitTest {
  5.  
  6.    UNITTEST_LINKAGE TestResults*& CurrentTest::Results()
  7.    {
  8.       static TestResults* testResults = NULL;
  9.       return testResults;
  10.    }
  11.  
  12.    UNITTEST_LINKAGE const TestDetails*& CurrentTest::Details()
  13.    {
  14.       static const TestDetails* testDetails = NULL;
  15.       return testDetails;
  16.    }
  17.  
  18. }
  19.