smicyk / groovy-jmeter

A Groovy-based DSL for building and running JMeter test plans from command line and more.
Apache License 2.0
13 stars 1 forks source link

Include vs insert #55

Closed AntonioSun closed 2 years ago

AntonioSun commented 2 years ago

The

What are the differences between the two?

The include "defines 'Include' controller", does it mean I can use it to include other existing JMeter test fragments? thx.

smicyk commented 2 years ago

Yes, the include is same as Include controller in JMeter so you should be able to add .jmx files if you have one.

The insert in specific to groovy scripts and it give possibility to insert other fragment of groovy script code.

AntonioSun commented 2 years ago

Gotcha. thx!