'''
Runs unit tests for XXX.

To run the unit tests, type the following from the system command line:

    # python -m spectral.tests.XXX
'''

from __future__ import division, print_function, unicode_literals

import numpy as np

from numpy.testing import assert_allclose
from spectral.tests.spytest import SpyTest


class FooTest(SpyTest):
    '''Tests various math functions.'''

    def setup(self):
        pass

    def test_foo(self):
        assert_allclose(1, 1)


def run():
    print('\n' + '-' * 72)
    print('Running XXX tests.')
    print('-' * 72)
    test = FooTest()
    test.run()

if __name__ == '__main__':
    from spectral.tests.run import parse_args, reset_stats, print_summary
    parse_args()
    reset_stats()
    run()
    print_summary()
