// // 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. // // Unit tests for ResourceManager. // #include <gmock/gmock.h> #include <gtest/gtest.h> #include "libANGLE/ResourceManager.h" #include "tests/angle_unittests_utils.h" usingnamespacerx; usingnamespacegl; _; namespace { class ResourceManagerTest : public testing::Test { … }; TEST_F(ResourceManagerTest, ReallocateBoundTexture) { … } TEST_F(ResourceManagerTest, ReallocateBoundBuffer) { … } TEST_F(ResourceManagerTest, ReallocateBoundRenderbuffer) { … } } // anonymous namespace