Coverage Report - org.jbehave.core.annotations.ScenarioType
 
Classes in this File Line Coverage Branch Coverage Complexity
ScenarioType
100%
3/3
N/A
0
 
 1  
 package org.jbehave.core.annotations;
 2  
 
 3  4
 public enum ScenarioType {
 4  
 
 5  
     /**
 6  
      * Scenario that is part of normal story execution
 7  
      */
 8  1
     NORMAL, 
 9  
     
 10  
     /**
 11  
      * Scenario that is parametrised by example
 12  
      */
 13  1
     EXAMPLE
 14  
     
 15  
 }