chromium/ui/views/views_test_suite.h

// Copyright 2016 The Chromium Authors
// 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/memory/raw_ptr.h"
#include "base/test/test_suite.h"

#include "build/build_config.h"

#if defined(USE_AURA)
#include <memory>

namespace aura {
class Env;
}
#endif

namespace views {

class ViewsTestSuite : public base::TestSuite {};

}  // namespace views

#endif  // UI_VIEWS_VIEWS_TEST_SUITE_H_