* <p>
* Create a search for issues from project X which milestone begins with
* "production" and the title contains "button"
*/
static void test2() {
SearchConstraint constraint = new SearchConstraint();
constraint.addConstraint(Parameter.MILESTONE, Operator.BEGINS_WITH, "production");
constraint.addConstraint(Parameter.TITLE, Operator.CONTAINS, "button");
IssueURL advancedSearch = IssueURLFactory.fetch(username, slug, constraint);
/* the rest is copy&paste from above */
try {