mkvtoolnix/tests/unit/propedit/chapter_target.cpp

17 lines
202 B
C++

#include "common/common_pch.h"
#include "propedit/chapter_target.h"
#include "gtest/gtest.h"
namespace {
TEST(ChapterTarget, Basics) {
chapter_target_c ct;
EXPECT_TRUE(ct.has_changes());
}
}