File tree Expand file tree Collapse file tree 2 files changed +51
-0
lines changed
small_containers/unittests Expand file tree Collapse file tree 2 files changed +51
-0
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ if (YDB_SDK_TESTS)
3
3
add_subdirectory (containers/unittests )
4
4
add_subdirectory (memory/unittests )
5
5
add_subdirectory (misc/unittests )
6
+ add_subdirectory (small_containers/unittests )
6
7
endif ()
7
8
8
9
_ydb_sdk_add_library (yt-assert )
Original file line number Diff line number Diff line change
1
+ add_ydb_test (NAME yt-small_containers-compact_flat_map_ut GTEST
2
+ SOURCES
3
+ compact_flat_map_ut.cpp
4
+ LINK_LIBRARIES
5
+ yt-small_containers
6
+ GTest::gtest_main
7
+ LABELS
8
+ unit
9
+ )
10
+
11
+ add_ydb_test (NAME yt-small_containers-compact_heap_ut GTEST
12
+ SOURCES
13
+ compact_heap_ut.cpp
14
+ LINK_LIBRARIES
15
+ yt-small_containers
16
+ GTest::gtest_main
17
+ LABELS
18
+ unit
19
+ )
20
+
21
+ add_ydb_test (NAME yt-small_containers-compact_queue_ut GTEST
22
+ SOURCES
23
+ compact_queue_ut.cpp
24
+ LINK_LIBRARIES
25
+ yt-small_containers
26
+ GTest::gtest_main
27
+ LABELS
28
+ unit
29
+ )
30
+
31
+ add_ydb_test (NAME yt-small_containers-compact_set_ut GTEST
32
+ SOURCES
33
+ compact_set_ut.cpp
34
+ LINK_LIBRARIES
35
+ yt-small_containers
36
+ GTest::gtest_main
37
+ LABELS
38
+ unit
39
+ )
40
+
41
+ add_ydb_test (NAME yt-small_containers-compact_vector_ut GTEST
42
+ SOURCES
43
+ compact_vector_ut.cpp
44
+ LINK_LIBRARIES
45
+ yt-small_containers
46
+ GTest::gtest_main
47
+ GTest::gmock
48
+ LABELS
49
+ unit
50
+ )
You can’t perform that action at this time.
0 commit comments