/** Test of setVotingStarted method, of class ValidatorElectionEvent. */
 @Test
 public void testSetVotingStarted() {
   System.out.println("setVotingStarted");
   ValidatorElectionEvent instance = new ValidatorElectionEvent();
   Boolean expResult = false;
   instance.setVotingStarted(expResult);
   Boolean result = instance.getVotingStarted();
   assertEquals(expResult, result);
 }