mirror of
https://github.com/bkaradzic/bx.git
synced 2026-02-18 21:13:02 +01:00
19 lines
289 B
C++
19 lines
289 B
C++
#include "CurrentTest.h"
|
|
#include <cstddef>
|
|
|
|
namespace UnitTest {
|
|
|
|
TestResults*& CurrentTest::Results()
|
|
{
|
|
static TestResults* testResults = NULL;
|
|
return testResults;
|
|
}
|
|
|
|
const TestDetails*& CurrentTest::Details()
|
|
{
|
|
static const TestDetails* testDetails = NULL;
|
|
return testDetails;
|
|
}
|
|
|
|
}
|