Coverage Report - model.Dog
 
Classes in this File Line Coverage Branch Coverage Complexity
Dog
0%
0/4
N/A
1
 
 1  
 package model;
 2  
 
 3  0
 public class Dog {
 4  
 
 5  
         public String name;
 6  
 
 7  
         public String getName() {
 8  0
                 return name;
 9  
         }
 10  
 
 11  
         public void setName(String name) {
 12  0
                 this.name = name;
 13  0
         }
 14  
         
 15  
         
 16  
         
 17  
 }