Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(244)

Unified Diff: remoting/client/chromoting_client_runtime_unittest.cc

Issue 1764503002: Adding container class for chromoting client runtimes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Moving usage comment to .h file. Now more simple. Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/client/chromoting_client_runtime.cc ('k') | remoting/client/jni/chromoting_jni_runtime.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/client/chromoting_client_runtime_unittest.cc
diff --git a/remoting/client/chromoting_client_runtime_unittest.cc b/remoting/client/chromoting_client_runtime_unittest.cc
new file mode 100644
index 0000000000000000000000000000000000000000..89a0f545f2cb0a355933e67e17638adbb7ac9e88
--- /dev/null
+++ b/remoting/client/chromoting_client_runtime_unittest.cc
@@ -0,0 +1,39 @@
+// Copyright (c) 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "base/message_loop/message_loop.h"
+#include "base/run_loop.h"
+#include "remoting/base/auto_thread_task_runner.h"
+#include "remoting/client/chromoting_client_runtime.h"
+#include "testing/gtest/include/gtest/gtest.h"
+
+namespace remoting {
+
+#if defined(OS_IOS) || defined(OS_ANDROID)
+
+// A simple test that starts and stop the runtime. This tests the runtime
+// operates properly and all threads and message loops are valid.
+TEST(ChromotingClientRuntimeTest, StartAndStop) {
+ scoped_ptr<base::MessageLoopForUI> ui_loop;
+ ui_loop.reset(new base::MessageLoopForUI());
+#if defined(OS_IOS)
+ ui_loop->Attach();
+#elif defined(OS_ANDROID)
+ ui_loop->Start();
+#endif
+
+ scoped_ptr<ChromotingClientRuntime> runtime =
+ ChromotingClientRuntime::Create(ui_loop.get());
+
+ 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->file_task_runner().get());
+ EXPECT_TRUE(runtime->url_requester().get());
+}
+
+#endif
+
+} // namespace remoting
« no previous file with comments | « remoting/client/chromoting_client_runtime.cc ('k') | remoting/client/jni/chromoting_jni_runtime.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698