| Conditions | 1 | 
| Total Lines | 5 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | """Package to test calls_process_factory module.""" | ||
| 15 | def test_construct_process_linear(self): | ||
| 16 | """Test linear process construction.""" | ||
| 17 |         tested_object = CallsProcessFactory("linear", 7, MAX_CALLS) | ||
| 18 | result = tested_object.construct_process() | ||
| 19 | self.assertIsInstance(result, CallsProcess) | ||
| 20 | |||
| 26 |