File tree Expand file tree Collapse file tree 3 files changed +25
-0
lines changed Expand file tree Collapse file tree 3 files changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ if(ENABLE_WEB_LISTENER)
2929 include /rtf/TestResultCollector.h
3030 include /rtf/TestResult.h
3131 include /rtf/TestRunner.h
32+ include /rtf/TestSuit.h
3233 include /rtf/TestSuite.h
3334 include /rtf/TextOutputter.h
3435 include /rtf/WebProgressListener.h)
Original file line number Diff line number Diff line change 1616#include < rtf/TestCase.h>
1717#include < rtf/TestSuite.h>
1818
19+ // TODO(traversaro): For backcompatibility 1.2 --> 1.4 . To be removed in 1.6
20+ #include < rtf/TestSuit.h>
21+
1922#if defined _MSC_VER && _MSC_VER <= 1800 // Visual Studio 12 or earlier has not [[noreturn]]
2023# define RTF_NORETURN __declspec (noreturn)
2124#else
Original file line number Diff line number Diff line change 1+ // -*- mode:C++; tab-width:4; c-basic-offset:4; indent-tabs-mode:nil -*-
2+
3+ /*
4+ * Copyright (C) 2015 iCub Facility
5+ * Authors: Ali Paikan
6+ * CopyPolicy: Released under the terms of the LGPLv2.1 or later, see LGPL.TXT
7+ *
8+ */
9+
10+
11+ #ifndef _RTF_TESTSUIT_H
12+ #define _RTF_TESTSUIT_H
13+
14+ #include < rtf/TestSuite.h>
15+
16+ namespace RTF
17+ {
18+ typedef TestSuite TestSuit;
19+ }
20+
21+ #endif // _RTF_TESTSUIT_H
You can’t perform that action at this time.
0 commit comments