Files
chris constantinescu cd6530efad Low Level Tests: code tests built on Catch2 with multi-platform support.
Intended for writing unit, integration, functional and all types of tests.

#jira UEENGQA-49764
#rb Jerome.Delattre

[CL 17666358 by chris constantinescu in ue5-main branch]
2021-09-29 15:50:07 -04:00

22 lines
359 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#if defined(PLATFORM_ANDROID)
#include "TestRunner.h"
const char* AndroidPath;
extern "C" int LowLevelTestsMain(int argc, const char* argv[])
{
return RunTests(argc, argv);
}
const char* GetCacheDirectory()
{
return AndroidPath;
}
const char* GetProcessExecutablePath()
{
return AndroidPath;
}
#endif