// // 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. // // Image_unittest.cpp : Unittets of the Image and ImageSibling classes. #include "gmock/gmock.h" #include "gtest/gtest.h" #include "libANGLE/Image.h" #include "libANGLE/Renderbuffer.h" #include "libANGLE/Texture.h" #include "libANGLE/renderer/ImageImpl_mock.h" #include "libANGLE/renderer/RenderbufferImpl_mock.h" #include "libANGLE/renderer/TextureImpl_mock.h" #include "tests/angle_unittests_utils.h" _; NiceMock; Return; namespace angle { ACTION(CreateMockImageImpl) { … } // Verify ref counts are maintained between images and their siblings when objects are deleted TEST(ImageTest, RefCounting) { … } // Verify that respecifying textures releases references to the Image. TEST(ImageTest, RespecificationReleasesReferences) { … } } // namespace angle