Files
UnrealEngine/Engine/Source/Programs/Horde/HordeServer.Tests/ServerTestsApp.cs
2025-05-18 13:04:45 +08: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;
}
}
}