# core/test.py
#
#
""" define core test classes. """
__copyright__ = "Copyright 2015, B.H.J Thate"
## IMPORTS
import unittest
import sys
import os
## Test class
[docs]class Test(unittest.TestCase):
""" class that implements setup and teardown of tests. """
pass
if not os.getcwd() in sys.path: sys.path.append(os.getcwd())