File size: 714 Bytes
de0d85f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | // Copyright Epic Games, Inc.All Rights Reserved.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using EpicGame;
using Gauntlet;
namespace LyraTest
{
/// <summary>
/// Basic Boot Test
/// </summary>
public class BootTest : EpicGameTestNode<LyraTestConfig>
{
public BootTest(UnrealTestContext InContext) : base (InContext)
{
}
public override LyraTestConfig GetConfiguration()
{
LyraTestConfig Config = base.GetConfiguration();
Config.NoMCP = true;
UnrealTestRole Client = Config.RequireRole(UnrealTargetRole.Client);
Client.Controllers.Add("BootTest");
return Config;
}
}
}
|