Files
UnrealEngine/Engine/Source/Programs/AutomationTool/Gauntlet/SelfTest/Gauntlet.SelfTest.Blank.cs
2025-05-18 13:04:45 +08:00

24 lines
401 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using Gauntlet;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using UnrealBuildTool;
namespace Gauntlet.SelfTest
{
class Blank : BaseTestNode
{
public override void TickTest()
{
MarkComplete(TestResult.Passed);
}
}
}