Files
UnrealEngineUWP/Engine/Source/Programs/AutomationTool/Gauntlet/Editor/EditorTest.BootTest.cs
Ben Marsh 03675533ea Rename UE4Game -> UnrealGame, UE4Client -> UnrealClient, UE4Server -> UnrealServer.
Mostly a find/replace, though I have looked through the changes and attempted to update references to other things as necessary (eg. renaming IOS plist files for IOS). I'm not set up to test on any platforms other than windows, and was hoping to get your blessing to submit and give QA enough time as possible to uncover issues before the next milestone release.

Particular things that I know I'm not sure about:
- Android references /UE4Game/ paths everywhere (for paths on device, I think). I have no idea if I've got them all.
- I've renamed the iOS mobileprovisions, but I don't know if they need regenerating for the new app name.
- Likewise, not sure what needs to be updated for icon bundles on iOS.

Things that have not been changed:
- Windows still uses IDI_UE4ICON for its icon
- UE4CommandLine.txt
- There's still a UE4Game module which is used by content-only projects

#rb none

[CL 14301890 by Ben Marsh in ue5-main branch]
2020-09-11 15:54:42 -04:00

29 lines
547 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using Gauntlet;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EditorTest
{
class BootTest : UnrealGame.DefaultTest
{
public BootTest(Gauntlet.UnrealTestContext InContext)
: base(InContext)
{
}
public override UnrealGame.UE4TestConfig GetConfiguration()
{
UnrealGame.UE4TestConfig Config = base.GetConfiguration();
Config.RequireRole(UnrealTargetRole.Editor);
return Config;
}
}
}