Package kg.apc.jmeter.perfmon

Examples of kg.apc.jmeter.perfmon.PerfMonSampleResult


    }

    @Test
    public void testAdd() {
        System.out.println("add");
        SampleResult res = new PerfMonSampleResult();
        res.setSuccessful(true);
        PerfMonGuiEmul instance = new PerfMonGuiEmul();
        instance.add(res);
        assertEquals(1, instance.getModel_multi().size());
        assertEquals(1, instance.getModel_multi().firstEntry().getValue().size());
        assertEquals(0, instance.getModel_aggr().size());
View Full Code Here

TOP

Related Classes of kg.apc.jmeter.perfmon.PerfMonSampleResult

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.