| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- // Copyright (C) 2022 The Qt Company Ltd.
- // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
- #pragma once
- #include "qtcassert.h"
- #include "3rdparty/tl_expected/include/tl/expected.hpp"
- namespace Utils {
- using namespace tl;
- template<class T>
- using expected_str = tl::expected<T, QString>;
- } // namespace Utils
- //! If 'expected' has an error the error will be printed and the 'action' will be executed.
- #define QTC_ASSERT_EXPECTED(expected, action) \
- if (Q_LIKELY(expected)) { \
- } else { \
- ::Utils::writeAssertLocation(QString("%1:%2: %3") \
- .arg(__FILE__) \
- .arg(__LINE__) \
- .arg(expected.error()) \
- .toUtf8() \
- .data()); \
- action; \
- } \
- do { \
- } while (0)
- #define QTC_CHECK_EXPECTED(expected) \
- if (Q_LIKELY(expected)) { \
- } else { \
- ::Utils::writeAssertLocation( \
- QString("%1:%2: %3").arg(__FILE__).arg(__LINE__).arg(expected.error()).toUtf8().data()); \
- } \
- do { \
- } while (0)
|