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

Unified Diff: mojo/shell/test/run_all_unittests.cc

Issue 64973002: Moves some files into mojo/common (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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
« mojo/mojo.gyp ('K') | « mojo/shell/scoped_message_pipe.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/shell/test/run_all_unittests.cc
diff --git a/mojo/shell/test/run_all_unittests.cc b/mojo/shell/test/run_all_unittests.cc
deleted file mode 100644
index c36dc75afd33500a6dec58c571c226bfe0ca0b10..0000000000000000000000000000000000000000
--- a/mojo/shell/test/run_all_unittests.cc
+++ /dev/null
@@ -1,30 +0,0 @@
-// Copyright (c) 2013 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/basictypes.h"
-#include "base/bind.h"
-#include "base/compiler_specific.h"
-#include "base/test/launcher/unit_test_launcher.h"
-#include "base/test/test_suite.h"
-#include "mojo/shell/context.h"
-
-class ShellTestSuite : public base::TestSuite {
- public:
- ShellTestSuite(int argc, char** argv) : base::TestSuite(argc, argv) {}
-
- private:
- base::MessageLoop message_loop_;
- // Context is currently a singleton and requires a MessageLoop.
- mojo::shell::Context context_;
-
- DISALLOW_COPY_AND_ASSIGN(ShellTestSuite);
-};
-
-int main(int argc, char** argv) {
- ShellTestSuite test_suite(argc, argv);
-
- return base::LaunchUnitTests(
- argc, argv, base::Bind(&ShellTestSuite::Run,
- base::Unretained(&test_suite)));
-}
« mojo/mojo.gyp ('K') | « mojo/shell/scoped_message_pipe.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698