Files
UnrealEngineUWP/Engine/Source/Programs/ReplicationSystemTest/Private/AutomationTestRunner.h

22 lines
246 B
C
Raw Normal View History

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Misc/AutomationTest.h"
#if WITH_AUTOMATION_WORKER
namespace UE::Net
{
class FAutomationTestRunner
{
public:
FAutomationTestRunner();
void RunTests();
};
}
#endif