Esempio n. 1
0
func TestLocalStateFork(t *testing.T) {
	localMachine := machine.NewLocalMachine()

	ctx := context.Background()

	localMachine.Run(ctx, state4)
}
Esempio n. 2
0
func TestLocalStateRun(t *testing.T) {
	localMachine := machine.NewLocalMachine()

	ctx := context.Background()

	localMachine.Run(ctx, state1).Wait(0)
}