You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
* Added support for running individual unit tests from command line [CL 32188443 by henrik karlsson in ue5-main branch]
13 lines
193 B
C++
13 lines
193 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "UbaTestAll.h"
|
|
|
|
int wmain(int argc, wchar_t* argv[])
|
|
{
|
|
using namespace uba;
|
|
|
|
if (!RunTests(argc, argv))
|
|
return -1;
|
|
return 0;
|
|
}
|