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

Side by Side Diff: mojo/public/tests/utility/run_loop_unittest.cc

Issue 134823005: Mojo: re-organize public tests (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 11 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "mojo/public/utility/run_loop.h" 5 #include "mojo/public/utility/run_loop.h"
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "mojo/public/system/core_cpp.h" 9 #include "mojo/public/system/core_cpp.h"
10 #include "mojo/public/tests/test_support.h" 10 #include "mojo/public/tests/test_support.h"
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 EXPECT_TRUE(RunLoop::current() == NULL); 183 EXPECT_TRUE(RunLoop::current() == NULL);
184 { 184 {
185 RunLoop run_loop; 185 RunLoop run_loop;
186 EXPECT_EQ(&run_loop, RunLoop::current()); 186 EXPECT_EQ(&run_loop, RunLoop::current());
187 } 187 }
188 EXPECT_TRUE(RunLoop::current() == NULL); 188 EXPECT_TRUE(RunLoop::current() == NULL);
189 } 189 }
190 190
191 } // namespace 191 } // namespace
192 } // namespace mojo 192 } // namespace mojo
OLDNEW
« no previous file with comments | « mojo/public/tests/utility/bindings_support_impl_unittest.cc ('k') | mojo/public/tests/utility/thread_local_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698