Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
qcsvbenchmarklogger_p.h
Go to the documentation of this file.
1// Copyright (C) 2016 Intel Corporation.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3
4#ifndef QCSVBENCHMARKLOGGER_P_H
5#define QCSVBENCHMARKLOGGER_P_H
6
7//
8// W A R N I N G
9// -------------
10//
11// This file is not part of the Qt API. It exists purely as an
12// implementation detail. This header file may change from version to
13// version without notice, or even be removed.
14//
15// We mean it.
16//
17
19
21
23{
24public:
25 QCsvBenchmarkLogger(const char *filename);
27
29 void stopLogging() override;
30
31 void enterTestFunction(const char *function) override;
33
34 void addIncident(IncidentTypes type, const char *description,
35 const char *file = nullptr, int line = 0) override;
37
38 void addMessage(MessageTypes type, const QString &message,
39 const char *file = nullptr, int line = 0) override;
40};
41
42QT_END_NAMESPACE
43
44#endif // QCSVBENCHMARKLOGGER_P_H
void outputString(const char *msg)
Convenience method to write msg to the output stream.
MessageTypes
The members whose names begin with Q describe messages that originate in calls, by the test or code u...
QCsvBenchmarkLogger(const char *filename)
void addIncident(IncidentTypes type, const char *description, const char *file=nullptr, int line=0) override
This virtual method is called when an event occurs that relates to the resolution of the test.
void enterTestFunction(const char *function) override
This virtual method is called before each test function is invoked.
void addBenchmarkResult(const QBenchmarkResult &result) override
This virtual method is called after a benchmark has been run enough times to produce usable data.
void stopLogging() override
Called after the end of a test run.
void leaveTestFunction() override
This virtual method is called after a test function has completed, to match \l enterTestFunction().
void addMessage(MessageTypes type, const QString &message, const char *file=nullptr, int line=0) override
This is an overloaded member function, provided for convenience. It differs from the above function o...
void startLogging() override
Called before the start of a test run.
Combined button and popup list for selecting options.