Package com.googlecode.jmeter.plugins.webdriver.proxy

Examples of com.googlecode.jmeter.plugins.webdriver.proxy.ProxyType


        assertThat(config.getProxyType(), is(ProxyType.SYSTEM));
    }

    @Test
    public void shouldAssignProxyType() {
        ProxyType type = ProxyType.MANUAL;
        config.setProxyType(type);

        assertThat(config.getProxyType(), is(type));
    }
View Full Code Here

TOP

Related Classes of com.googlecode.jmeter.plugins.webdriver.proxy.ProxyType

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.