Files
UnrealEngineUWP/Engine/Source/Programs/NetworkPredictionTests/NetworkPredictionTests.Target.cs
Ryan Gerleve 4fdbfce9a0 Add a stub low-level tests program for the NetworkPrediction plugin.
Migrated and updated the only test code I found in the plugin, some basic predicted cue functionality, to the test program.
Low-level test runner InitAll helper function now sets GIsRunning to true, NetworkPrediction is checking for this during initialization.

#jira none
#rb brian.bekich, chris.constantinescu
#preflight 6413818332723d4a20e515c8

[CL 24679630 by Ryan Gerleve in ue5-main branch]
2023-03-16 17:08:41 -04:00

18 lines
392 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class NetworkPredictionTestsTarget : TestTargetRules
{
public NetworkPredictionTestsTarget(TargetInfo Target) : base(Target)
{
bCompileAgainstEngine = true;
bUsesSlate = false;
bUsePlatformFileStub = true;
bMockEngineDefaults = true;
IncludeOrderVersion = EngineIncludeOrderVersion.Latest;
}
}