Coverage Report - org.jbehave.core.model.StoryDuration
 
Classes in this File Line Coverage Branch Coverage Complexity
StoryDuration
100%
6/6
N/A
1
 
 1  
 package org.jbehave.core.model;
 2  
 
 3  
 public class StoryDuration {
 4  
 
 5  
     private final long durationInSecs;
 6  
     private final long timeoutInSecs;
 7  
 
 8  21
     public StoryDuration(long durationInSecs, long timeoutInSecs) {
 9  21
         this.durationInSecs = durationInSecs;
 10  21
         this.timeoutInSecs = timeoutInSecs;
 11  21
     }
 12  
 
 13  
     public long getDurationInSecs() {
 14  18
         return durationInSecs;
 15  
     }
 16  
 
 17  
     public long getTimeoutInSecs() {
 18  1
         return timeoutInSecs;
 19  
     }
 20  
 }