summaryrefslogtreecommitdiff
path: root/chromium/ui/views/views_test_suite.h
blob: 265de530e0acda63d1e3db2c3b66588ec4da9f76 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// Copyright 2016 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_VIEWS_VIEWS_TEST_SUITE_H_
#define UI_VIEWS_VIEWS_TEST_SUITE_H_

#include "base/test/test_suite.h"

#include "build/build_config.h"

#if defined(USE_AURA) && !defined(OS_CHROMEOS)
#include <memory>

namespace aura {
class Env;
}
#endif

namespace views {

class ViewsTestSuite : public base::TestSuite {
 public:
  ViewsTestSuite(int argc, char** argv);
  ~ViewsTestSuite() override;

  int RunTests();
  int RunTestsSerially();

 protected:
  // base::TestSuite:
  void Initialize() override;
  void Shutdown() override;

#if defined(USE_AURA) && !defined(OS_CHROMEOS)
  // Different test suites may wish to create Env differently.
  virtual void InitializeEnv();
  virtual void DestroyEnv();
#endif

 private:
#if defined(USE_AURA) && !defined(OS_CHROMEOS)
  // On Chrome OS, aura::Env is set up in individual test fixtures, most notably
  // ViewsTestBase.
  std::unique_ptr<aura::Env> env_;
#endif

  int argc_;
  char** argv_;

  DISALLOW_COPY_AND_ASSIGN(ViewsTestSuite);
};

}  // namespace views

#endif  // UI_VIEWS_VIEWS_TEST_SUITE_H_