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 5 #ifndef UI_TEST_TEST_SUITE_H_ 6 #define UI_TEST_TEST_SUITE_H_ 7 8 #include "base/basictypes.h" 9 #include "base/compiler_specific.h" 10 #include "base/test/test_suite.h" 11 12 namespace ui { 13 namespace test { 14 15 class UITestSuite : public base::TestSuite { 16 public: 17 UITestSuite(int argc, char** argv); 18 19 protected: 20 // Overridden from base::TestSuite: 21 virtual void Initialize() OVERRIDE; 22 virtual void Shutdown() OVERRIDE; 23 24 private: 25 DISALLOW_COPY_AND_ASSIGN(UITestSuite); 26 }; 27 28 } // namespace test 29 } // namespace ui 30 31 #endif // UI_TEST_TEST_SUITE_H_ 32