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"
15 class UITestSuite
: public base::TestSuite
{
17 UITestSuite(int argc
, char** argv
);
20 // Overridden from base::TestSuite:
21 virtual void Initialize() OVERRIDE
;
22 virtual void Shutdown() OVERRIDE
;
25 DISALLOW_COPY_AND_ASSIGN(UITestSuite
);
31 #endif // UI_TEST_TEST_SUITE_H_