(self)
| 1340 | decompress(dat1, dic2) |
| 1341 | |
| 1342 | def test_train_dict_arguments(self): |
| 1343 | with self.assertRaises(ValueError): |
| 1344 | train_dict([], 100*_1K) |
| 1345 | |
| 1346 | with self.assertRaises(ValueError): |
| 1347 | train_dict(SAMPLES, -100) |
| 1348 | |
| 1349 | with self.assertRaises(ValueError): |
| 1350 | train_dict(SAMPLES, 0) |
| 1351 | |
| 1352 | def test_finalize_dict_arguments(self): |
| 1353 | with self.assertRaises(TypeError): |
nothing calls this directly
no test coverage detected