aboutsummaryrefslogtreecommitdiffstats
path: root/util/generic/list_ut.cpp
blob: 3d97b66b60554f87eda20d7ec0e8831540d77bff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "list.h"

#include <library/cpp/testing/unittest/registar.h>

Y_UNIT_TEST_SUITE(TYListSuite) { 
    Y_UNIT_TEST(TestInitializerList) { 
        TList<int> l = {3, 42, 6};
        TList<int> expected;
        expected.push_back(3);
        expected.push_back(42);
        expected.push_back(6);
        UNIT_ASSERT_VALUES_EQUAL(l, expected);
    }
}