aboutsummaryrefslogtreecommitdiffstats
path: root/util/tests/cython/test_generic.py
blob: a0d61339cc760ea4d35244b0662650a43da19028 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# -*- coding: utf-8 -*-

from __future__ import print_function, absolute_import, division

from util.generic.deque_ut import TestDeque
from util.generic.hash_ut import TestHash
from util.generic.hash_set_ut import TestHashSet
from util.generic.list_ut import TestList
from util.generic.maybe_ut import TestMaybe
from util.generic.ptr_ut import TestHolder
from util.generic.string_ut import TestStroka
from util.generic.vector_ut import TestVector
from util.string.cast_ut import TestFromString, TestToString

# Test discovery does not work in cython modules.
# Reexporting test classes here to satisfy pylint and pytest.

__all__ = [
    'TestDeque',
    'TestHash',
    'TestHashSet',
    'TestHolder',
    'TestList',
    'TestMaybe',
    'TestStroka',
    'TestVector',
    'TestFromString',
    'TestToString',
]