| .. | |||||
| __pycache__ | |||||
| __init__.py | |||||
| factory.py | |||||
| test_example.py | |||||
| testcase.py |
import unittest
from tap.tests.factory import Factory
class TestCase(unittest.TestCase):
def __init__(self, methodName="runTest"):
super().__init__(methodName)
self.factory = Factory()
| .. | |||||
| __pycache__ | |||||
| __init__.py | |||||
| factory.py | |||||
| test_example.py | |||||
| testcase.py |