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