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 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]
22 lines
279 B
C++
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
|