blob: 062e1f6d7c240b0c2e4f364e9fcc4dd7a82c84a8 [file] [log] [blame]
// 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_COMPOSITOR_TEST_TEST_SUITE_H_
#define UI_COMPOSITOR_TEST_TEST_SUITE_H_
#include "base/compiler_specific.h"
#include "base/macros.h"
#include "base/test/test_suite.h"
namespace ui {
namespace test {
class CompositorTestSuite : public base::TestSuite {
public:
CompositorTestSuite(int argc, char** argv);
~CompositorTestSuite() override;
protected:
// Overridden from base::TestSuite:
void Initialize() override;
private:
DISALLOW_COPY_AND_ASSIGN(CompositorTestSuite);
};
} // namespace test
} // namespace ui
#endif // UI_COMPOSITOR_TEST_TEST_SUITE_H_