group assertions not working

Hi,

I think there was mention of this but I can’t find it:

according to this
https://github.com/excilys/gatling/wiki/Structure-Elements#group

group data is aggregated into the parent but it doesn’t seem to be working?
assertion on parent group “a” is reporting true.

Thanks!
Alex

b / sleep (OK=10 KO=0 )

a / sleep (OK=10 KO=0 )

I don’t get it. Isn’t a b’s parent?

probably didn’t explain well:

parent / sleep: max response time is less than 1000: false

really? false while sleeps lasts 10 seconds?

then I can do assertions on all the kinds of sleeps at the "parent’ group level?

A group duration is the SUM of of the response times of the requests of the group, so it doesn’t work the way you intend it.

> parent / sleep: max response time is less than 1000: false

really? false while sleeps lasts 10 seconds?

> then I can do assertions on all the kinds of sleeps at the "parent'
group level?

A group duration is the SUM of of the response times of the requests of
the group, so it doesn't work the way you intend it.

ok thanks, I'll try to look at the code to work this out at some point.