Search in sources :

Example 6 with AwsDatabaseServerV4Parameters

use of com.sequenceiq.redbeams.api.endpoint.v4.stacks.aws.AwsDatabaseServerV4Parameters in project cloudbreak by hortonworks.

the class DatabaseServerV4StackBaseTest method testAwsParameters.

@Test
public void testAwsParameters() {
    assertNull(underTest.getAws());
    AwsDatabaseServerV4Parameters parameters = underTest.createAws();
    assertNotNull(parameters);
    parameters = new AwsDatabaseServerV4Parameters();
    underTest.setAws(parameters);
    assertEquals(parameters, underTest.createAws());
    assertEquals(parameters, underTest.getAws());
}
Also used : AwsDatabaseServerV4Parameters(com.sequenceiq.redbeams.api.endpoint.v4.stacks.aws.AwsDatabaseServerV4Parameters) Test(org.junit.Test)

Aggregations

AwsDatabaseServerV4Parameters (com.sequenceiq.redbeams.api.endpoint.v4.stacks.aws.AwsDatabaseServerV4Parameters)6 Test (org.junit.jupiter.api.Test)3 Test (org.junit.Test)1