1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
package org.kuali.student.common.assembly.dictionary.old; |
17 |
|
|
18 |
|
import java.util.List; |
19 |
|
|
20 |
|
import org.kuali.student.core.dictionary.old.dto.ObjectStructure; |
21 |
|
import org.kuali.student.core.dictionary.service.old.DictionaryService; |
22 |
|
|
23 |
|
|
24 |
|
|
25 |
|
|
26 |
|
@author |
27 |
|
|
28 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (6) |
Complexity: 3 |
Complexity Density: 1 |
|
29 |
|
public class MockDictionaryService implements DictionaryService{ |
30 |
|
|
31 |
|
private DictionaryService dictionaryServiceDelegate; |
32 |
|
|
33 |
|
|
34 |
|
@see |
35 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
36 |
1
|
@Override... |
37 |
|
public ObjectStructure getObjectStructure(String objectTypeKey) { |
38 |
1
|
return dictionaryServiceDelegate.getObjectStructure(objectTypeKey); |
39 |
|
} |
40 |
|
|
41 |
|
|
42 |
|
@see |
43 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
44 |
1
|
@Override... |
45 |
|
public List<String> getObjectTypes() { |
46 |
1
|
return dictionaryServiceDelegate.getObjectTypes(); |
47 |
|
} |
48 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
49 |
1
|
public void setDictionaryServiceDelegate(DictionaryService dictionaryServiceDelegate) {... |
50 |
1
|
this.dictionaryServiceDelegate = dictionaryServiceDelegate; |
51 |
|
} |
52 |
|
|
53 |
|
} |