This repository was archived by the owner on Mar 12, 2020. It is now read-only.
This repository was archived by the owner on Mar 12, 2020. It is now read-only.
Allow passing SutState directly to executeAction(...) #11
Closed
Description
Instead of doing the following on the client side:
SutState beforeState = ...
Action action = ...
SutState afterState = ...
Set<Action> unexploredActions = ...
final State state = stateMachine.getState( beforeState, unexploredActions );
stateMachine.executeAction( state, action, afterState, unexploredActions );
Could we pass SutState
directly?
SutState beforeState = ...
Action action = ...
SutState afterState = ...
Set<Action> unexploredActions = ...
stateMachine.executeAction( beforeState, action, afterState, unexploredActions );