I want to create new users during the simulation run. (My service has a special API call that I can activate that allows me to create authenticated users for testing, tagged with a test session id. They're normal users, but for this extra test session id tag, so a single "delete test users with this test session id" deletes all the test users and their relationships & data.)
I suppose I could create the supernode users up front and populate a CSV file, but I thought the custom feeder was a more elegant approach. It saves having to do multi-step run procedures if I can just run the gatling script and it sets up the data it needs.
As an aside, is there a tearDown() / cleanUp() step that will run after all the scenarios in setUp has finished? I'd love to hook my "delete test users" call in at that point.
Stig