Clover Coverage Report - Kuali Spring Utilities 1.1.0-SNAPSHOT
Coverage timestamp: Thu Apr 21 2011 09:03:37 EST
../../../../../img/srcFileCovDistChart0.png 73% of files have more coverage
6   31   6   1
0   24   1   6
6     1  
1    
 
  Cat       Line # 3 6 0% 6 12 0% 0.0
 
No Tests
 
1    package org.kuali.spring.util.bean;
2   
 
3    public class Cat {
4    String prey;
5    String actions;
6    String speed;
7   
 
8  0 toggle public String getPrey() {
9  0 return prey;
10    }
11   
 
12  0 toggle public void setPrey(String prey) {
13  0 this.prey = prey;
14    }
15   
 
16  0 toggle public String getActions() {
17  0 return actions;
18    }
19   
 
20  0 toggle public void setActions(String actions) {
21  0 this.actions = actions;
22    }
23   
 
24  0 toggle public String getSpeed() {
25  0 return speed;
26    }
27   
 
28  0 toggle public void setSpeed(String speed) {
29  0 this.speed = speed;
30    }
31    }