Package org.apache.jmeter.protocol.http.sampler

Examples of org.apache.jmeter.protocol.http.sampler.HTTPSampler2


        isMon.setSelected(((HTTPSampler2) element).isMonitor());
    }

    public TestElement createTestElement()
    {
        HTTPSampler2 sampler = new HTTPSampler2();
        modifyTestElement(sampler);
        return sampler;
    }
View Full Code Here


            gui = new HttpTestSampleGui2();
        }
       
        public void testCloneSampler() throws Exception
        {
            HTTPSampler2 sampler = (HTTPSampler2)gui.createTestElement();
            sampler.addArgument("param","value");
            HTTPSampler2 clonedSampler = (HTTPSampler2)sampler.clone();
            clonedSampler.setRunningVersion(true);
            sampler.getArguments().getArgument(0).setValue("new value");
            assertEquals(
                "Sampler didn't clone correctly",
                "new value",
                sampler.getArguments().getArgument(0).getValue());
View Full Code Here

     * {@inheritDoc}
     */
    @Override
    public void configure(TestElement element) {
        super.configure(element);
        final HTTPSampler2 samplerBase = (HTTPSampler2) element;
        sourceIpAddr.setText(samplerBase.getIpSource());
    }
View Full Code Here

     */
    @Override
    public void modifyTestElement(TestElement sampler) {
        // TODO Auto-generated method stub
        super.modifyTestElement(sampler);
        final HTTPSampler2 samplerBase = (HTTPSampler2) sampler;
        samplerBase.setIpSource(sourceIpAddr.getText());
    }
View Full Code Here

TOP

Related Classes of org.apache.jmeter.protocol.http.sampler.HTTPSampler2

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.