Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JMeter with a software versioning tool

Tags:

jmeter

Is it possible to use JMeter with a software versioning tool such as Git, so the test cases for a larger project can be done by a team ?

Also are there any other tools that can provide the same functionality that SVN gives but to JMeter test scripts

like image 311
Arhangel Avatar asked Mar 11 '23 10:03

Arhangel


1 Answers

JMeter JMX tests are basically XML files, as XML is basically a textual format it is version-control-system friendly so it should not be a problem to store them under SVN, Git, Mercurial, whatever.

Also if you work in a team you can additionally consider implementing high-level test architecture based on Test Fragments which can be used in the main Test Plan via Module Controllers. See How to Manage Large JMeter Scripts With JMeter Test Fragments article for mode details on the approach.

like image 189
Dmitri T Avatar answered Apr 27 '23 02:04

Dmitri T