Files
UnrealEngine/Engine/Source/Programs/AutoRTFMEngineTests/Private/AutomationTestRunner.h
2025-05-18 13:04:45 +08:00

24 lines
365 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Misc/AutomationTest.h"
#include "AutoRTFMEngineTests.h"
#if WITH_AUTOMATION_WORKER
namespace UE::AutoRTFM
{
class FAutomationTestRunner
{
public:
FAutomationTestRunner();
// Returns true if the tests ran successfully.
bool RunTests(const TCHAR* TestFilter = nullptr);
};
}
#endif