12 lines
232 B
C++
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);
|
|
}
|