aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/testing/gtest_extensions/pretty_printers.h
diff options
context:
space:
mode:
authoramatanhead <amatanhead@yandex-team.ru>2022-02-10 16:50:04 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:50:04 +0300
commitb6f3a80f7c2c8b7dbb0c01b056fdc1fd8cd820e9 (patch)
tree5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp/testing/gtest_extensions/pretty_printers.h
parent8879605a63ac17539be5b3bd41b529791f4d4b02 (diff)
downloadydb-b6f3a80f7c2c8b7dbb0c01b056fdc1fd8cd820e9.tar.gz
Restoring authorship annotation for <amatanhead@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/testing/gtest_extensions/pretty_printers.h')
-rw-r--r--library/cpp/testing/gtest_extensions/pretty_printers.h144
1 files changed, 72 insertions, 72 deletions
diff --git a/library/cpp/testing/gtest_extensions/pretty_printers.h b/library/cpp/testing/gtest_extensions/pretty_printers.h
index 28e51700f6..14d8284446 100644
--- a/library/cpp/testing/gtest_extensions/pretty_printers.h
+++ b/library/cpp/testing/gtest_extensions/pretty_printers.h
@@ -1,84 +1,84 @@
-#pragma once
-
-#include <util/generic/string.h>
-#include <util/generic/strbuf.h>
-#include <util/generic/maybe.h>
-#include <util/generic/variant.h>
-#include <util/stream/output.h>
-#include <util/stream/str.h>
-#include <util/datetime/base.h>
-
+#pragma once
+
+#include <util/generic/string.h>
+#include <util/generic/strbuf.h>
+#include <util/generic/maybe.h>
+#include <util/generic/variant.h>
+#include <util/stream/output.h>
+#include <util/stream/str.h>
+#include <util/datetime/base.h>
+
#include <gtest/gtest.h>
#include <gmock/gmock.h>
-
-/**
- * Automatically define GTest pretty printer for type that can print itself to util's `IOutputStream`.
- *
- * Note that this macro should be instantiated in the same namespace as the type you're printing, otherwise
- * ADL will not find it.
- *
- * Example:
- *
- * We define a struct `TMyContainer` and an output operator that works with `IOutputStream`. We then use this macro
- * to automatically define GTest pretty printer:
- *
- * ```
- * namespace NMy {
- * struct TMyContainer {
- * int x, y;
- * };
- * }
- *
- * template <>
- * inline void Out<NMy::TMyContainer>(IOutputStream& stream, TTypeTraits<NMy::TMyContainer>::TFuncParam value) {
- * stream << "{ x=" << value.x << ", y=" << value.y << " }";
- * }
- *
- * namespace NMy {
- * Y_GTEST_ARCADIA_PRINTER(TMyContainer)
- * }
- * ```
- */
+
+/**
+ * Automatically define GTest pretty printer for type that can print itself to util's `IOutputStream`.
+ *
+ * Note that this macro should be instantiated in the same namespace as the type you're printing, otherwise
+ * ADL will not find it.
+ *
+ * Example:
+ *
+ * We define a struct `TMyContainer` and an output operator that works with `IOutputStream`. We then use this macro
+ * to automatically define GTest pretty printer:
+ *
+ * ```
+ * namespace NMy {
+ * struct TMyContainer {
+ * int x, y;
+ * };
+ * }
+ *
+ * template <>
+ * inline void Out<NMy::TMyContainer>(IOutputStream& stream, TTypeTraits<NMy::TMyContainer>::TFuncParam value) {
+ * stream << "{ x=" << value.x << ", y=" << value.y << " }";
+ * }
+ *
+ * namespace NMy {
+ * Y_GTEST_ARCADIA_PRINTER(TMyContainer)
+ * }
+ * ```
+ */
#define Y_GTEST_ARCADIA_PRINTER(T) \
void PrintTo(const T& value, std::ostream* stream) { \
- ::TString ss; \
- ::TStringOutput s{ss}; \
- s << value; \
- *stream << ss; \
- }
-
-
+ ::TString ss; \
+ ::TStringOutput s{ss}; \
+ s << value; \
+ *stream << ss; \
+ }
+
+
template <typename TCharType, typename TCharTraits>
void PrintTo(const TBasicString<TCharType, TCharTraits>& value, std::ostream* stream) {
- *stream << value.Quote().c_str();
-}
-
+ *stream << value.Quote().c_str();
+}
+
template <typename TCharType, typename TCharTraits>
void PrintTo(TBasicStringBuf<TCharType, TCharTraits> value, std::ostream* stream) {
*stream << TBasicString<TCharType, TCharTraits>{value}.Quote().c_str();
-}
-
-template <typename T, typename P>
+}
+
+template <typename T, typename P>
void PrintTo(const TMaybe<T, P>& value, std::ostream* stream) {
- if (value.Defined()) {
- ::testing::internal::UniversalPrint(value.GetRef(), stream);
- } else {
- *stream << "nothing";
- }
-}
-
+ if (value.Defined()) {
+ ::testing::internal::UniversalPrint(value.GetRef(), stream);
+ } else {
+ *stream << "nothing";
+ }
+}
+
inline void PrintTo(TNothing /* value */, std::ostream* stream) {
- *stream << "nothing";
-}
-
+ *stream << "nothing";
+}
+
inline void PrintTo(std::monostate /* value */, std::ostream* stream) {
- *stream << "monostate";
-}
-
-inline void PrintTo(TInstant value, std::ostream* stream) {
- *stream << value.ToString();
-}
-
-inline void PrintTo(TDuration value, std::ostream* stream) {
- *stream << value.ToString();
-}
+ *stream << "monostate";
+}
+
+inline void PrintTo(TInstant value, std::ostream* stream) {
+ *stream << value.ToString();
+}
+
+inline void PrintTo(TDuration value, std::ostream* stream) {
+ *stream << value.ToString();
+}