chromium/third_party/angle/src/tests/egl_tests/EGLQueryContextTest.cpp

//
// Copyright 2015 The ANGLE Project 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 <gtest/gtest.h>

#include "test_utils/ANGLETest.h"

usingnamespaceangle;

class EGLQueryContextTest : public ANGLETest<>
{};

TEST_P(EGLQueryContextTest, GetConfigID)
{}

TEST_P(EGLQueryContextTest, GetClientType)
{}

TEST_P(EGLQueryContextTest, GetClientVersion)
{}

// Tests querying the client major version from the context.
TEST_P(EGLQueryContextTest, GetClientMajorVersion)
{}

// Tests querying the client minor version from the context.
TEST_P(EGLQueryContextTest, GetClientMinorVersion)
{}

TEST_P(EGLQueryContextTest, GetRenderBufferNoSurface)
{}

TEST_P(EGLQueryContextTest, GetRenderBufferBoundSurface)
{}

TEST_P(EGLQueryContextTest, BadDisplay)
{}

TEST_P(EGLQueryContextTest, NotInitialized)
{}

TEST_P(EGLQueryContextTest, BadContext)
{}

TEST_P(EGLQueryContextTest, BadAttribute)
{}

// Test that EGL_OPENGL_API is supported only if angle_enable_gl_desktop_frontend is enabled
TEST_P(EGLQueryContextTest, DesktopGlApi)
{}

GTEST_ALLOW_UNINSTANTIATED_PARAMETERIZED_TEST();
ANGLE_INSTANTIATE_TEST();