我想使用Apache JMeter提供的API從Java程序創(chuàng)建和運(yùn)行測(cè)試腳本。我已經(jīng)了解了ThreadGroup和Samplers的基礎(chǔ)知識(shí)。我可以使用JMeter API在我的Java類(lèi)中創(chuàng)建它們。ThreadGroup threadGroup = new ThreadGroup(); LoopController lc = new LoopController(); lc.setLoops(5); lc.setContinueForever(true); threadGroup.setSamplerController(lc); threadGroup.setNumThreads(5); threadGroup.setRampUp(1);HTTPSampler sampler = new HTTPSampler(); sampler.setDomain("localhost"); sampler.setPort(8080); sampler.setPath("/jpetstore/shop/viewCategory.shtml"); sampler.setMethod("GET"); Arguments arg = new Arguments(); arg.addArgument("categoryId", "FISH"); sampler.setArguments(arg);但是,我不知道如何創(chuàng)建一個(gè)組合線程組和采樣器的測(cè)試腳本,然后從同一個(gè)程序執(zhí)行它。有任何想法嗎?
如何從Java程序創(chuàng)建和運(yùn)行Apache JMeter測(cè)試腳本?
www說(shuō)
2019-09-02 09:23:13