コード例 #1
0
ファイル: local_test.go プロジェクト: gophergala2016/machine
func TestLocalStateFork(t *testing.T) {
	localMachine := machine.NewLocalMachine()

	ctx := context.Background()

	localMachine.Run(ctx, state4)
}
コード例 #2
0
ファイル: local_test.go プロジェクト: gophergala2016/machine
func TestLocalStateRun(t *testing.T) {
	localMachine := machine.NewLocalMachine()

	ctx := context.Background()

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