Files
bx/3rdparty/UnitTest++/src/CurrentTest.h
2013-09-22 21:37:18 -07:00

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