/* * Copyright (c) 2018-present, Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the LICENSE * file in the root directory of this source tree. * */ #import #if FB_SONARKIT_ENABLED #import @interface FlipperClientTests : XCTestCase @end @implementation FlipperClientTests - (void)testStartingClientDoesntCrashOrHang { FlipperClient *client = [FlipperClient sharedClient]; [client start]; } @end #endif