mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2025-01-03 16:54:22 +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());
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|