summaryrefslogtreecommitdiffstats
path: root/ui/test/test_suite.h
blob: a38ec772f446a530525e844b5cd3c0684ae53959 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef UI_TEST_TEST_SUITE_H_
#define UI_TEST_TEST_SUITE_H_

#include "base/basictypes.h"
#include "base/compiler_specific.h"
#include "base/test/test_suite.h"

namespace ui {
namespace test {

class UITestSuite : public base::TestSuite {
 public:
  UITestSuite(int argc, char** argv);

 protected:
  // Overridden from base::TestSuite:
  virtual void Initialize() OVERRIDE;
  virtual void Shutdown() OVERRIDE;

 private:
  DISALLOW_COPY_AND_ASSIGN(UITestSuite);
};

}  // namespace test
}  // namespace ui

#endif  // UI_TEST_TEST_SUITE_H_