2015-11-25 15:21:24 +01:00
|
|
|
/****************************************************************************
|
|
|
|
**
|
2016-01-15 14:55:33 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2015-11-25 15:21:24 +01:00
|
|
|
**
|
|
|
|
** This file is part of Qt Creator.
|
|
|
|
**
|
|
|
|
** Commercial License Usage
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
2016-01-15 14:55:33 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
2015-11-25 15:21:24 +01:00
|
|
|
**
|
2016-01-15 14:55:33 +01:00
|
|
|
** GNU General Public License Usage
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
2015-11-25 15:21:24 +01:00
|
|
|
**
|
|
|
|
****************************************************************************/
|
2016-01-15 14:55:33 +01:00
|
|
|
|
2016-03-18 07:55:01 +01:00
|
|
|
#pragma once
|
2015-11-25 15:21:24 +01:00
|
|
|
|
2018-09-11 17:02:45 +02:00
|
|
|
#ifdef __GNUC__
|
|
|
|
#pragma GCC diagnostic ignored "-Wzero-as-null-pointer-constant"
|
|
|
|
#endif
|
|
|
|
|
2016-09-15 17:41:41 +02:00
|
|
|
#include <gmock/gmock.h>
|
|
|
|
#include <gmock/gmock-matchers.h>
|
|
|
|
#include <gtest/gtest.h>
|
2017-12-27 20:44:34 +01:00
|
|
|
#include <gtest/gtest-printers.h>
|
2018-12-17 12:06:57 +01:00
|
|
|
#include <gtest/gtest-typed-test.h>
|
2018-09-11 17:02:45 +02:00
|
|
|
|
2016-11-23 13:31:47 +01:00
|
|
|
#include "compare-operators.h"
|
|
|
|
|
2016-12-14 13:30:56 +01:00
|
|
|
#include "conditionally-disabled-tests.h"
|
2016-09-15 17:41:41 +02:00
|
|
|
#include "gtest-qt-printing.h"
|
2016-11-23 13:31:47 +01:00
|
|
|
#include "gtest-creator-printing.h"
|
2019-02-14 15:33:00 +01:00
|
|
|
#include "gtest-llvm-printing.h"
|
2016-11-23 13:13:38 +01:00
|
|
|
#ifdef CLANG_UNIT_TESTS
|
|
|
|
# include "gtest-clang-printing.h"
|
|
|
|
#endif
|
2017-08-17 15:27:00 +02:00
|
|
|
|
|
|
|
#include "google-using-declarations.h"
|
2017-08-29 12:54:10 +02:00
|
|
|
|
|
|
|
#include "unittest-matchers.h"
|
2017-10-18 13:03:21 +02:00
|
|
|
|
|
|
|
#include "unittest-utility-functions.h"
|