blob: a38ec772f446a530525e844b5cd3c0684ae53959 [file] [log] [blame]
[email protected]37f20e72012-03-27 14:43:551// 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]85db5f42012-03-29 23:24:055#ifndef UI_TEST_TEST_SUITE_H_
6#define UI_TEST_TEST_SUITE_H_
[email protected]37f20e72012-03-27 14:43:557
8#include "base/basictypes.h"
9#include "base/compiler_specific.h"
10#include "base/test/test_suite.h"
11
[email protected]85db5f42012-03-29 23:24:0512namespace ui {
[email protected]37f20e72012-03-27 14:43:5513namespace test {
14
[email protected]85db5f42012-03-29 23:24:0515class UITestSuite : public base::TestSuite {
[email protected]37f20e72012-03-27 14:43:5516 public:
[email protected]85db5f42012-03-29 23:24:0517 UITestSuite(int argc, char** argv);
[email protected]37f20e72012-03-27 14:43:5518
19 protected:
[email protected]85db5f42012-03-29 23:24:0520 // Overridden from base::TestSuite:
[email protected]37f20e72012-03-27 14:43:5521 virtual void Initialize() OVERRIDE;
22 virtual void Shutdown() OVERRIDE;
23
24 private:
[email protected]85db5f42012-03-29 23:24:0525 DISALLOW_COPY_AND_ASSIGN(UITestSuite);
[email protected]37f20e72012-03-27 14:43:5526};
27
28} // namespace test
[email protected]85db5f42012-03-29 23:24:0529} // namespace ui
[email protected]37f20e72012-03-27 14:43:5530
[email protected]85db5f42012-03-29 23:24:0531#endif // UI_TEST_TEST_SUITE_H_