Package com.openshift.client.utils

Examples of com.openshift.client.utils.StandaloneCartridgeAssert


    // verification
    assertThat(cartridge).isNotNull();
    assertThat(cartridge.getName()).isNotEmpty();
    IStandaloneCartridge availableCartridge = new CartridgeNameQuery(cartridge.getName()).get(user.getConnection()
        .getStandaloneCartridges());
    new StandaloneCartridgeAssert(cartridge).equals(availableCartridge);
  }
View Full Code Here


        .disableSSLCertificateChecks()
        .create()
        .getUser();
    IApplication newApplication = newUser.getDefaultDomain().getApplicationByName(application.getName());
    IDeployedStandaloneCartridge newCartridge = newApplication.getCartridge();
    new StandaloneCartridgeAssert(newCartridge).isEqualTo(cartridge);
    assertThat(newCartridge.getAdditionalGearStorage()).isEqualTo(additionalGearStorage);
  }
View Full Code Here

TOP

Related Classes of com.openshift.client.utils.StandaloneCartridgeAssert

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.