You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The most important interaction in the game is between the InputStateMachine and the GameState. The InputStateMachine parses user input, and produces command messages that the GameState uses to mutate its internal state. Right now, they are both tested independently, but there's nothing that tests the full flow: The InputStateMachine producing GameStateCommands that result in the expected GameState mutations. It would be great to have this test.
The text was updated successfully, but these errors were encountered:
The most important interaction in the game is between the
InputStateMachine
and theGameState
. TheInputStateMachine
parses user input, and produces command messages that theGameState
uses to mutate its internal state. Right now, they are both tested independently, but there's nothing that tests the full flow: TheInputStateMachine
producingGameStateCommand
s that result in the expectedGameState
mutations. It would be great to have this test.The text was updated successfully, but these errors were encountered: