HI *,
I have defined following scenario:
reader is java written jms queue reader
`
val scnReadMessage = scenario(“Read messages”).exec{ session =>
if (session != null) {
reader.readSingleMessageFromQueue()
}
session
}
`
the executions are logged in .log file:
`
REQUEST Load testing xyz1 81 xyz1 1575971760934 1575971760951 OK
USER Load testing xyz1 81 END 1575971760934 1575971760951
USER Load testing xyz1 81 START 1575971760934 1575971760934
USER Read messages 22 END 1575971760926 1575971760953
USER Read messages 22 START 1575971760926 1575971760926
REQUEST Load testing xyz2 82 xyz2 1575971760952 1575971760966 OK
USER Load testing xyz2 82 END 1575971760952 1575971760966
USER Load testing xyz2 82 START 1575971760952 1575971760952
`
but the report file doesnt show this particular test scenario. What I am doing wrong?
here is the setup:
`
setUp(
…
xyz1.inject(constantUsersPerSec(msgPerSeconds) during (duration)).protocols(jmsConfig),
scnReadMessage.inject(constantUsersPerSec(msgPerSeconds) during (duration)).protocols(jmsConfig)
)
`
Thanks in advance for suggestions