Files
UnrealEngine/Engine/Source/Programs/ReplicationSystemTest/Private/AutomationTestRunner.h
2025-05-18 13:04:45 +08:00

22 lines
279 B
C++

// 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(const TCHAR* TestFilter = nullptr);
};
}
#endif