Thank you Pierre. I followed the link and copied and pasted the following below to the end of my simulation.scala file and am getting the following error:
Error:
not found: value httpConf
10:50:17.587 [ERROR] i.g.a.ZincCompiler$ - ).protocols(httpConf)
10:50:17.587 [ERROR] i.g.a.ZincCompiler$ - ^
10:50:17.608 [ERROR] i.g.a.ZincCompiler$ - one error found
Compilation failed
Copied Text:
setUp(
scn.inject(
nothingFor(4 seconds), // 1
atOnceUsers(10), // 2
rampUsers(10) over(5 seconds), // 3
constantUsersPerSec(20) during(15 seconds), // 4
constantUsersPerSec(20) during(15 seconds) randomized, // 5
rampUsersPerSec(10) to(20) during(10 minutes), // 6
rampUsersPerSec(10) to(20) during(10 minutes) randomized, // 7
splitUsers(1000) into(rampUsers(10) over(10 seconds)) separatedBy(10 seconds), // 8
splitUsers(1000) into(rampUsers(10) over(10 seconds)) separatedBy(atOnceUsers(30)), // 9
heavisideUsers(1000) over(20 seconds) // 10
).protocols(httpConf)
)What am I doing wrong?