// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "ui/gl/gl_display_manager.h" #include "testing/gtest/include/gtest/gtest.h" namespace gl { class GLDisplayManagerEGLTest : public testing::Test { … }; TEST_F(GLDisplayManagerEGLTest, SingleGPU) { … } TEST_F(GLDisplayManagerEGLTest, DualGPUs) { … } TEST_F(GLDisplayManagerEGLTest, RemoveDefaultGPU) { … } TEST_F(GLDisplayManagerEGLTest, RemoveNonDefaultGPU) { … } TEST_F(GLDisplayManagerEGLTest, NoSetUp) { … } } // namespace gl