verify(follower).appendEntries(context, appendEntries);
}
@Test
public void delegateRequestVoteToCurrentState() throws Exception {
RequestVote requestVote = RequestVote.getDefaultInstance();
context.setState(null, FOLLOWER);
context.requestVote(requestVote);
verify(follower).requestVote(context, requestVote);