(self)
| 10 | |
| 11 | class TestUserFileStorage(unittest.TestCase): |
| 12 | def setUp(self): |
| 13 | test_utils.setup() |
| 14 | self.__storage = UserFileStorage(b'12345678') |
| 15 | self.upload_feature = FileUploadFeature(self.__storage, test_utils.temp_folder) |
| 16 | |
| 17 | def tearDown(self): |
| 18 | test_utils.cleanup() |
nothing calls this directly
no test coverage detected