getAllActions

Members

Aliases

getAllActions
alias getAllActions = Filter!(hasActions, get_all_callable)
Undocumented in source.
get_all_callable
alias get_all_callable = getAllCallables!T
Undocumented in source.

Return Value

all the actions in a scenario

Examples

// Test of getAllActions
   alias actions = getAllActions!(BehaviourUnittest.Some_awesome_feature);
   static assert(actions.length == 7);
   static assert(allSatisfy!(isCallable, actions));
   static assert(allSatisfy!(hasActions, actions));

Meta