Clover Coverage Report - Impex Parent 1.0.21-SNAPSHOT (Aggregated)
Coverage timestamp: Tue Feb 8 2011 11:33:53 EST
13   46   3   4.33
0   37   0.23   3
3     1  
1    
 
  DatabaseUtilsTest       Line # 15 13 0% 3 16 0% 0.0
 
No Tests
 
1    package org.kuali.db;
2   
3    import java.util.HashSet;
4    import java.util.List;
5    import java.util.Set;
6   
7    import junit.framework.TestCase;
8    import junit.textui.TestRunner;
9   
10    import org.kuali.db.jdbc.DatabaseType;
11    import org.kuali.db.jdbc.JDBCConfiguration;
12    import org.springframework.context.ApplicationContext;
13    import org.springframework.context.support.ClassPathXmlApplicationContext;
14   
 
15    public class DatabaseUtilsTest extends TestCase {
 
16  0 toggle public static void main(final String[] args) {
17  0 TestRunner.run(DatabaseUtilsTest.class);
18    }
19   
 
20  0 toggle @SuppressWarnings("unchecked")
21    public void test1() {
22  0 ApplicationContext ctx = new ClassPathXmlApplicationContext("org/kuali/db/jdbc-context.xml");
23  0 List<JDBCConfiguration> databaseConfigs = (List<JDBCConfiguration>) ctx
24    .getBean("org/kuali/db/jdbc-context.xml");
25  0 assertNotNull(databaseConfigs);
26    }
27   
 
28  0 toggle @SuppressWarnings("unchecked")
29    public void test2() {
30  0 ApplicationContext ctx = new ClassPathXmlApplicationContext("org/kuali/db/jdbc-context.xml");
31  0 List<JDBCConfiguration> databaseConfigs = (List<JDBCConfiguration>) ctx
32    .getBean("org/kuali/db/jdbc-context.xml");
33  0 assertNotNull(databaseConfigs);
34  0 DatabaseType[] typesArray = DatabaseType.values();
35   
36  0 Set<DatabaseType> types = new HashSet<DatabaseType>();
37  0 for (DatabaseType type : typesArray) {
38  0 types.add(type);
39    }
40   
41  0 for (JDBCConfiguration databaseConfig : databaseConfigs) {
42  0 assertTrue(types.contains(databaseConfig.getType()));
43    }
44   
45    }
46    }