Sequential
Factories
Sequential.of(String name, List<Action> children)
Sequential.of(String name, Action... children)
Semantics
Sequential runs every child in order.
It does not stop on failure. Later children still execute even if an earlier child fails or skips.
Parent status is computed from child results:
FAILif any child failed- otherwise
SKIPif any child skipped - otherwise
PASS
Example
Action action = Sequential.of(
"suite",
Direct.of("first", context -> {}),
Direct.of("second", context -> {}));