cryptohome: Remove unnecessary include of mock_cryptohome_library.h
[chromium-blink-merge.git] / ui / test / test_suite.h
bloba38ec772f446a530525e844b5cd3c0684ae53959
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.
5 #ifndef UI_TEST_TEST_SUITE_H_
6 #define UI_TEST_TEST_SUITE_H_
8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h"
10 #include "base/test/test_suite.h"
12 namespace ui {
13 namespace test {
15 class UITestSuite : public base::TestSuite {
16 public:
17 UITestSuite(int argc, char** argv);
19 protected:
20 // Overridden from base::TestSuite:
21 virtual void Initialize() OVERRIDE;
22 virtual void Shutdown() OVERRIDE;
24 private:
25 DISALLOW_COPY_AND_ASSIGN(UITestSuite);
28 } // namespace test
29 } // namespace ui
31 #endif // UI_TEST_TEST_SUITE_H_