aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/messagebus/actor/what_thread_does_guard_ut.cpp
blob: 82f1cf840eab004ac981edbfb88e91a3c37d2222 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <library/cpp/testing/unittest/registar.h> 

#include "what_thread_does_guard.h"

#include <util/system/mutex.h>

Y_UNIT_TEST_SUITE(WhatThreadDoesGuard) {
    Y_UNIT_TEST(Simple) {
        TMutex mutex;

        TWhatThreadDoesAcquireGuard<TMutex> guard(mutex, "acquiring my mutex");
    }
}