| 1 |
|
package org.kuali.student.lum.course.service.impl; |
| 2 |
|
|
| 3 |
|
import org.junit.Test; |
| 4 |
|
import java.beans.IntrospectionException; |
| 5 |
|
import java.io.IOException; |
| 6 |
|
|
| 7 |
|
import org.kuali.student.common.dictionary.service.impl.DictionaryCreator; |
| 8 |
|
import org.kuali.student.lum.lrc.dto.CredentialInfo; |
| 9 |
|
import org.kuali.student.lum.lrc.dto.CreditInfo; |
| 10 |
|
import org.kuali.student.lum.lrc.dto.GradeInfo; |
| 11 |
|
import org.kuali.student.lum.lrc.dto.ResultComponentInfo; |
| 12 |
|
import org.kuali.student.lum.lrc.dto.ScaleInfo; |
| 13 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (6) |
Complexity: 1 |
Complexity Density: 0.2 |
|
| 14 |
|
public class TestDictionaryCreator |
| 15 |
|
{ |
| 16 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (5) |
Complexity: 1 |
Complexity Density: 0.2 |
1
PASS
|
|
| 17 |
1
|
@Test... |
| 18 |
|
public void testRunDictinoaryCreator () |
| 19 |
|
throws IOException, |
| 20 |
|
IntrospectionException, |
| 21 |
|
SecurityException, |
| 22 |
|
NoSuchFieldException |
| 23 |
|
{ |
| 24 |
1
|
new DictionaryCreator ().execute (ResultComponentInfo.class, |
| 25 |
|
"target/ks-ResultComponentInfo-dictinoary-context-generated.xml"); |
| 26 |
1
|
new DictionaryCreator ().execute (GradeInfo.class, |
| 27 |
|
"target/ks-GradeInfo-dictinoary-context-generated.xml"); |
| 28 |
1
|
new DictionaryCreator ().execute (ScaleInfo.class, |
| 29 |
|
"target/ks-ScaleInfo-dictinoary-context-generated.xml"); |
| 30 |
1
|
new DictionaryCreator ().execute (CreditInfo.class, |
| 31 |
|
"target/ks-CreditInfo-dictinoary-context-generated.xml"); |
| 32 |
1
|
new DictionaryCreator ().execute (CredentialInfo.class, |
| 33 |
|
"target/ks-CredentialInfo-dictinoary-context-generated.xml"); |
| 34 |
|
} |
| 35 |
|
} |