}
public static String createJSONChasse() {
Chasse chasseTest;
List<IEtape> etapes = new ArrayList<IEtape>();
String[] reponse = new String[1];
reponse[0] = "reponse";
String[] indice = new String[1];
indice[0] = "indice";
Etape ietape1 = new Etape("enigme", reponse, "commentaires", indice, new Lieu(new CoordonneesGPS(45.0,45.0), "unLieu"));
etapes.add(ietape1);
Duree myDuree = new Duree(5, 5, 5);
List<String> tags = new ArrayList<String>();
tags.add("tag1");
tags.add("tag2");
tags.add("tag3");
chasseTest = new Chasse("uneRegion", tags, etapes, myDuree, "unNom", "Unedescription");
return (chasseTest.toString());
}