| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| StepType |
|
| 0.0;0 |
| 1 | package org.jbehave.core.steps; | |
| 2 | ||
| 3 | /** | |
| 4 | * Enum representing the step types | |
| 5 | */ | |
| 6 | 6 | public enum StepType { |
| 7 | ||
| 8 | /** | |
| 9 | * Represents a precondition to an event | |
| 10 | */ | |
| 11 | 1 | GIVEN, |
| 12 | ||
| 13 | /** | |
| 14 | * Represents an event | |
| 15 | */ | |
| 16 | 1 | WHEN, |
| 17 | ||
| 18 | /** | |
| 19 | * Represents an outcome of an event | |
| 20 | */ | |
| 21 | 1 | THEN, |
| 22 | ||
| 23 | /** | |
| 24 | * Represents repetition of previous step | |
| 25 | */ | |
| 26 | 1 | AND, |
| 27 | ||
| 28 | /** | |
| 29 | * Represents an ignorable step | |
| 30 | */ | |
| 31 | 1 | IGNORABLE |
| 32 | } |