Package com.openshift.internal.client.response

Examples of com.openshift.internal.client.response.CartridgeResourceProperties


    assertThat(switchyard.getProperties().size()).isEqualTo(0);
    switchyard.refresh();

    // verification
    mockDirector.verifyGetApplicationCartridges(1, "foobarz", "springeap6");
    CartridgeResourceProperties properties = switchyard.getProperties();
    // 1 property in embedded block in cartridges
    assertThat(properties.size()).isEqualTo(1);
    new ResourcePropertyAssert(properties.getAll().iterator().next())
        .hasName("module_path")
        .hasDescription("Module Path")
        .hasType("cart_data");
  }
View Full Code Here

TOP

Related Classes of com.openshift.internal.client.response.CartridgeResourceProperties

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.