From 7eb8025b87530c60c0c7bb4db1362420ff5914b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Paczos?= Date: Fri, 10 Apr 2020 17:47:42 +0200 Subject: [PATCH] [core] add regression test for #16391 --- test/style/style.test.cpp | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/test/style/style.test.cpp b/test/style/style.test.cpp index 2c9cdb57925..c3e31c2d2b8 100644 --- a/test/style/style.test.cpp +++ b/test/style/style.test.cpp @@ -137,6 +137,23 @@ TEST(Style, AddRemoveImage) { style.removeImage("one"); style.removeImage("two"); + EXPECT_TRUE(!!style.getImage("three")); + EXPECT_FALSE(!!style.getImage("two")); + EXPECT_FALSE(!!style.getImage("four")); +} + +TEST(Style, AddRemoveRemoveImage) { + util::RunLoop loop; + auto fileSource = std::make_shared(); + Style::Impl style{fileSource, 1.0}; + style.addImage(std::make_unique("one", PremultipliedImage({16, 16}), 2)); + style.addImage(std::make_unique("two", PremultipliedImage({16, 16}), 2)); + style.addImage(std::make_unique("three", PremultipliedImage({16, 16}), 2)); + + style.removeImage("one"); + style.removeImage("two"); + style.removeImage("two"); + EXPECT_TRUE(!!style.getImage("three")); EXPECT_FALSE(!!style.getImage("two")); EXPECT_FALSE(!!style.getImage("four"));