blob: d56724ccc14ce8b7c50a0ec1093d52b3b4cddee6 [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_AURA_TEST_AURA_MUS_TEST_BASE_H_
#define UI_AURA_TEST_AURA_MUS_TEST_BASE_H_
#include "base/macros.h"
#include "ui/aura/test/aura_test_base.h"
namespace aura {
namespace test {
// A base class for aura unit tests that use mus. You can also use AuraTestBase
// directly and call EnableMusWithTestWindowTree() before SetUp(). Prefer this
// if you don't need to subclass and want to target mus.
class AuraMusClientTestBase : public AuraTestBase {
public:
AuraMusClientTestBase();
~AuraMusClientTestBase() override;
// AuraTestBase:
void SetUp() override;
private:
DISALLOW_COPY_AND_ASSIGN(AuraMusClientTestBase);
};
} // namespace test
} // namespace aura
#endif // UI_AURA_TEST_AURA_MUS_TEST_BASE_H_