RobotTestingFramework 2.0.1
Robot Testing Framework
Loading...
Searching...
No Matches
TestResult.h
Go to the documentation of this file.
1/*
2 * Robot Testing Framework
3 *
4 * Copyright (C) 2015-2019 Istituto Italiano di Tecnologia (IIT)
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21
22#ifndef ROBOTTESTINGFRAMEWORK_TESTRESULT_H
23#define ROBOTTESTINGFRAMEWORK_TESTRESULT_H
24
28
29#include <set>
30
31namespace robottestingframework {
32
44{
45 typedef std::set<TestListener*> ListenerContainer;
46 typedef std::set<TestListener*>::iterator ListenerIterator;
47
48public:
53
57 virtual ~TestResult();
58
63 void addListener(TestListener* listener);
64
70
74 void reset();
75
82 void addReport(const Test* test, TestMessage msg);
83
89 void addError(const Test* test, TestMessage msg);
90
96 void addFailure(const Test* test, TestMessage msg);
97
102 void startTest(const Test* test);
103
108 void endTest(const Test* test);
109
114 void startTestSuite(const Test* test);
115
120 void endTestSuite(const Test* test);
121
126
131
132private:
134};
135
136} // namespace robottestingframework
137
138#endif // ROBOTTESTINGFRAMEWORK_TESTResult_H
The base class of any test result listeners.
A formated message with details.
Definition TestMessage.h:33
The TestResult class is used to deliver the test results including any error and failures produced by...
Definition TestResult.h:44
void endTest(const Test *test)
This is called when a Test is finished.
void endTestRunner()
This is called when the TestRunner is finished.
std::set< TestListener * >::iterator ListenerIterator
Definition TestResult.h:46
void startTestRunner()
This is called when the TestRunner is started.
void startTestSuite(const Test *test)
This is called when a TestSuite is started.
void addListener(TestListener *listener)
Adding a new listener.
void reset()
Clear the listener list.
void removeListener(TestListener *listener)
Remove a listener.
void addFailure(const Test *test, TestMessage msg)
This is called when a failure occurred during test run.
TestResult()
TestResult constructor.
virtual ~TestResult()
TestResult destructor.
void endTestSuite(const Test *test)
This is called when a TestSuite is finished.
void startTest(const Test *test)
This is called when a Test is started.
void addError(const Test *test, TestMessage msg)
This is called when an error occurred during test run.
std::set< TestListener * > ListenerContainer
Definition TestResult.h:45
void addReport(const Test *test, TestMessage msg)
This is called to report any arbitrary message from tests.
The simplest form of a test unit.
Definition Test.h:35