Files
UnrealEngine/Engine/Source/Programs/Horde/HordeServer.Tests/ServerTestsApp.cs
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

21 lines
431 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using System;
using System.Threading.Tasks;
namespace HordeServer.Tests
{
class ServerTestsApp
{
/// <summary>
/// Entry point
/// </summary>
public static Task Main()
{
// This custom entry point allows running custom code for debugging/profiling test runs.
Console.WriteLine("Run tests through the MSTest framework.");
return Task.CompletedTask;
}
}
}