I have a Gatling test which should do the following:
- create user once
- retrieve user's data according to specific load model. Actual load testing.
- delete user after when done
Question: how to emulate this with Gatling? If I chain calls like :
val scn = scenario("Test scenario").exec(_create-user_).exec(_retrive-user_).exec(_delete-user_)
setUp(scn).protocols(httpConf))
then creating and deleting user will be part of the test.