#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/skia/include/core/SkBitmap.h"
#include "third_party/skia/include/core/SkImageInfo.h"
#include "ui/gfx/geometry/size.h"
#include "ui/gfx/image/image.h"
#include "ui/gfx/image/image_family.h"
#include "ui/gfx/image/image_skia.h"
#include "ui/gfx/image/image_unittest_util.h"
namespace {
gt;
#define EXPECT_IMAGE_NON_NULL_AND_SIZE(image, expected_width, expected_height) …
#define EXPECT_IMAGE_SIZE(image, expected_width, expected_height) …
class ImageFamilyTest : public testing::Test { … };
TEST_F(ImageFamilyTest, Clear) { … }
TEST_F(ImageFamilyTest, MoveConstructor) { … }
TEST_F(ImageFamilyTest, MoveAssignment) { … }
TEST_F(ImageFamilyTest, Clone) { … }
TEST_F(ImageFamilyTest, Iteration) { … }
TEST_F(ImageFamilyTest, GetBest) { … }
TEST_F(ImageFamilyTest, CreateExact) { … }
TEST_F(ImageFamilyTest, ZeroWidthAndHeight) { … }
}