Chromium Code Reviews| Index: ui/message_center/run_all_unittests.cc |
| diff --git a/ui/message_center/run_all_unittests.cc b/ui/message_center/run_all_unittests.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..9e01991faf78f3e8d8763e35852e5b4a232b6077 |
| --- /dev/null |
| +++ b/ui/message_center/run_all_unittests.cc |
| @@ -0,0 +1,42 @@ |
| +// Copyright (c) 2013 The Chromium Authors. All rights reserved. |
|
tfarina
2013/03/17 14:19:12
no (c)
tfarina
2013/03/17 14:19:12
would have been better to put this into a test dir
dharcourt
2013/03/18 07:01:51
Thanks for the suggestions. Done & done, but in a
|
| +// 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/compiler_specific.h" |
| +#include "base/test/test_suite.h" |
| +#include "ui/base/resource/resource_bundle.h" |
| +#include "ui/base/ui_base_paths.h" |
| +#include "ui/compositor/compositor_setup.h" |
| +#include "ui/compositor/test/compositor_test_support.h" |
| +#include "ui/views/view.h" |
| + |
| +class MessageCenterTestSuite : public base::TestSuite { |
| + public: |
| + MessageCenterTestSuite(int argc, char** argv) : base::TestSuite(argc, argv) {} |
| + |
| + protected: |
| + virtual void Initialize() OVERRIDE; |
| + virtual void Shutdown() OVERRIDE; |
| + |
| + private: |
| + DISALLOW_COPY_AND_ASSIGN(MessageCenterTestSuite); |
| +}; |
| + |
| +void MessageCenterTestSuite::Initialize() { |
| + base::TestSuite::Initialize(); |
| + |
| + ui::RegisterPathProvider(); |
| + ui::ResourceBundle::InitSharedInstanceWithLocale("en-US", NULL); |
| + |
| + ui::CompositorTestSupport::Initialize(); |
| + ui::SetupTestCompositor(); |
| +} |
| + |
| +void MessageCenterTestSuite::Shutdown() { |
| + ui::CompositorTestSupport::Terminate(); |
| +} |
| + |
| +int main(int argc, char** argv) { |
| + return MessageCenterTestSuite(argc, argv).Run(); |
| +} |