use of org.apache.jmeter.samplers.NullSampler in project jmeter by apache.
the class TestURLRewritingModifier method testNonHTTPSampler.
@Test
public void testNonHTTPSampler() throws Exception {
Sampler sampler = new NullSampler();
response = new SampleResult();
context.setCurrentSampler(sampler);
context.setPreviousResult(response);
mod.process();
}
Aggregations