1 |
|
package org.kuali.student.core.assembly.data; |
2 |
|
|
3 |
|
import java.util.HashMap; |
4 |
|
import java.util.List; |
5 |
|
import java.util.Map; |
6 |
|
|
|
|
| 91.7% |
Uncovered Elements: 2 (24) |
Complexity: 11 |
Complexity Density: 0.92 |
|
7 |
|
public class MockProposal { |
8 |
|
private String id; |
9 |
|
private List<String> orgId; |
10 |
|
private String proposalTitle; |
11 |
|
private String proposalRationale; |
12 |
|
private Map<String, String> attributes; |
13 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
14 |
1
|
public String getId() {... |
15 |
1
|
return id; |
16 |
|
} |
17 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
18 |
1
|
public void setId(String id) {... |
19 |
1
|
this.id = id; |
20 |
|
} |
21 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
22 |
1
|
public List<String> getOrgId() {... |
23 |
1
|
return orgId; |
24 |
|
} |
25 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
26 |
1
|
public void setOrgId(List<String> orgId) {... |
27 |
1
|
this.orgId = orgId; |
28 |
|
} |
29 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
30 |
1
|
public String getProposalTitle() {... |
31 |
1
|
return proposalTitle; |
32 |
|
} |
33 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
34 |
1
|
public void setProposalTitle(String proposalTitle) {... |
35 |
1
|
this.proposalTitle = proposalTitle; |
36 |
|
} |
37 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
38 |
1
|
public String getProposalRationale() {... |
39 |
1
|
return proposalRationale; |
40 |
|
} |
41 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
42 |
1
|
public void setProposalRationale(String proposalRationale) {... |
43 |
1
|
this.proposalRationale = proposalRationale; |
44 |
|
} |
45 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
46 |
2
|
public Map<String, String> getAttributes() {... |
47 |
2
|
if (attributes == null){ |
48 |
1
|
attributes = new HashMap<String,String>(); |
49 |
|
} |
50 |
2
|
return attributes; |
51 |
|
} |
52 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
53 |
0
|
public void setAttributes(Map<String, String> attributes) {... |
54 |
0
|
this.attributes = attributes; |
55 |
|
} |
56 |
|
|
57 |
|
} |