init
Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
Close stale issues and PRs / stale (push) Has been cancelled

This commit is contained in:
allhaileris
2026-02-16 15:50:16 +03:00
commit afb81b8278
13816 changed files with 3689732 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
#include <gtest/gtest.h>
#include "rlottie_capi.h"
class AnimationCApiTest : public ::testing::Test {
public:
void SetUp()
{
animationInvalid = lottie_animation_from_file("wrong_file.json");
std::string filePath = DEMO_DIR;
filePath +="mask.json";
animation = lottie_animation_from_file(filePath.c_str());
}
void TearDown()
{
if (animation) lottie_animation_destroy(animation);
}
public:
Lottie_Animation *animationInvalid;
Lottie_Animation *animation;
};
TEST_F(AnimationCApiTest, loadFromFile_N) {
ASSERT_FALSE(animationInvalid);
}
TEST_F(AnimationCApiTest, loadFromFile) {
ASSERT_TRUE(animation);
ASSERT_EQ(lottie_animation_get_totalframe(animation), 30);
size_t width, height;
lottie_animation_get_size(animation, &width, &height);
ASSERT_EQ(width, 500);
ASSERT_EQ(height, 500);
}