diff options
author | stanly <stanly@yandex-team.ru> | 2022-02-10 16:46:49 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:49 +0300 |
commit | 6170310e8721e225f64ddabf7a7358253d7a1249 (patch) | |
tree | 49e222ea1c5804306084bb3ae065bb702625360f /util/generic/stack_ut.cpp | |
parent | cde218e65dfef5ce03a48d641fd8f7913cf17b2d (diff) | |
download | ydb-6170310e8721e225f64ddabf7a7358253d7a1249.tar.gz |
Restoring authorship annotation for <stanly@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'util/generic/stack_ut.cpp')
-rw-r--r-- | util/generic/stack_ut.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/util/generic/stack_ut.cpp b/util/generic/stack_ut.cpp index d60115caad..248127d326 100644 --- a/util/generic/stack_ut.cpp +++ b/util/generic/stack_ut.cpp @@ -1,16 +1,16 @@ -#include "stack.h" - +#include "stack.h" + #include <library/cpp/testing/unittest/registar.h> - + Y_UNIT_TEST_SUITE(TYStackTest) { Y_UNIT_TEST(ExplicitBool) { TStack<int> s; - - UNIT_ASSERT(!s); + + UNIT_ASSERT(!s); UNIT_ASSERT(s.empty()); - s.push(100); - s.push(200); + s.push(100); + s.push(200); UNIT_ASSERT(s); - UNIT_ASSERT(!s.empty()); - } -} + UNIT_ASSERT(!s.empty()); + } +} |