mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-29 06:15:24 +00:00
17 lines
202 B
C++
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());
|
|
}
|
|
|
|
|
|
}
|