Skip to content

Commit 8edc7df

Browse files
committed
Add tests for library/cpp/yt/yson_string into listfile (#210)
1 parent 7826b0d commit 8edc7df

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

library/cpp/yt/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ if (YDB_SDK_TESTS)
55
add_subdirectory(misc/unittests)
66
add_subdirectory(small_containers/unittests)
77
add_subdirectory(string/unittests)
8+
add_subdirectory(yson_string/unittests)
89
endif()
910

1011
_ydb_sdk_add_library(yt-assert)
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#[=[
2+
TODO: missing `library/cpp/testing/gtest_extensions`
3+
add_ydb_test(NAME yt-yson_string-convert_ut GTEST
4+
SOURCES
5+
convert_ut.cpp
6+
LINK_LIBRARIES
7+
yt-yson_string
8+
GTest::gtest_main
9+
LABELS
10+
unit
11+
)
12+
#]=]
13+
add_ydb_test(NAME yt-yson_string-saveload_ut GTEST
14+
SOURCES
15+
saveload_ut.cpp
16+
LINK_LIBRARIES
17+
yt-yson_string
18+
GTest::gtest_main
19+
LABELS
20+
unit
21+
)

0 commit comments

Comments
 (0)