Files
UnrealEngine/Engine/Source/Developer/LowLevelTestsRunner/Private/Platform/Apple/AppleTestRunnerHelper.h
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05: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