Clover Coverage Report - Kuali Student 1.2-M4-SNAPSHOT (Aggregated)
Coverage timestamp: Wed Jul 20 2011 11:14:35 EDT
5   35   1   5
0   31   0.2   1
1     1  
1    
 
  TestDictionaryCreator       Line # 14 5 0% 1 0 100% 1.0
 
  (1)
 
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   
 
14    public class TestDictionaryCreator
15    {
16   
 
17  1 toggle @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    }