Search in sources :

Example 1 with DistroXImageTestDto

use of com.sequenceiq.it.cloudbreak.dto.distrox.image.DistroXImageTestDto in project cloudbreak by hortonworks.

the class DistroXTestDtoBase method withImageSettings.

public DistroXTestDtoBase<T> withImageSettings(String key) {
    DistroXImageTestDto imageSettingsEntity = getTestContext().get(key);
    getRequest().setImage(imageSettingsEntity.getRequest());
    return this;
}
Also used : DistroXImageTestDto(com.sequenceiq.it.cloudbreak.dto.distrox.image.DistroXImageTestDto)

Example 2 with DistroXImageTestDto

use of com.sequenceiq.it.cloudbreak.dto.distrox.image.DistroXImageTestDto in project cloudbreak by hortonworks.

the class ClusterTemplateTestDto method withImageSettings.

public ClusterTemplateTestDto withImageSettings() {
    DistroXImageTestDto imageTestDto = getTestContext().get(DistroXImageTestDto.class);
    getRequest().getDistroXTemplate().setImage(imageTestDto.getRequest());
    return this;
}
Also used : DistroXImageTestDto(com.sequenceiq.it.cloudbreak.dto.distrox.image.DistroXImageTestDto)

Example 3 with DistroXImageTestDto

use of com.sequenceiq.it.cloudbreak.dto.distrox.image.DistroXImageTestDto in project cloudbreak by hortonworks.

the class DistroXTemplateTestDto method withImage.

public DistroXTemplateTestDto withImage() {
    DistroXImageTestDto imageTestDto = getTestContext().get(DistroXImageTestDto.class);
    getRequest().setImage(imageTestDto.getRequest());
    return this;
}
Also used : DistroXImageTestDto(com.sequenceiq.it.cloudbreak.dto.distrox.image.DistroXImageTestDto)

Aggregations

DistroXImageTestDto (com.sequenceiq.it.cloudbreak.dto.distrox.image.DistroXImageTestDto)3