diff options
author | stupidhobbit <stupidhobbit@yandex-team.ru> | 2022-02-10 16:48:36 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:48:36 +0300 |
commit | 92b547f8e5dcf69e9f157ec3ea5e41537a941307 (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /util/generic/list_ut.pyx | |
parent | 59a705ed594098f9c3614b1e78d1b9bd1ced6667 (diff) | |
download | ydb-92b547f8e5dcf69e9f157ec3ea5e41537a941307.tar.gz |
Restoring authorship annotation for <stupidhobbit@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'util/generic/list_ut.pyx')
-rw-r--r-- | util/generic/list_ut.pyx | 62 |
1 files changed, 31 insertions, 31 deletions
diff --git a/util/generic/list_ut.pyx b/util/generic/list_ut.pyx index 6e8fba2530..129e5bc9b6 100644 --- a/util/generic/list_ut.pyx +++ b/util/generic/list_ut.pyx @@ -1,47 +1,47 @@ -from util.generic.list cimport TList +from util.generic.list cimport TList import unittest -from cython.operator cimport preincrement +from cython.operator cimport preincrement -class TestList(unittest.TestCase): +class TestList(unittest.TestCase): def test_ctor1(self): - cdef TList[int] tmp = TList[int]() + cdef TList[int] tmp = TList[int]() self.assertEqual(tmp.size(), 0) def test_ctor2(self): - cdef TList[int] tmp = TList[int](10, 42) + cdef TList[int] tmp = TList[int](10, 42) self.assertEqual(tmp.size(), 10) - self.assertEqual(tmp.front(), 42) + self.assertEqual(tmp.front(), 42) def test_ctor3(self): - cdef TList[int] tmp = TList[int](10, 42) - cdef TList[int] tmp2 = TList[int](tmp) + cdef TList[int] tmp = TList[int](10, 42) + cdef TList[int] tmp2 = TList[int](tmp) self.assertEqual(tmp2.size(), 10) - self.assertEqual(tmp2.front(), 42) + self.assertEqual(tmp2.front(), 42) def test_operator_assign(self): - cdef TList[int] tmp2 + cdef TList[int] tmp2 tmp2.push_back(1) tmp2.push_back(2) - cdef TList[int] tmp3 + cdef TList[int] tmp3 tmp3.push_back(1) tmp3.push_back(3) tmp3 = tmp2 def test_compare(self): - cdef TList[int] tmp1 + cdef TList[int] tmp1 tmp1.push_back(1) tmp1.push_back(2) - cdef TList[int] tmp2 + cdef TList[int] tmp2 tmp2.push_back(1) tmp2.push_back(2) - cdef TList[int] tmp3 + cdef TList[int] tmp3 tmp3.push_back(1) tmp3.push_back(3) @@ -55,7 +55,7 @@ class TestList(unittest.TestCase): self.assertTrue(tmp3 >= tmp1) def test_push_pop_back(self): - cdef TList[int] tmp + cdef TList[int] tmp self.assertEqual(tmp.size(), 0) tmp.push_back(42) @@ -74,22 +74,22 @@ class TestList(unittest.TestCase): self.assertEqual(tmp.size(), 0) def test_front(self): - cdef TList[int] tmp + cdef TList[int] tmp tmp.push_back(42) self.assertEqual(tmp.front(), 42) def test_empty(self): - cdef TList[int] tmp + cdef TList[int] tmp self.assertTrue(tmp.empty()) tmp.push_back(42) self.assertFalse(tmp.empty()) def test_max_size(self): - cdef TList[int] tmp + cdef TList[int] tmp self.assertTrue(tmp.max_size() > 0) - def test_resize(self): - cdef TList[int] tmp + def test_resize(self): + cdef TList[int] tmp tmp.resize(100, 42) self.assertEqual(tmp.size(), 100) @@ -97,7 +97,7 @@ class TestList(unittest.TestCase): self.assertEqual(tmp.back(), 42) def test_iter(self): - cdef TList[int] tmp + cdef TList[int] tmp tmp.push_back(1) tmp.push_back(20) tmp.push_back(300) @@ -105,7 +105,7 @@ class TestList(unittest.TestCase): self.assertEqual([i for i in tmp], [1, 20, 300]) def test_iterator(self): - cdef TList[int] tmp + cdef TList[int] tmp self.assertTrue(tmp.begin() == tmp.end()) self.assertTrue(tmp.rbegin() == tmp.rend()) @@ -119,13 +119,13 @@ class TestList(unittest.TestCase): self.assertTrue(tmp.const_begin() != tmp.const_end()) self.assertTrue(tmp.const_rbegin() != tmp.const_rend()) - self.assertTrue(preincrement(tmp.begin()) == tmp.end()) - self.assertTrue(preincrement(tmp.rbegin()) == tmp.rend()) - self.assertTrue(preincrement(tmp.const_begin()) == tmp.const_end()) - self.assertTrue(preincrement(tmp.const_rbegin()) == tmp.const_rend()) + self.assertTrue(preincrement(tmp.begin()) == tmp.end()) + self.assertTrue(preincrement(tmp.rbegin()) == tmp.rend()) + self.assertTrue(preincrement(tmp.const_begin()) == tmp.const_end()) + self.assertTrue(preincrement(tmp.const_rbegin()) == tmp.const_rend()) def test_assign(self): - cdef TList[int] tmp + cdef TList[int] tmp tmp.assign(10, 42) self.assertEqual(tmp.size(), 10) @@ -133,7 +133,7 @@ class TestList(unittest.TestCase): self.assertEqual(tmp.back(), 42) def test_insert(self): - cdef TList[int] tmp + cdef TList[int] tmp tmp.push_back(1) tmp.push_back(2) tmp.push_back(3) @@ -145,14 +145,14 @@ class TestList(unittest.TestCase): self.assertEqual([i for i in tmp], [6, 6, 8, 1, 2, 3]) def test_erase(self): - cdef TList[int] tmp + cdef TList[int] tmp tmp.push_back(1) tmp.push_back(2) tmp.push_back(3) tmp.push_back(4) - tmp.erase(preincrement(tmp.begin())) + tmp.erase(preincrement(tmp.begin())) self.assertEqual([i for i in tmp], [1, 3, 4]) - tmp.erase(tmp.begin(), preincrement(preincrement(tmp.begin()))) + tmp.erase(tmp.begin(), preincrement(preincrement(tmp.begin()))) self.assertEqual([i for i in tmp], [4]) |