[email protected] | 37f20e7 | 2012-03-27 14:43:55 | [diff] [blame] | 1 | // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 | // Use of this source code is governed by a BSD-style license that can be | ||||
3 | // found in the LICENSE file. | ||||
4 | |||||
[email protected] | 85db5f4 | 2012-03-29 23:24:05 | [diff] [blame] | 5 | #ifndef UI_TEST_TEST_SUITE_H_ |
6 | #define UI_TEST_TEST_SUITE_H_ | ||||
[email protected] | 37f20e7 | 2012-03-27 14:43:55 | [diff] [blame] | 7 | |
8 | #include "base/basictypes.h" | ||||
9 | #include "base/compiler_specific.h" | ||||
10 | #include "base/test/test_suite.h" | ||||
11 | |||||
[email protected] | 85db5f4 | 2012-03-29 23:24:05 | [diff] [blame] | 12 | namespace ui { |
[email protected] | 37f20e7 | 2012-03-27 14:43:55 | [diff] [blame] | 13 | namespace test { |
14 | |||||
[email protected] | 85db5f4 | 2012-03-29 23:24:05 | [diff] [blame] | 15 | class UITestSuite : public base::TestSuite { |
[email protected] | 37f20e7 | 2012-03-27 14:43:55 | [diff] [blame] | 16 | public: |
[email protected] | 85db5f4 | 2012-03-29 23:24:05 | [diff] [blame] | 17 | UITestSuite(int argc, char** argv); |
[email protected] | 37f20e7 | 2012-03-27 14:43:55 | [diff] [blame] | 18 | |
19 | protected: | ||||
[email protected] | 85db5f4 | 2012-03-29 23:24:05 | [diff] [blame] | 20 | // Overridden from base::TestSuite: |
[email protected] | 37f20e7 | 2012-03-27 14:43:55 | [diff] [blame] | 21 | virtual void Initialize() OVERRIDE; |
22 | virtual void Shutdown() OVERRIDE; | ||||
23 | |||||
24 | private: | ||||
[email protected] | 85db5f4 | 2012-03-29 23:24:05 | [diff] [blame] | 25 | DISALLOW_COPY_AND_ASSIGN(UITestSuite); |
[email protected] | 37f20e7 | 2012-03-27 14:43:55 | [diff] [blame] | 26 | }; |
27 | |||||
28 | } // namespace test | ||||
[email protected] | 85db5f4 | 2012-03-29 23:24:05 | [diff] [blame] | 29 | } // namespace ui |
[email protected] | 37f20e7 | 2012-03-27 14:43:55 | [diff] [blame] | 30 | |
[email protected] | 85db5f4 | 2012-03-29 23:24:05 | [diff] [blame] | 31 | #endif // UI_TEST_TEST_SUITE_H_ |