@@ -38,7 +38,7 @@ class JakartaHttpServletRequestInstrumentationTest extends AgentTestRunner {
3838 InstrumentationBridge . clearIastModules()
3939 }
4040
41- void ' test getHeader' () {
41+ void ' test getHeader #iterationIndex ' () {
4242 setup :
4343 final iastModule = Mock (PropagationModule )
4444 InstrumentationBridge . registerIastModule(iastModule)
@@ -58,7 +58,7 @@ class JakartaHttpServletRequestInstrumentationTest extends AgentTestRunner {
5858 suite << testSuite()
5959 }
6060
61- void ' test getHeaders' () {
61+ void ' test getHeaders #iterationIndex ' () {
6262 setup :
6363 final iastModule = Mock (PropagationModule )
6464 InstrumentationBridge . registerIastModule(iastModule)
@@ -79,7 +79,7 @@ class JakartaHttpServletRequestInstrumentationTest extends AgentTestRunner {
7979 suite << testSuite()
8080 }
8181
82- void ' test getHeaderNames' () {
82+ void ' test getHeaderNames #iterationIndex ' () {
8383 setup :
8484 final iastModule = Mock (PropagationModule )
8585 InstrumentationBridge . registerIastModule(iastModule)
@@ -100,7 +100,7 @@ class JakartaHttpServletRequestInstrumentationTest extends AgentTestRunner {
100100 suite << testSuite()
101101 }
102102
103- void ' test getParameter' () {
103+ void ' test getParameter #iterationIndex ' () {
104104 setup :
105105 final iastModule = Mock (PropagationModule )
106106 InstrumentationBridge . registerIastModule(iastModule)
@@ -120,7 +120,7 @@ class JakartaHttpServletRequestInstrumentationTest extends AgentTestRunner {
120120 suite << testSuite()
121121 }
122122
123- void ' test getParameterValues' () {
123+ void ' test getParameterValues #iterationIndex ' () {
124124 setup :
125125 final iastModule = Mock (PropagationModule )
126126 InstrumentationBridge . registerIastModule(iastModule)
@@ -141,7 +141,7 @@ class JakartaHttpServletRequestInstrumentationTest extends AgentTestRunner {
141141 suite << testSuite()
142142 }
143143
144- void ' test getParameterMap' () {
144+ void ' test getParameterMap #iterationIndex ' () {
145145 setup :
146146 final iastModule = Mock (PropagationModule )
147147 InstrumentationBridge . registerIastModule(iastModule)
@@ -168,7 +168,7 @@ class JakartaHttpServletRequestInstrumentationTest extends AgentTestRunner {
168168 }
169169
170170
171- void ' test getParameterNames' () {
171+ void ' test getParameterNames #iterationIndex ' () {
172172 setup :
173173 final iastModule = Mock (PropagationModule )
174174 InstrumentationBridge . registerIastModule(iastModule)
@@ -189,7 +189,7 @@ class JakartaHttpServletRequestInstrumentationTest extends AgentTestRunner {
189189 suite << testSuite()
190190 }
191191
192- void ' test getCookies' () {
192+ void ' test getCookies #iterationIndex ' () {
193193 setup :
194194 final iastModule = Mock (PropagationModule )
195195 InstrumentationBridge . registerIastModule(iastModule)
@@ -210,7 +210,7 @@ class JakartaHttpServletRequestInstrumentationTest extends AgentTestRunner {
210210 suite << testSuite()
211211 }
212212
213- void ' test that get headers does not fail when servlet related code fails' () {
213+ void ' test that get headers does not fail when servlet related code fails #iterationIndex ' () {
214214 setup :
215215 final iastModule = Mock (PropagationModule )
216216 InstrumentationBridge . registerIastModule(iastModule)
@@ -238,7 +238,7 @@ class JakartaHttpServletRequestInstrumentationTest extends AgentTestRunner {
238238 suite << testSuite()
239239 }
240240
241- void ' test that get header names does not fail when servlet related code fails' () {
241+ void ' test that get header names does not fail when servlet related code fails #iterationIndex ' () {
242242 setup :
243243 final iastModule = Mock (PropagationModule )
244244 InstrumentationBridge . registerIastModule(iastModule)
@@ -266,7 +266,7 @@ class JakartaHttpServletRequestInstrumentationTest extends AgentTestRunner {
266266 suite << testSuite()
267267 }
268268
269- void ' test get query string' () {
269+ void ' test get query string #iterationIndex ' () {
270270 setup :
271271 final iastModule = Mock (PropagationModule )
272272 InstrumentationBridge . registerIastModule(iastModule)
@@ -287,7 +287,7 @@ class JakartaHttpServletRequestInstrumentationTest extends AgentTestRunner {
287287 suite << testSuite()
288288 }
289289
290- void ' test getInputStream' () {
290+ void ' test getInputStream #iterationIndex ' () {
291291 setup :
292292 final iastModule = Mock (PropagationModule )
293293 InstrumentationBridge . registerIastModule(iastModule)
@@ -308,7 +308,7 @@ class JakartaHttpServletRequestInstrumentationTest extends AgentTestRunner {
308308 suite << testSuite()
309309 }
310310
311- void ' test getReader' () {
311+ void ' test getReader #iterationIndex ' () {
312312 setup :
313313 final iastModule = Mock (PropagationModule )
314314 InstrumentationBridge . registerIastModule(iastModule)
@@ -329,7 +329,7 @@ class JakartaHttpServletRequestInstrumentationTest extends AgentTestRunner {
329329 suite << testSuite()
330330 }
331331
332- void ' test getRequestDispatcher' () {
332+ void ' test getRequestDispatcher #iterationIndex ' () {
333333 setup :
334334 final iastModule = Mock (UnvalidatedRedirectModule )
335335 InstrumentationBridge . registerIastModule(iastModule)
@@ -351,7 +351,7 @@ class JakartaHttpServletRequestInstrumentationTest extends AgentTestRunner {
351351 suite << testSuite()
352352 }
353353
354- void ' test getRequestURI' () {
354+ void ' test getRequestURI #iterationIndex ' () {
355355 setup :
356356 final iastModule = Mock (PropagationModule )
357357 InstrumentationBridge . registerIastModule(iastModule)
@@ -372,7 +372,7 @@ class JakartaHttpServletRequestInstrumentationTest extends AgentTestRunner {
372372 suite << testSuiteCallSites()
373373 }
374374
375- void ' test getPathInfo' () {
375+ void ' test getPathInfo #iterationIndex ' () {
376376 setup :
377377 final iastModule = Mock (PropagationModule )
378378 InstrumentationBridge . registerIastModule(iastModule)
@@ -393,7 +393,7 @@ class JakartaHttpServletRequestInstrumentationTest extends AgentTestRunner {
393393 suite << testSuiteCallSites()
394394 }
395395
396- void ' test getPathTranslated' () {
396+ void ' test getPathTranslated #iterationIndex ' () {
397397 setup :
398398 final iastModule = Mock (PropagationModule )
399399 InstrumentationBridge . registerIastModule(iastModule)
@@ -414,7 +414,7 @@ class JakartaHttpServletRequestInstrumentationTest extends AgentTestRunner {
414414 suite << testSuiteCallSites()
415415 }
416416
417- void ' test getRequestURL' () {
417+ void ' test getRequestURL #iterationIndex ' () {
418418 setup :
419419 final iastModule = Mock (PropagationModule )
420420 InstrumentationBridge . registerIastModule(iastModule)
@@ -435,7 +435,7 @@ class JakartaHttpServletRequestInstrumentationTest extends AgentTestRunner {
435435 suite << testSuiteCallSites()
436436 }
437437
438- void ' test getSession' () {
438+ void ' test getSession #iterationIndex ' () {
439439 setup :
440440 final iastModule = Mock (ApplicationModule )
441441 InstrumentationBridge . registerIastModule(iastModule)
0 commit comments