/*
  * 2 covered goals:
  * 1 messages.global.MapInfo.toString()Ljava/lang/String;: root-Branch
  * 2 messages.global.MapInfo.<init>(Ljava/lang/String;Ljava/lang/String;I)V: root-Branch
  */
 @Test
 public void test5() throws Throwable {
   MapInfo mapInfo0 = new MapInfo("", "", (-1979));
   String string0 = mapInfo0.toString();
   assertEquals("(-1979) ", string0);
   assertNotNull(string0);
 }
 /*
  * 1 covered goal:
  * 1 messages.global.MapInfo.getPreview()Ljavax/swing/ImageIcon;: root-Branch
  */
 @Test
 public void test4() throws Throwable {
   MapInfo mapInfo0 = new MapInfo("", "", (-1));
   mapInfo0.getPreview();
   assertEquals(-1, mapInfo0.getMaxPlayers());
   assertEquals("(-1) ", mapInfo0.toString());
 }
 /*
  * 1 covered goal:
  * 1 messages.global.MapInfo.setPreview(Ljavax/swing/ImageIcon;)V: root-Branch
  */
 @Test
 public void test3() throws Throwable {
   MapInfo mapInfo0 = new MapInfo("", "", 0);
   ImageIcon imageIcon0 = new ImageIcon();
   mapInfo0.setPreview(imageIcon0);
   assertEquals(0, mapInfo0.getMaxPlayers());
   assertEquals("(0) ", mapInfo0.toString());
 }
 /*
  * 1 covered goal:
  * 1 messages.global.MapInfo.getName()Ljava/lang/String;: root-Branch
  */
 @Test
 public void test2() throws Throwable {
   MapInfo mapInfo0 = new MapInfo("jlVfR`vN'@[", "jlVfR`vN'@[", 0);
   String string0 = mapInfo0.getName();
   assertNotNull(string0);
   assertEquals(0, mapInfo0.getMaxPlayers());
   assertEquals("(0) jlVfR`vN'@[", mapInfo0.toString());
 }
 /*
  * 1 covered goal:
  * 1 messages.global.MapInfo.getFile()Ljava/lang/String;: root-Branch
  */
 @Test
 public void test1() throws Throwable {
   MapInfo mapInfo0 = new MapInfo("", "", (-1));
   String string0 = mapInfo0.getFile();
   assertNotNull(string0);
   assertEquals("(-1) ", mapInfo0.toString());
   assertEquals(-1, mapInfo0.getMaxPlayers());
 }
 /*
  * 2 covered goals:
  * 1 messages.global.MapInfo.getMaxPlayers()I: root-Branch
  * 2 messages.global.MapInfo.<init>(Ljava/lang/String;Ljava/lang/String;I)V: root-Branch
  */
 @Test
 public void test0() throws Throwable {
   MapInfo mapInfo0 = new MapInfo("", "", 0);
   int int0 = mapInfo0.getMaxPlayers();
   assertEquals(0, int0);
 }