blob: a3aa9d9c26e89e6286443d24eedca8606f72a431 [file] [log] [blame]
// Copyright 2018 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.
#include "components/exo/test/exo_test_suite_aura.h"
#include "ui/gl/test/gl_surface_test_support.h"
namespace exo {
namespace test {
ExoTestSuiteAura::ExoTestSuiteAura(int argc, char** argv)
: base::TestSuite(argc, argv) {}
ExoTestSuiteAura::~ExoTestSuiteAura() = default;
void ExoTestSuiteAura::Initialize() {
base::TestSuite::Initialize();
gl::GLSurfaceTestSupport::InitializeOneOff();
}
void ExoTestSuiteAura::Shutdown() {
gl::GLSurfaceTestSupport::ShutdownGL();
base::TestSuite::Shutdown();
}
} // namespace test
} // namespace exo