@Before
public void setUp() {
blueprintService = new BlueprintDetailsCalculationService(invBlueprintTypeDao, invTypeMaterialDao, ramTypeRequirementDao);
InvBlueprintType invBlueprintType = new InvBlueprintType();
invBlueprintType.setBlueprintTypeID(1L);
invBlueprintType.setProductTypeID(2L);
List<InvTypeMaterial> invTypeMaterials = new ArrayList<InvTypeMaterial>();
InvTypeMaterial invTypeMaterial1 = new InvTypeMaterial();
invTypeMaterial1.setMaterialTypeID(3L);
invTypeMaterial1.setQuantity(10L);
InvTypeMaterial invTypeMaterial2 = new InvTypeMaterial();