varar-core 0.8.1

Markdown-native BDD — pure functional core engine
Documentation
1
2
3
4
5
6
7
8
9
10
//! The role a step definition plays — port of `step-role.ts`'s `StepKind` /
//! `StepKind.java`.

/// A step's role: a stimulus drives the software (arranges + acts); a sensor is
/// the read-only assertion (the only role that returns for comparison).
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum StepKind {
    Stimulus,
    Sensor,
}