use of com.sequenceiq.cloudbreak.blueprint.template.views.BlueprintView in project cloudbreak by hortonworks.
the class CentralBlueprintUpdaterTest method before.
@Before
public void before() throws IOException {
testBlueprint = TestUtil.blueprint().getBlueprintText();
Cluster cluster = TestUtil.cluster();
cluster.getBlueprint().setBlueprintText(testBlueprint);
object = BlueprintPreparationObject.Builder.builder().withBlueprintView(new BlueprintView(TestUtil.blueprint().getBlueprintText(), Maps.newHashMap(), "HDP", "2.6")).build();
}
Aggregations