Files
UnrealEngineUWP/Engine/Source/Programs/AutomationTool/Gauntlet/Unreal/Game/UnrealGame.TestConfig.cs
Marc Audy 0c3be2b6ad Merge Release-Engine-Staging to Test @ CL# 18240298
[CL 18241953 by Marc Audy in ue5-release-engine-test branch]
2021-11-18 14:37:34 -05:00

29 lines
815 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Gauntlet;
namespace UnrealGame
{
/// <summary>
/// Default set of options for testing "DefaultGame". Options that tests can configure
/// should be public, external command-line driven options should be protected/private
/// </summary>
public class UnrealTestConfig : UnrealTestConfiguration
{
/// <summary>
/// Applies these options to the provided app config
/// </summary>
/// <param name="AppConfig"></param>
public override void ApplyToConfig(UnrealAppConfig AppConfig, UnrealSessionRole ConfigRole, IEnumerable<UnrealSessionRole> OtherRoles)
{
base.ApplyToConfig(AppConfig, ConfigRole, OtherRoles);
}
}
}