private static Resume R1, R2, R3;
@BeforeClass
public static void beforeClass() {
R1 = new Resume(UUID.randomUUID().toString(), "fullName1", "homePage1", "location1");
R1.addContact(ContactType.MAIL, "mail1@ya.ru");
R1.addContact(ContactType.PHONE, "11111");
/*
R1.addSection(SectionType.ACHIEVEMENT, "Achivment11", "Achivment12");
R1.addSection(SectionType.OBJECTIVE, "Objective1");
R1.addSection(SectionType.EXPERIENCE,
new Organization("Organization11", null,
new Period(2005, Calendar.JANUARY, 2008, Calendar.DECEMBER, "position1", "content1"),
new Period(2001, Calendar.MARCH, 2005, Calendar.JANUARY,"position2", "content2")),
new Organization("Organization12", "Url11"));
*/
R2 = new Resume(UUID.randomUUID().toString(), "fullName2", null, null);
R2.addContact(ContactType.SKYPE, "skype2");
R2.addContact(ContactType.PHONE, "22222");
R3 = new Resume(UUID.randomUUID().toString(), "fullName3", "homePage3", null);
}