You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Includes a few tests to verify that the tests themselves work. #jira UE-201151 #rb aditya.ravichandran, Rex.Hill [CL 29935603 by sebastian arleryd in ue5-main branch]
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();
|
|
}
|