1 18 19 25 package org.apache.jmeter.junit.stubs; 26 27 import org.apache.jmeter.samplers.AbstractSampler; 28 import org.apache.jmeter.samplers.Entry; 29 import org.apache.jmeter.samplers.SampleResult; 30 31 37 public class TestSampler extends AbstractSampler 38 { 39 40 44 public SampleResult sample(Entry e) 45 { 46 return null; 48 } 49 50 public TestSampler(String name) 51 { 52 setName(name); 53 } 54 55 public TestSampler() 56 {} 57 58 public String toString() 59 { 60 return getName(); 61 } 62 63 } 64 65 | Popular Tags |