You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
25 lines
455 B
C++
25 lines
455 B
C++
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
||
|
|
|
||
|
|
#if !EXPLICIT_TESTS_TARGET && WITH_LOW_LEVEL_TESTS
|
||
|
|
#include "TestCommon/Initialization.h"
|
||
|
|
|
||
|
|
#include <catch2/catch_test_macros.hpp>
|
||
|
|
|
||
|
|
struct StaticInit {
|
||
|
|
StaticInit()
|
||
|
|
{
|
||
|
|
FCommandLine::Set(TEXT(""));
|
||
|
|
}
|
||
|
|
} GStaticInit;
|
||
|
|
|
||
|
|
GROUP_BEFORE_GLOBAL(Catch::DefaultGroup)
|
||
|
|
{
|
||
|
|
InitAll(true, true);
|
||
|
|
}
|
||
|
|
|
||
|
|
GROUP_AFTER_GLOBAL(Catch::DefaultGroup)
|
||
|
|
{
|
||
|
|
CleanupAll();
|
||
|
|
}
|
||
|
|
#endif // !EXPLICIT_TESTS_TARGET && WITH_LOW_LEVEL_TESTS
|