RobotTestingFramework 2.0.1
Robot Testing Framework
Loading...
Searching...
No Matches
WebProgressListener.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_WEBPROGRESSLISTENER_H
23#define ROBOTTESTINGFRAMEWORK_WEBPROGRESSLISTENER_H
24
26
27namespace robottestingframework {
28
37{
38public:
46 WebProgressListener(unsigned int port = 8080,
47 bool verbose = false);
48
53
60 void addReport(const Test* test, TestMessage msg) override;
61
67 void addError(const Test* test, TestMessage msg) override;
68
74 void addFailure(const Test* test, TestMessage msg) override;
75
80 void startTest(const Test* test) override;
81
86 void endTest(const Test* test) override;
87
92 void startTestSuite(const Test* test) override;
93
98 void endTestSuite(const Test* test) override;
99
103 void startTestRunner() override;
104
108 void endTestRunner() override;
109
110private:
112};
113
114} // namespace robottestingframework
115
116#endif // ROBOTTESTINGFRAMEWORK_WEBPROGRESSLISTENER_H
The base class of any test result listeners.
A formated message with details.
Definition TestMessage.h:33
The simplest form of a test unit.
Definition Test.h:35
class WebProgressListener listens to any messages reported by the tests during the test run,...
void startTestSuite(const Test *test) override
This is called when a TestSuite is started.
void endTestSuite(const Test *test) override
This is called when a TestSuite is finished.
void endTestRunner() override
This is called when the TestRunner is finished.
void startTest(const Test *test) override
This is called when a Test is started.
~WebProgressListener() override
WebProgressListener destructor.
void addError(const Test *test, TestMessage msg) override
This is called when an error occurred during test run.
void addFailure(const Test *test, TestMessage msg) override
This is called when a failure occurred during test run.
void startTestRunner() override
This is called when the TestRunner is started.
void endTest(const Test *test) override
This is called when a Test is finished.
WebProgressListener(unsigned int port=8080, bool verbose=false)
WebProgressListener constructor.
void addReport(const Test *test, TestMessage msg) override
This is called to report any arbitrary message from tests.