// 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 @interface AppleTestsRunnerHelper : NSObject @property(readonly) int Result; -(id)initWithArgc:(int)argc Argv:(const char*[])argv; -(void)startTestsOnThread; @end #endif