Files
Cpp-in-Embedded-Systems/Chapter17/fsm/libs/etl/test/UnitTest++/CurrentTest.h
Amar Mahmutbegovic a1b36d343e add Chapter17
2025-01-11 12:48:14 +01:00

20 lines
319 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