testAttribute.setParentProjectId(42L);
testAttribute.setAttributeId(1L);
Component testComponent = new Component(42L);
testComponent.setComponentId(1L);
CapabilityIntersectionData cell =
new CapabilityIntersectionData(testAttribute, testComponent, new ArrayList<Capability>());
double riskResult = testProvider.calculateRisk(cell);
assertTrue(Math.abs(riskResult) < 0.001);
}