aboutsummaryrefslogtreecommitdiffstats
path: root/util/generic/function_ut.cpp
diff options
context:
space:
mode:
authoryazevnul <yazevnul@yandex-team.ru>2022-02-10 16:46:46 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:46 +0300
commit8cbc307de0221f84c80c42dcbe07d40727537e2c (patch)
tree625d5a673015d1df891e051033e9fcde5c7be4e5 /util/generic/function_ut.cpp
parent30d1ef3941e0dc835be7609de5ebee66958f215a (diff)
downloadydb-8cbc307de0221f84c80c42dcbe07d40727537e2c.tar.gz
Restoring authorship annotation for <yazevnul@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'util/generic/function_ut.cpp')
-rw-r--r--util/generic/function_ut.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/util/generic/function_ut.cpp b/util/generic/function_ut.cpp
index 3880295a9f..730d2dc7de 100644
--- a/util/generic/function_ut.cpp
+++ b/util/generic/function_ut.cpp
@@ -3,7 +3,7 @@
#include <library/cpp/testing/unittest/registar.h>
-Y_UNIT_TEST_SUITE(TestFunctionSignature) {
+Y_UNIT_TEST_SUITE(TestFunctionSignature) {
int FF(double x) {
return (int)x;
}
@@ -18,15 +18,15 @@ Y_UNIT_TEST_SUITE(TestFunctionSignature) {
}
};
- Y_UNIT_TEST(TestPlainFunc) {
+ Y_UNIT_TEST(TestPlainFunc) {
UNIT_ASSERT_TYPES_EQUAL(TFunctionSignature<decltype(FF)>, decltype(FF));
}
- Y_UNIT_TEST(TestMethod) {
+ Y_UNIT_TEST(TestMethod) {
UNIT_ASSERT_TYPES_EQUAL(TFunctionSignature<decltype(&A::F)>, decltype(FF));
}
- Y_UNIT_TEST(TestLambda) {
+ Y_UNIT_TEST(TestLambda) {
auto f = [](double x) -> int {
return FF(x);
};
@@ -34,7 +34,7 @@ Y_UNIT_TEST_SUITE(TestFunctionSignature) {
UNIT_ASSERT_TYPES_EQUAL(TFunctionSignature<decltype(f)>, decltype(FF));
}
- Y_UNIT_TEST(TestFunction) {
+ Y_UNIT_TEST(TestFunction) {
std::function<int(double)> f(FF);
UNIT_ASSERT_TYPES_EQUAL(TFunctionSignature<decltype(f)>, decltype(FF));
@@ -51,15 +51,15 @@ Y_UNIT_TEST_SUITE(TestFunctionSignature) {
#undef FA
}
- Y_UNIT_TEST(TestTypeErasureTraits) {
+ Y_UNIT_TEST(TestTypeErasureTraits) {
TestCT<std::function<int(double, char)>>();
}
- Y_UNIT_TEST(TestPlainFunctionTraits) {
+ Y_UNIT_TEST(TestPlainFunctionTraits) {
TestCT<decltype(FFF)>();
}
- Y_UNIT_TEST(TestLambdaTraits) {
+ Y_UNIT_TEST(TestLambdaTraits) {
auto fff = [](double xx, char xxx) -> int {
return FFF(xx, xxx);
};