/*! * Copyright (c) 2017 by Contributors * \brief A hook to launch RPC server via xcodebuild test * \file tvmrpcLauncher.mm */#import <XCTest/XCTest.h>#import "TVMRuntime.h"@interfacetvmrpcLauncher:XCTestCase@end@implementationtvmrpcLauncher-(void)setUp{[supersetUp];}-(void)tearDown{[supertearDown];}-(void)testRPC{[TVMRuntimelaunchSyncServer];}@end