File tree Expand file tree Collapse file tree 2 files changed +63
-0
lines changed Expand file tree Collapse file tree 2 files changed +63
-0
lines changed Original file line number Diff line number Diff line change
1
+ if (YDB_SDK_TESTS )
2
+ add_subdirectory (ut )
3
+ endif ()
4
+
1
5
_ydb_sdk_add_library (iterator )
2
6
3
7
target_link_libraries (iterator PUBLIC
Original file line number Diff line number Diff line change
1
+ add_ydb_test (NAME iterator-filtering_ut GTEST
2
+ SOURCES
3
+ filtering_ut.cpp
4
+ LINK_LIBRARIES
5
+ iterator
6
+ GTest::gtest_main
7
+ LABELS
8
+ unit
9
+ )
10
+
11
+ add_ydb_test (NAME iterator-functools_ut GTEST
12
+ SOURCES
13
+ functools_ut.cpp
14
+ LINK_LIBRARIES
15
+ iterator
16
+ GTest::gtest_main
17
+ LABELS
18
+ unit
19
+ )
20
+
21
+ add_ydb_test (NAME iterator-iterate_keys_ut GTEST
22
+ SOURCES
23
+ iterate_keys_ut.cpp
24
+ LINK_LIBRARIES
25
+ iterator
26
+ GTest::gtest_main
27
+ LABELS
28
+ unit
29
+ )
30
+
31
+ add_ydb_test (NAME iterator-iterate_values_ut GTEST
32
+ SOURCES
33
+ iterate_values_ut.cpp
34
+ LINK_LIBRARIES
35
+ iterator
36
+ GTest::gtest_main
37
+ LABELS
38
+ unit
39
+ )
40
+
41
+ add_ydb_test (NAME iterator-mapped_ut GTEST
42
+ SOURCES
43
+ mapped_ut.cpp
44
+ LINK_LIBRARIES
45
+ iterator
46
+ GTest::gtest_main
47
+ LABELS
48
+ unit
49
+ )
50
+
51
+ add_ydb_test (NAME iterator-zip_ut GTEST
52
+ SOURCES
53
+ zip_ut.cpp
54
+ LINK_LIBRARIES
55
+ iterator
56
+ GTest::gtest_main
57
+ LABELS
58
+ unit
59
+ )
You can’t perform that action at this time.
0 commit comments