Source code for dl_data_validation_toolset.framework.base_unittest

import unittest
from mock import patch
import logging
import sys


[docs]class BaseTestCase(unittest.TestCase):
[docs] def setUp(self): """ Monkeypatches the file functionality out so that we don't run on real files during unit tests. """ logging.basicConfig(stream=sys.stderr, level=logging.DEBUG) self.patcher = patch('h5py.File') self.mock_file = self.patcher.start()
[docs] def tearDown(self): self.patcher.stop()