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