1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
|
17 |
|
package mocks; |
18 |
|
|
19 |
|
import java.util.ArrayList; |
20 |
|
import java.util.List; |
21 |
|
|
22 |
|
|
23 |
|
|
24 |
|
@author |
25 |
|
|
|
|
| 0% |
Uncovered Elements: 15 (15) |
Complexity: 4 |
Complexity Density: 0.36 |
|
26 |
|
public class MockChartOrgService { |
27 |
|
|
28 |
|
private static List<MockOrganization> orgs = new ArrayList<MockOrganization>(); |
|
|
| 0% |
Uncovered Elements: 7 (7) |
Complexity: 1 |
Complexity Density: 0.14 |
|
29 |
0
|
static {... |
30 |
0
|
orgs.add(new MockOrganization("IU", "UNIV", "IU", "UNIV")); |
31 |
0
|
orgs.add(new MockOrganization("BL", "BL", "IU", "UNIV")); |
32 |
0
|
orgs.add(new MockOrganization("BL", "ARSC", "BL", "BL")); |
33 |
0
|
orgs.add(new MockOrganization("BL", "CHEM", "BL", "ARSC")); |
34 |
0
|
orgs.add(new MockOrganization("KO", "KO", "IU", "UNIV")); |
35 |
0
|
orgs.add(new MockOrganization("IN", "IN", "IU", "UNIV")); |
36 |
0
|
orgs.add(new MockOrganization("IN", "MED", "IU", "UNIV")); |
37 |
|
} |
38 |
|
|
|
|
| 0% |
Uncovered Elements: 6 (6) |
Complexity: 3 |
Complexity Density: 0.75 |
|
39 |
0
|
public MockOrganization findOrganization(String chart, String org) {... |
40 |
0
|
for (MockOrganization organization : orgs) { |
41 |
0
|
if (chart.equals(organization.getFinCoaCd()) && org.equals(organization.getOrgCd())) { |
42 |
0
|
return organization; |
43 |
|
} |
44 |
|
} |
45 |
0
|
return null; |
46 |
|
} |
47 |
|
|
48 |
|
} |