gen_fsm が実際に eunit でタイムアウトすることをテストするにはどうすればよいですか?
{ok, GH} = gen_fsm:start_link(myFSM, [], []),
//after 15 sec it should timeout if no messages received.
//What must I write here to test it?
gen_fsm が実際に eunit でタイムアウトすることをテストするにはどうすればよいですか?
{ok, GH} = gen_fsm:start_link(myFSM, [], []),
//after 15 sec it should timeout if no messages received.
//What must I write here to test it?