Conditions | 2 |
Total Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | """Package to test calls_process_factory module.""" |
||
21 | def test_construct_process_not_ex(self): |
||
22 | """Test case when structure not implemented.""" |
||
23 | tested_object = CallsProcessFactory("not_existed", 7, MAX_CALLS) |
||
24 | with self.assertRaises(NotImplementedError): |
||
25 | tested_object.construct_process() |
||
26 |