use of com.sequenceiq.environment.environment.dto.EnvironmentCreationDto in project cloudbreak by hortonworks.
the class EnvironmentValidatorServiceTest method testValidateGcpEncryptionKeyNotSpecified.
@Test
void testValidateGcpEncryptionKeyNotSpecified() {
EnvironmentCreationDto creationDto = EnvironmentCreationDto.builder().withAccountId(ACCOUNT_ID).withCloudPlatform("GCP").build();
ValidationResult validationResult = underTest.validateEncryptionKey(creationDto);
assertFalse(validationResult.hasError());
}
Aggregations