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]
10 lines
150 B
C++
10 lines
150 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
class FNullTestRunner
|
|
{
|
|
public:
|
|
void RunTests(const TCHAR* Filter = nullptr) {}
|
|
};
|