blob: 9e60ecf01b461d33546cbc723ee3bc94d26faad7 (
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);
}
}
|