private void createTestPersonnes() throws ActionException,
SelectionException
{
final Personnes personnes = this.utils.getPersonnes();
Personne personne;
personne = personnes.createPersonne("Doe", "John", "38 rue St-Joseph",
"Quebec", "G1B 4R8", "418-661-9099", new GregorianCalendar(
1970, 0, 1).getTime(), "M", "Quebec", "Canada",
"john.doe@nohost.net", "Canadienne");
this.createTestCompte(personne, "jdoe", "123", true);
this.createTestInfosSaison(personne, "12345", "12", this.utils
.getCategories().getByCode("XSE", personne.getSexe()));
personne = personnes.createPersonne("Deere", "John",
"39 rue St-Joseph", "Quebec", "G1B 4R8", "418-661-9099",
new GregorianCalendar(1972, 3, 1).getTime(), "M", "Quebec",
"Canada", "john.deere@nohost.net", "Canadienne");
this.createTestCompte(personne, "jdeere", "123", false);
this.createTestInfosSaison(personne, "42545", "3021", this.utils
.getCategories().getByCode("XSS", personne.getSexe()));
personne = personnes.createPersonne("Knüssen", "Olaf",
"34 Parker Street ", "Pittsfield", "01201", "418-661-9099",
new GregorianCalendar(1967, 2, 31).getTime(), "M", "MA", "USA",
"olli@coldmail.com", "Canadienne");
this.createTestCompte(personne, "oknussen", "123", false);
this.createTestInfosSaison(personne, "42546", "3022", this.utils
.getCategories().getByCode("XSS", personne.getSexe()));
personne = personnes.createPersonne("Côté", "Nathalie",
"693 Boul. Trudel", "St-Boniface-de-Shawinigan", "H9B 7A1",
"418-661-9099", new GregorianCalendar(1980, 5, 1).getTime(),
"F", "Qc", "CAN", "nathalie@karamail.com", "Canadienne");
this.createTestCompte(personne, "ncote", "123", false);
this.createTestInfosSaison(personne, "42543", "3023", this.utils
.getCategories().getByCode("XSS", personne.getSexe()));
this.outputErrors(personnes);
}