Package com.openshift.client.fakes

Examples of com.openshift.client.fakes.SSLCiphersConnectionBuilderFake


  @Test
  public void shouldFilterBadSSLCiphers() throws Throwable {
    // pre-conditions
    // operations
    SSLCipherConnection connection = (SSLCipherConnection) new SSLCiphersConnectionBuilderFake()
        .sslCiphersConnection()
        .disableBadSSLCiphers(ConfigurationOptions.YES)
        .create();

    // verification
View Full Code Here


 
  @Test
  public void shouldNotFilterBadSSLCiphers() throws Throwable {
    // pre-conditions
    // operations
    SSLCipherConnection connection = (SSLCipherConnection) new SSLCiphersConnectionBuilderFake()
    .sslCiphersConnection()
    .disableBadSSLCiphers(ConfigurationOptions.NO)
    .create();

    // verification
View Full Code Here

TOP

Related Classes of com.openshift.client.fakes.SSLCiphersConnectionBuilderFake

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.