aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/messagebus/latch_ut.cpp
blob: 350e56a2456bce12bf2b64796592a30ee459e375 (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());
    }
}