#include "remoting/client/chromoting_client_runtime.h"
#include "base/run_loop.h"
#include "build/build_config.h"
#include "remoting/base/auto_thread_task_runner.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace remoting {
#if BUILDFLAG(IS_IOS) || BUILDFLAG(IS_ANDROID)
#if BUILDFLAG(IS_IOS)
#define MAYBE_StartAndStop …
#else
#define MAYBE_StartAndStop …
#endif
TEST(ChromotingClientRuntimeTest, MAYBE_StartAndStop) {
ChromotingClientRuntime* runtime = ChromotingClientRuntime::GetInstance();
ASSERT_TRUE(runtime);
EXPECT_TRUE(runtime->network_task_runner().get());
EXPECT_TRUE(runtime->ui_task_runner().get());
EXPECT_TRUE(runtime->display_task_runner().get());
EXPECT_TRUE(runtime->url_requester().get());
EXPECT_TRUE(runtime->log_writer());
}
#endif
}