You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
24 lines
449 B
C++
24 lines
449 B
C++
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
||
|
|
#include "TestCommon/CoreUtilities.h"
|
||
|
|
#include "TestCommon/CoreUObjectUtilities.h"
|
||
|
|
|
||
|
|
#include <catch2/catch_test_macros.hpp>
|
||
|
|
|
||
|
|
GROUP_BEFORE_GLOBAL(Catch::DefaultGroup)
|
||
|
|
{
|
||
|
|
InitTaskGraph();
|
||
|
|
InitThreadPool(true);
|
||
|
|
#if WITH_COREUOBJECT
|
||
|
|
InitCoreUObject();
|
||
|
|
#endif
|
||
|
|
}
|
||
|
|
|
||
|
|
GROUP_AFTER_GLOBAL(Catch::DefaultGroup)
|
||
|
|
{
|
||
|
|
#if WITH_COREUOBJECT
|
||
|
|
CleanupCoreUObject();
|
||
|
|
#endif
|
||
|
|
CleanupThreadPool();
|
||
|
|
CleanupTaskGraph();
|
||
|
|
}
|