mirror of
https://github.com/bkaradzic/bx.git
synced 2026-02-19 05:23:00 +01:00
18 lines
233 B
C++
18 lines
233 B
C++
#ifndef UNITTEST_CURRENTTESTRESULTS_H
|
|
#define UNITTEST_CURRENTTESTRESULTS_H
|
|
|
|
namespace UnitTest {
|
|
|
|
class TestResults;
|
|
class TestDetails;
|
|
|
|
namespace CurrentTest
|
|
{
|
|
TestResults*& Results();
|
|
const TestDetails*& Details();
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|