mirror of
https://github.com/aseprite/aseprite.git
synced 2025-02-22 15:39:52 +00:00
Replace deprecated macro TYPED_TEST_CASE with TYPED_TEST_SUITE
This commit is contained in:
parent
c8c92499b2
commit
2367c8526b
@ -26,7 +26,7 @@ protected:
|
|||||||
};
|
};
|
||||||
|
|
||||||
typedef testing::Types<RgbTraits, GrayscaleTraits, IndexedTraits, BitmapTraits> ImageAllTraits;
|
typedef testing::Types<RgbTraits, GrayscaleTraits, IndexedTraits, BitmapTraits> ImageAllTraits;
|
||||||
TYPED_TEST_CASE(ImageAllTypes, ImageAllTraits);
|
TYPED_TEST_SUITE(ImageAllTypes, ImageAllTraits);
|
||||||
|
|
||||||
TYPED_TEST(ImageAllTypes, PutGetAndIterators)
|
TYPED_TEST(ImageAllTypes, PutGetAndIterators)
|
||||||
{
|
{
|
||||||
|
@ -32,7 +32,7 @@ protected:
|
|||||||
};
|
};
|
||||||
|
|
||||||
typedef testing::Types<RgbTraits, GrayscaleTraits, IndexedTraits> ImageAllTraits;
|
typedef testing::Types<RgbTraits, GrayscaleTraits, IndexedTraits> ImageAllTraits;
|
||||||
TYPED_TEST_CASE(RenderAllModes, ImageAllTraits);
|
TYPED_TEST_SUITE(RenderAllModes, ImageAllTraits);
|
||||||
|
|
||||||
// a b
|
// a b
|
||||||
// c d
|
// c d
|
||||||
|
Loading…
x
Reference in New Issue
Block a user