14 lines
447 B
C++
14 lines
447 B
C++
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
#pragma once
|
|
|
|
#ifdef _WIN32
|
|
// prevents from defining min/max macros that conflict with std::min()/std::max() functions
|
|
#define NOMINMAX
|
|
#endif
|
|
|
|
#include "gtest/gtest.h"
|
|
#include "../../src/signalrclient/event.h"
|
|
#include "../../src/signalrclient/make_unique.h"
|
|
#include <thread> |