this.compareIds(new String[] { "3", "4", "5" }, contacts);
contacts = this._addressBookManager.getAllowedContacts("editorCoach", filters);
this.compareIds(new String[] { "1", "2", "4" }, contacts);
EntitySearchFilter filter1 = new EntitySearchFilter("email", true, "email", true);
EntitySearchFilter[] filters1 = new EntitySearchFilter[] {filter1};
contacts = this._addressBookManager.getAllowedContacts("editorCoach", filters1);
this.compareIds(new String[] { "1", "2", "4" }, contacts);
EntitySearchFilter filter2 = new EntitySearchFilter("email", true, "email2", true);
EntitySearchFilter[] filters2 = new EntitySearchFilter[] {filter2};
contacts = this._addressBookManager.getAllowedContacts("editorCoach", filters2);
this.compareIds(new String[] { "2", "4" }, contacts);
} catch (Throwable t) {
throw t;