Map<String, String> props = new HashMap<String, String>();
props.put(ConfigProperties.DEFAULT_TASKS, JobCleaner.class.getName());
props.put("org.quartz.jobStore.isClustered", "true");
props.put("pinsetter.org.candlepin.pinsetter.tasks." +
"JobCleaner.schedule", "*/1 * * * * ?");
Configuration config = new MapConfiguration(props);
JobDetail jobDetail = mock(JobDetail.class);
String crongrp = "cron group";
Set<JobKey> jobs = new HashSet<JobKey>();
JobKey key = jobKey("org.candlepin.pinsetter.tasks.JobCleaner");