mirror of
https://github.com/holub/mame
synced 2025-05-13 01:24:20 +03:00
20 lines
294 B
C++
20 lines
294 B
C++
#ifndef UNITTEST_CURRENTTESTRESULTS_H
|
|
#define UNITTEST_CURRENTTESTRESULTS_H
|
|
|
|
#include "HelperMacros.h"
|
|
|
|
namespace UnitTest {
|
|
|
|
class TestResults;
|
|
class TestDetails;
|
|
|
|
namespace CurrentTest
|
|
{
|
|
UNITTEST_LINKAGE TestResults*& Results();
|
|
UNITTEST_LINKAGE const TestDetails*& Details();
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|