2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
2022-12-21 10:12:09 +01:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
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-12-14 13:30:56 +01:00
|
|
|
#include "conditionally-disabled-tests.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"
|
2020-06-10 13:50:35 +02:00
|
|
|
#include "gtest-qt-printing.h"
|
|
|
|
|
#include "gtest-std-printing.h"
|
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"
|