1"""Common test support for all numpy test scripts.
2
3This single module should provide all the common functionality for numpy tests
4in a single location, so that test scripts can just import it and work right
5away.
6
7"""
8from unittest import TestCase
9
10from . import _private
11from ._private.utils import *
12from ._private.utils import (_assert_valid_refcount, _gen_alignment_data)
13from ._private import extbuild, decorators as dec
14from ._private.nosetester import (
15 run_module_suite, NoseTester as Tester
16 )
17
18__all__ = _private.utils.__all__ + ['TestCase', 'run_module_suite']
19
20from numpy._pytesttester import PytestTester
21test = PytestTester(__name__)
22del PytestTester