Files
UnrealEngineUWP/Engine/Source/Programs/ReplicationSystemTest/Private/AutomationTestRunner.h
Mattias Hornlund 82e88dd78e Iris
- Added support for using NetTrace for ReplicationSystemTest
- Added -TestFilter commandline options to ReplicationSystemTest allowing to only run tests where the name contains the provided string.

#rb Peter.Engstrom
#jira none
#preflight 630f3392660db81edbb1ca2f

[CL 21718572 by Mattias Hornlund in ue5-main branch]
2022-08-31 06:14:22 -04: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