tvmrpcLauncher.mm 403 Bytes
Newer Older
Tianqi Chen committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
/*!
 *  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"

@interface tvmrpcLauncher : XCTestCase

@end

@implementation tvmrpcLauncher

- (void)setUp {
    [super setUp];
}

- (void)tearDown {
    [super tearDown];
}

- (void)testRPC {
  [TVMRuntime launchSyncServer];
}


@end