use of com.sequenceiq.cloudbreak.domain.Blueprint in project cloudbreak by hortonworks.
the class BlueprintRequestToBlueprintConverterTest method testConvert.
@Test
public void testConvert() throws JsonProcessingException {
// GIVEN
// WHEN
Blueprint result = underTest.convert(getRequest("stack/blueprint.json"));
// THEN
assertAllFieldsNotNull(result, Collections.singletonList("inputParameters"));
}
Aggregations