summaryrefslogtreecommitdiff
path: root/tests/auto/qdoc/catch_conversions/qt_catch_conversions.h
blob: 68abf5fb0a3d802988ab61cc3ff03e1646182ced (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#pragma once

#include "std_catch_conversions.h"

#include <ostream>

#include <QChar>
#include <QString>

inline std::ostream& operator<<(std::ostream& os, const QChar& character) {
    return os << QString{character}.toStdString();
}

inline std::ostream& operator<<(std::ostream& os, const QString& string) {
    return os << string.toStdString();
}