this.dateGen = 0;
}
public void testSort() throws InstantiationException {
HighestFIFOPrioritySorter sorter = new HighestFIFOPrioritySorter(1, 15.0, 25.0);
WorkflowProcessor proc = getProcessor(2.0);
WorkflowProcessor proc2 = getProcessor(7.0);
List<WorkflowProcessor> candidates = new Vector<WorkflowProcessor>();
candidates.add(proc);
candidates.add(proc2);
sorter.sort(candidates);
assertNotNull(candidates);