Examples of IQuickstart


Examples of com.openshift.client.IQuickstart

  @Test
  public void shouldGiveZendAndPhpAlternativesForPhp53() throws Throwable {
    // pre-conditions

    // operation
    IQuickstart anahita = QuickstartTestUtils.getByName(QuickstartTestUtils.TEXTPRESS,
        connection.getQuickstarts());
    // expression:= php-5|zend-
    List<ICartridge> allPhp = anahita.getAlternativesFor(CartridgeTestUtils.php53());

    // verification
    // we have php-5.3 and zend-6.1, zend-5.3 (obsolete ones included)
    assertThat(allPhp).hasSize(3);
    assertThat(allPhp)
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.