aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/messagebus/latch_ut.cpp
blob: 51a0a8baf15f1d3cbfa245d7048fc4e0de6b7a1e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <library/cpp/testing/unittest/registar.h>

#include "latch.h"

Y_UNIT_TEST_SUITE(TLatch) { 
    Y_UNIT_TEST(Simple) { 
        TLatch latch;
        UNIT_ASSERT(latch.TryWait());
        latch.Lock();
        UNIT_ASSERT(!latch.TryWait());
        latch.Lock();
        latch.Lock();
        UNIT_ASSERT(!latch.TryWait());
        latch.Unlock();
        UNIT_ASSERT(latch.TryWait());
        latch.Unlock();
        latch.Unlock();
        UNIT_ASSERT(latch.TryWait());
    }
}