Search in sources :

Example 1 with TelemetryTestDto

use of com.sequenceiq.it.cloudbreak.dto.telemetry.TelemetryTestDto in project cloudbreak by hortonworks.

the class StackTestDtoBase method withTelemetry.

public StackTestDtoBase<T> withTelemetry(String key) {
    TelemetryTestDto telemetry = getTestContext().get(key);
    getRequest().setTelemetry(telemetry.getRequest());
    return this;
}
Also used : TelemetryTestDto(com.sequenceiq.it.cloudbreak.dto.telemetry.TelemetryTestDto)

Example 2 with TelemetryTestDto

use of com.sequenceiq.it.cloudbreak.dto.telemetry.TelemetryTestDto in project cloudbreak by hortonworks.

the class FreeIpaTestDto method withTelemetry.

public FreeIpaTestDto withTelemetry(String telemetry) {
    TelemetryTestDto telemetryTestDto = getTestContext().get(telemetry);
    getRequest().setTelemetry(telemetryTestDto.getRequest());
    return this;
}
Also used : TelemetryTestDto(com.sequenceiq.it.cloudbreak.dto.telemetry.TelemetryTestDto)

Example 3 with TelemetryTestDto

use of com.sequenceiq.it.cloudbreak.dto.telemetry.TelemetryTestDto in project cloudbreak by hortonworks.

the class EnvironmentTestDto method withTelemetry.

public EnvironmentTestDto withTelemetry(String telemetry) {
    TelemetryTestDto telemetryTestDto = getTestContext().get(telemetry);
    getRequest().setTelemetry(telemetryTestDto.getRequest());
    return this;
}
Also used : TelemetryTestDto(com.sequenceiq.it.cloudbreak.dto.telemetry.TelemetryTestDto)

Aggregations

TelemetryTestDto (com.sequenceiq.it.cloudbreak.dto.telemetry.TelemetryTestDto)3