aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/threading/chunk_queue
diff options
context:
space:
mode:
authoryazevnul <yazevnul@yandex-team.ru>2022-02-10 16:46:48 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:48 +0300
commit9abfb1a53b7f7b791444d1378e645d8fad9b06ed (patch)
tree49e222ea1c5804306084bb3ae065bb702625360f /library/cpp/threading/chunk_queue
parent8cbc307de0221f84c80c42dcbe07d40727537e2c (diff)
downloadydb-9abfb1a53b7f7b791444d1378e645d8fad9b06ed.tar.gz
Restoring authorship annotation for <yazevnul@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/threading/chunk_queue')
-rw-r--r--library/cpp/threading/chunk_queue/queue_ut.cpp32
1 files changed, 16 insertions, 16 deletions
diff --git a/library/cpp/threading/chunk_queue/queue_ut.cpp b/library/cpp/threading/chunk_queue/queue_ut.cpp
index 3913bd2545..8cb36d8dd1 100644
--- a/library/cpp/threading/chunk_queue/queue_ut.cpp
+++ b/library/cpp/threading/chunk_queue/queue_ut.cpp
@@ -7,8 +7,8 @@
namespace NThreading {
////////////////////////////////////////////////////////////////////////////////
- Y_UNIT_TEST_SUITE(TOneOneQueueTest){
- Y_UNIT_TEST(ShouldBeEmptyAtStart){
+ Y_UNIT_TEST_SUITE(TOneOneQueueTest){
+ Y_UNIT_TEST(ShouldBeEmptyAtStart){
TOneOneQueue<int> queue;
int result = 0;
@@ -16,7 +16,7 @@ namespace NThreading {
UNIT_ASSERT(!queue.Dequeue(result));
}
-Y_UNIT_TEST(ShouldReturnEntries) {
+Y_UNIT_TEST(ShouldReturnEntries) {
TOneOneQueue<int> queue;
queue.Enqueue(1);
queue.Enqueue(2);
@@ -39,7 +39,7 @@ Y_UNIT_TEST(ShouldReturnEntries) {
UNIT_ASSERT(!queue.Dequeue(result));
}
-Y_UNIT_TEST(ShouldStoreMultipleChunks) {
+Y_UNIT_TEST(ShouldStoreMultipleChunks) {
TOneOneQueue<int, 100> queue;
for (int i = 0; i < 1000; ++i) {
queue.Enqueue(i);
@@ -57,8 +57,8 @@ Y_UNIT_TEST(ShouldStoreMultipleChunks) {
////////////////////////////////////////////////////////////////////////////////
-Y_UNIT_TEST_SUITE(TManyOneQueueTest){
- Y_UNIT_TEST(ShouldBeEmptyAtStart){
+Y_UNIT_TEST_SUITE(TManyOneQueueTest){
+ Y_UNIT_TEST(ShouldBeEmptyAtStart){
TManyOneQueue<int> queue;
int result;
@@ -66,7 +66,7 @@ UNIT_ASSERT(queue.IsEmpty());
UNIT_ASSERT(!queue.Dequeue(result));
}
-Y_UNIT_TEST(ShouldReturnEntries) {
+Y_UNIT_TEST(ShouldReturnEntries) {
TManyOneQueue<int> queue;
queue.Enqueue(1);
queue.Enqueue(2);
@@ -93,8 +93,8 @@ Y_UNIT_TEST(ShouldReturnEntries) {
////////////////////////////////////////////////////////////////////////////////
-Y_UNIT_TEST_SUITE(TManyManyQueueTest){
- Y_UNIT_TEST(ShouldBeEmptyAtStart){
+Y_UNIT_TEST_SUITE(TManyManyQueueTest){
+ Y_UNIT_TEST(ShouldBeEmptyAtStart){
TManyManyQueue<int> queue;
int result = 0;
@@ -102,7 +102,7 @@ UNIT_ASSERT(queue.IsEmpty());
UNIT_ASSERT(!queue.Dequeue(result));
}
-Y_UNIT_TEST(ShouldReturnEntries) {
+Y_UNIT_TEST(ShouldReturnEntries) {
TManyManyQueue<int> queue;
queue.Enqueue(1);
queue.Enqueue(2);
@@ -129,8 +129,8 @@ Y_UNIT_TEST(ShouldReturnEntries) {
////////////////////////////////////////////////////////////////////////////////
-Y_UNIT_TEST_SUITE(TRelaxedManyOneQueueTest){
- Y_UNIT_TEST(ShouldBeEmptyAtStart){
+Y_UNIT_TEST_SUITE(TRelaxedManyOneQueueTest){
+ Y_UNIT_TEST(ShouldBeEmptyAtStart){
TRelaxedManyOneQueue<int> queue;
int result;
@@ -138,7 +138,7 @@ UNIT_ASSERT(queue.IsEmpty());
UNIT_ASSERT(!queue.Dequeue(result));
}
-Y_UNIT_TEST(ShouldReturnEntries) {
+Y_UNIT_TEST(ShouldReturnEntries) {
TSet<int> items = {1, 2, 3};
TRelaxedManyOneQueue<int> queue;
@@ -167,8 +167,8 @@ Y_UNIT_TEST(ShouldReturnEntries) {
////////////////////////////////////////////////////////////////////////////////
-Y_UNIT_TEST_SUITE(TRelaxedManyManyQueueTest){
- Y_UNIT_TEST(ShouldBeEmptyAtStart){
+Y_UNIT_TEST_SUITE(TRelaxedManyManyQueueTest){
+ Y_UNIT_TEST(ShouldBeEmptyAtStart){
TRelaxedManyManyQueue<int> queue;
int result = 0;
@@ -176,7 +176,7 @@ UNIT_ASSERT(queue.IsEmpty());
UNIT_ASSERT(!queue.Dequeue(result));
}
-Y_UNIT_TEST(ShouldReturnEntries) {
+Y_UNIT_TEST(ShouldReturnEntries) {
TSet<int> items = {1, 2, 3};
TRelaxedManyManyQueue<int> queue;