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

#include "nondestroying_holder.h"

Y_UNIT_TEST_SUITE(TNonDestroyingHolder) {
    Y_UNIT_TEST(ToAutoPtr) {
        TNonDestroyingHolder<int> h(new int(11));
        TAutoPtr<int> i(h);
        UNIT_ASSERT_VALUES_EQUAL(11, *i);
        UNIT_ASSERT(!h);
    }
}