Search in sources :

Example 1 with Entry

use of org.apache.jmeter.samplers.Entry in project jmeter-plugins by undera.

the class JSONToXMLConverterTest method testSample.

/**
 * Test of sample method, of class JSONToXMLConverter.
 */
@Test
public void testSample() {
    System.out.println("sample");
    Entry e = null;
    JSONToXMLConverter instance = new JSONToXMLConverter();
    SampleResult expResult = null;
    SampleResult result = instance.sample(e);
}
Also used : Entry(org.apache.jmeter.samplers.Entry) SampleResult(org.apache.jmeter.samplers.SampleResult) Test(org.junit.Test)

Example 2 with Entry

use of org.apache.jmeter.samplers.Entry in project jmeter-plugins by undera.

the class AbstractIPSamplerTest method testSample.

/**
 * Test of sample method, of class AbstractIPSampler.
 */
@Test
public void testSample() {
    System.out.println("sample");
    Entry entry = null;
    AbstractIPSampler instance = new AbstractIPSamplerImpl();
    SampleResult result = instance.sample(entry);
    assertNotNull(result);
}
Also used : Entry(org.apache.jmeter.samplers.Entry) SampleResult(org.apache.jmeter.samplers.SampleResult)

Aggregations

Entry (org.apache.jmeter.samplers.Entry)2 SampleResult (org.apache.jmeter.samplers.SampleResult)2 Test (org.junit.Test)1