public void tearDown() throws Exception {
}
@Test
public void gmail() {
ContactsImporter importer = new GoogleImporter(props.getProperty("gmail.username"), props.getProperty("gmail.password"));
try {
List<Contact> contacts = importer.getContacts();
assertTrue("gmail contacts are empty", contacts.size() > 0);
} catch (ContactsException e) {
fail("gmail contacts get failed. " + e.getMessage());
}
}