Files
sebastian arleryd cce19caaab Add low-level unit test project for ToolMenus
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]
2023-11-27 11:23:23 -05:00

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();
}