utc: increase coverage up #1

This commit is contained in:
Michal Maciola 2021-08-18 17:07:51 +02:00 committed by Hermet Park
parent 3a05ae4c01
commit d82b088b7a
2 changed files with 5 additions and 1 deletions

View file

@ -34,7 +34,7 @@
<stop offset="100%" stop-color="#252f35"/> <stop offset="100%" stop-color="#252f35"/>
</linearGradient> </linearGradient>
<radialGradient id="grad2" cx="100%" cy="0.25" r="1.5" gradientTransform="scale(1)"> <radialGradient id="grad2" cx="100%" cy="0.25" r="1.5" gradientTransform="scale(1)">
<stop offset="0%" stop-color="#50585d"/> <stop offset="0%" stop-color="#252f35" stop-opacity="80%"/>
<stop offset="100%" stop-color="#252f35"/> <stop offset="100%" stop-color="#252f35"/>
</radialGradient> </radialGradient>
<mask id="vg"> <mask id="vg">

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

View file

@ -217,6 +217,8 @@ TEST_CASE("Load SVG file and render", "[tvgPicture]")
REQUIRE(picture->load(TEST_DIR"/tag.svg") == Result::Success); REQUIRE(picture->load(TEST_DIR"/tag.svg") == Result::Success);
REQUIRE(canvas->push(move(picture)) == Result::Success); REQUIRE(canvas->push(move(picture)) == Result::Success);
REQUIRE(canvas->draw() == Result::Success);
REQUIRE(canvas->sync() == Result::Success);
REQUIRE(Initializer::term(CanvasEngine::Sw) == Result::Success); REQUIRE(Initializer::term(CanvasEngine::Sw) == Result::Success);
} }
@ -235,6 +237,8 @@ TEST_CASE("Load PNG file and render", "[tvgPicture]")
REQUIRE(picture); REQUIRE(picture);
REQUIRE(picture->load(TEST_DIR"/test.png") == Result::Success); REQUIRE(picture->load(TEST_DIR"/test.png") == Result::Success);
REQUIRE(picture->opacity(192) == Result::Success);
REQUIRE(picture->scale(5.0) == Result::Success);
REQUIRE(canvas->push(move(picture)) == Result::Success); REQUIRE(canvas->push(move(picture)) == Result::Success);