diff options
author | alexv-smirnov <alex@ydb.tech> | 2023-06-13 11:05:01 +0300 |
---|---|---|
committer | alexv-smirnov <alex@ydb.tech> | 2023-06-13 11:05:01 +0300 |
commit | bf0f13dd39ee3e65092ba3572bb5b1fcd125dcd0 (patch) | |
tree | 1d1df72c0541a59a81439842f46d95396d3e7189 /library/cpp/testing/gtest | |
parent | 8bfdfa9a9bd19bddbc58d888e180fbd1218681be (diff) | |
download | ydb-bf0f13dd39ee3e65092ba3572bb5b1fcd125dcd0.tar.gz |
add ymake export to ydb
Diffstat (limited to 'library/cpp/testing/gtest')
-rw-r--r-- | library/cpp/testing/gtest/ut/ya.make | 15 | ||||
-rw-r--r-- | library/cpp/testing/gtest/ya.make | 22 |
2 files changed, 37 insertions, 0 deletions
diff --git a/library/cpp/testing/gtest/ut/ya.make b/library/cpp/testing/gtest/ut/ya.make new file mode 100644 index 0000000000..d06bbefd49 --- /dev/null +++ b/library/cpp/testing/gtest/ut/ya.make @@ -0,0 +1,15 @@ +GTEST() +SRCS( + matchers_ut.cpp + ut.cpp +) + +DATA( + arcadia/library/cpp/testing/gtest/ut/golden +) + +PEERDIR( + library/cpp/testing/hook +) + +END() diff --git a/library/cpp/testing/gtest/ya.make b/library/cpp/testing/gtest/ya.make new file mode 100644 index 0000000000..74beb1a051 --- /dev/null +++ b/library/cpp/testing/gtest/ya.make @@ -0,0 +1,22 @@ +LIBRARY() + +PROVIDES(test_framework) + +SRCS( + gtest.cpp + main.cpp + matchers.cpp +) + +PEERDIR( + contrib/restricted/googletest/googlemock + contrib/restricted/googletest/googletest + library/cpp/string_utils/relaxed_escaper + library/cpp/testing/common + library/cpp/testing/gtest_extensions + library/cpp/testing/hook +) + +END() + +RECURSE_FOR_TESTS(ut) |