summaryrefslogtreecommitdiff
path: root/test/style
diff options
context:
space:
mode:
Diffstat (limited to 'test/style')
-rw-r--r--test/style/conversion/layer.test.cpp6
-rw-r--r--test/style/style_layer.test.cpp10
2 files changed, 8 insertions, 8 deletions
diff --git a/test/style/conversion/layer.test.cpp b/test/style/conversion/layer.test.cpp
index 33cd329999..18754a09fb 100644
--- a/test/style/conversion/layer.test.cpp
+++ b/test/style/conversion/layer.test.cpp
@@ -25,9 +25,9 @@ TEST(StyleConversion, LayerTransition) {
}
}
})JSON");
-
- ASSERT_EQ(400ms, *layer->as<BackgroundLayer>()->impl().paint
+ ASSERT_EQ(LayerType::Background, layer->getType());
+ ASSERT_EQ(400ms, *static_cast<BackgroundLayer*>(layer.get())->impl().paint
.get<BackgroundColor>().options.duration);
- ASSERT_EQ(500ms, *layer->as<BackgroundLayer>()->impl().paint
+ ASSERT_EQ(500ms, *static_cast<BackgroundLayer*>(layer.get())->impl().paint
.get<BackgroundColor>().options.delay);
}
diff --git a/test/style/style_layer.test.cpp b/test/style/style_layer.test.cpp
index 61516a2de9..5ea16b7422 100644
--- a/test/style/style_layer.test.cpp
+++ b/test/style/style_layer.test.cpp
@@ -54,7 +54,7 @@ const auto duration = 1.0f;
TEST(Layer, BackgroundProperties) {
auto layer = std::make_unique<BackgroundLayer>("background");
- EXPECT_TRUE(layer->is<BackgroundLayer>());
+ ASSERT_EQ(LayerType::Background, layer->getType());
// Paint properties
@@ -70,7 +70,7 @@ TEST(Layer, BackgroundProperties) {
TEST(Layer, CircleProperties) {
auto layer = std::make_unique<CircleLayer>("circle", "source");
- EXPECT_TRUE(layer->is<CircleLayer>());
+ ASSERT_EQ(LayerType::Circle, layer->getType());
// Paint properties
@@ -95,7 +95,7 @@ TEST(Layer, CircleProperties) {
TEST(Layer, FillProperties) {
auto layer = std::make_unique<FillLayer>("fill", "source");
- EXPECT_TRUE(layer->is<FillLayer>());
+ ASSERT_EQ(LayerType::Fill, layer->getType());
// Paint properties
@@ -123,7 +123,7 @@ TEST(Layer, FillProperties) {
TEST(Layer, LineProperties) {
auto layer = std::make_unique<LineLayer>("line", "source");
- EXPECT_TRUE(layer->is<LineLayer>());
+ ASSERT_EQ(LayerType::Line, layer->getType());
// Layout properties
@@ -174,7 +174,7 @@ TEST(Layer, LineProperties) {
TEST(Layer, RasterProperties) {
auto layer = std::make_unique<RasterLayer>("raster", "source");
- EXPECT_TRUE(layer->is<RasterLayer>());
+ ASSERT_EQ(LayerType::Raster, layer->getType());
// Paint properties