summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/unittest-cpp/UnitTest++/CurrentTest.h
blob: 642b9dce01037c28f04d764cda6f4fceee72ea39 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#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