aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/messagebus/nondestroying_holder_ut.cpp
blob: 02a417a8febe7c8eb5e9e011535b48eb600afa49 (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);
    }
}