Coverage Report - org.kuali.maven.mojo.s3.Depth
 
Classes in this File Line Coverage Branch Coverage Complexity
Depth
0%
0/6
N/A
1
 
 1  
 package org.kuali.maven.mojo.s3;
 2  
 
 3  0
 public class Depth {
 4  
     int depth;
 5  
 
 6  
     public void increment() {
 7  0
         depth++;
 8  0
     }
 9  
 
 10  
     public void decrement() {
 11  0
         depth--;
 12  0
     }
 13  
 
 14  
     public int getValue() {
 15  0
         return depth;
 16  
     }
 17  
 
 18  
 }