aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/testing/unittest/utmain.cpp
diff options
context:
space:
mode:
authorrnefyodov <rnefyodov@yandex-team.ru>2022-02-10 16:47:17 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:47:17 +0300
commitc22320e8c4f3d7be38c504706f137034e91d31e6 (patch)
tree35cc6c382a1bd8cb932449ffa734056fcc73e6d4 /library/cpp/testing/unittest/utmain.cpp
parent93e9e4639b6ee2afbdf45cf3927cea6d340e19b0 (diff)
downloadydb-c22320e8c4f3d7be38c504706f137034e91d31e6.tar.gz
Restoring authorship annotation for <rnefyodov@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/testing/unittest/utmain.cpp')
-rw-r--r--library/cpp/testing/unittest/utmain.cpp26
1 files changed, 13 insertions, 13 deletions
diff --git a/library/cpp/testing/unittest/utmain.cpp b/library/cpp/testing/unittest/utmain.cpp
index 305bc6b40f..55564fd3d3 100644
--- a/library/cpp/testing/unittest/utmain.cpp
+++ b/library/cpp/testing/unittest/utmain.cpp
@@ -542,28 +542,28 @@ public:
TEnumeratingProcessor(bool verbose, IOutputStream& stream) noexcept
: Verbose_(verbose)
, Stream_(stream)
- {
- }
-
+ {
+ }
+
~TEnumeratingProcessor() override {
}
bool CheckAccess(TString name, size_t /*num*/) override {
- if (Verbose_) {
- return true;
- } else {
+ if (Verbose_) {
+ return true;
+ } else {
Stream_ << name << "\n";
- return false;
- }
- }
-
+ return false;
+ }
+ }
+
bool CheckAccessTest(TString suite, const char* name) override {
Stream_ << suite << "::" << name << "\n";
return false;
}
-
-private:
- bool Verbose_;
+
+private:
+ bool Verbose_;
IOutputStream& Stream_;
};