You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#preflight 636ab505450be1d9f83e90e4 #rb Jerome.Delattre [CL 23039159 by chris constantinescu in ue5-main branch]
16 lines
298 B
C++
16 lines
298 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "TestCommon/Initialization.h"
|
|
|
|
#include <catch2/catch_test_macros.hpp>
|
|
|
|
GROUP_BEFORE_GLOBAL(Catch::DefaultGroup)
|
|
{
|
|
InitAll(/*bAllowLogging=*/true, /*bMultithreaded=*/false);
|
|
}
|
|
|
|
GROUP_AFTER_GLOBAL(Catch::DefaultGroup)
|
|
{
|
|
CleanupAll();
|
|
}
|