spec2 = new CalculationJobSpecification(UniqueId.of("Test", "ViewCycle2"), "config", valuationTime, 1L);
assertFalse(spec1.hashCode() == spec2.hashCode());
spec2 = new CalculationJobSpecification(UniqueId.of("Test", "ViewCycle"), "config2", valuationTime, 1L);
assertFalse(spec1.hashCode() == spec2.hashCode());
spec2 = new CalculationJobSpecification(UniqueId.of("Test", "ViewCycle"), "config", valuationTime.plusMillis(1), 1L);
assertFalse(spec1.hashCode() == spec2.hashCode());
spec2 = new CalculationJobSpecification(UniqueId.of("Test", "ViewCycle"), "config", valuationTime, 2L);
assertFalse(spec1.hashCode() == spec2.hashCode());
}