| 1 |
|
|
| 2 |
|
|
| 3 |
|
|
| 4 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 |
|
|
| 9 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 13 |
|
|
| 14 |
|
|
| 15 |
|
|
| 16 |
|
|
| 17 |
|
package mocks; |
| 18 |
|
|
| 19 |
|
import java.util.List; |
| 20 |
|
|
| 21 |
|
import org.kuali.rice.kew.engine.RouteContext; |
| 22 |
|
import org.kuali.rice.kew.exception.ResourceUnavailableException; |
| 23 |
|
import org.kuali.rice.kew.exception.WorkflowException; |
| 24 |
|
import org.kuali.rice.kew.routeheader.DocumentRouteHeaderValue; |
| 25 |
|
import org.kuali.rice.kew.routemodule.RouteModule; |
| 26 |
|
import org.kuali.rice.kew.util.ResponsibleParty; |
| 27 |
|
|
| 28 |
|
|
|
|
|
| 0% |
Uncovered Elements: 6 (6) |
Complexity: 3 |
Complexity Density: 1 |
|
| 29 |
|
public class MockRouteModule implements RouteModule { |
| 30 |
|
|
| 31 |
|
List nonPrimaryDelegationResponsibleParties; |
| 32 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 33 |
0
|
public List findActionRequests(RouteContext context) throws ResourceUnavailableException, WorkflowException {... |
| 34 |
0
|
return null; |
| 35 |
|
} |
| 36 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 37 |
0
|
public List findActionRequests(DocumentRouteHeaderValue routeHeader) throws ResourceUnavailableException, WorkflowException {... |
| 38 |
0
|
return null; |
| 39 |
|
} |
| 40 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 41 |
0
|
public ResponsibleParty resolveResponsibilityId(Long rId) throws ResourceUnavailableException, WorkflowException {... |
| 42 |
0
|
return null; |
| 43 |
|
} |
| 44 |
|
|
| 45 |
|
} |