blob: 73654b3293f4e81d4109ee50c0e7f546aa1f0d13 [file] [log] [blame]
// 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"
#if defined(USE_AURA)
#include <memory>
#endif
namespace aura {
class Env;
}
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
#endif // UI_VIEWS_VIEWS_TEST_SUITE_H_