@Before
 public void setUp() {
   id = 123;
   timestep = 2;
   pid = 50;
   nodeid = 3456;
   abilityid = 54;
   m = new SupDawgMessage(pid);
   m.setTimeStep(timestep);
 }
 @Test
 public void testSetTimeStep() {
   assertEquals(2, m.getTimeStep());
 }
 @Test
 public void testPlayerId() {
   assertEquals(50, m.getPlayerId());
 }