Files
UnrealEngine/Engine/Source/Developer/LowLevelTestsRunner/Private/Platform/Apple/AppleTestRunnerHelper.h
2025-05-18 13:04:45 +08:00

27 lines
411 B
Objective-C

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#ifndef PLATFORM_IOS
#define PLATFORM_IOS 0
#endif
#ifndef PLATFORM_MAC
#define PLATFORM_MAC 0
#endif
#if PLATFORM_IOS || PLATFORM_MAC
#import <Foundation/NSObject.h>
@interface AppleTestsRunnerHelper : NSObject
@property(readonly) int Result;
-(id)initWithArgc:(int)argc Argv:(const char*[])argv;
-(void)startTestsOnThread;
@end
#endif