Files
oak-editor/tests/gtest/codec_frame_test.cpp
T
2026-01-05 03:11:34 +08:00

12 lines
232 B
C++

#include <gtest/gtest.h>
#include "codec/frame.h"
TEST(CodecFrame, DefaultState)
{
olive::Frame frame;
EXPECT_EQ(frame.width(), 0);
EXPECT_EQ(frame.height(), 0);
EXPECT_EQ(frame.format(), olive::core::PixelFormat::INVALID);
}