#!python

"""
        COPYRIGHT (c) 2022 by Featuremine Corporation.
        This software has been provided pursuant to a License Agreement
        containing restrictions on its use.  This software contains
        valuable trade secrets and proprietary information of
        Featuremine Corporation and is protected by law.  It may not be
        copied or distributed in any form or medium, disclosed to third
        parties, reverse engineered or used in any manner not provided
        for in said License Agreement except with the prior written
        authorization from Featuremine Corporation.
"""

import extractor.tests
import unittest


if __name__ == '__main__':
    dir = extractor.tests.__path__[0]
    testsuite = unittest.defaultTestLoader.discover(start_dir=dir, pattern='*.py')
    assert unittest.TextTestRunner(verbosity=2).run(testsuite).wasSuccessful(), 'Test runner failed'
