object Actions {
def myAction() {
//do some stuff
}
} val scn = scenario("My scenario").exec(Actions.myAction()) object Actions {
def notifyAllCompanies():ChainBuilder = {
var i:Int = 0;
for(i <- 0 to FeederUtils.companiesIterator - 1) {
var currentCompany = FeederUtils.activeCompanies(FeederUtils.companiesIterator)
if (FeederUtils.companiesIterator < FeederUtils.activeCompanies.size - 1) {
FeederUtils.companiesIterator+=1
} else {
FeederUtils.companiesIterator=0
}
Actions.notifyCompanyEntries(currentCompany("activeCompanyName"));
wait(2000);
}
}
It seems you're trying to write some Scala code without any Scala very basics. if so, you really should have a look at the first chapters from Twitter's Scala school: https://twitter.github.io/scala_school/
--
You received this message because you are subscribed to the Google Groups "Gatling User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to gatling+u...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
Thks again for your help, in fact I wrote a "void" procedure because I don't know what I have to return :)
--
--
class Test extends ActionBuilder {
def testMethod(): ActionBuilder = {
//Don't know how to return instance
}
}--
class MyClass extends Simulation {
val machine = "machineName"
val baseUri = "http://"+machine+"/baseUri";
val uri="/wsdlPort"
val httpProtocol = http
.baseURL(baseUri)
.disableWarmUp
/**
* CSV File record vectors
*/
object FeederUtils {
val socEntries = csv("entries.csv").records
val activeCompanies = csv("companies.csv").records
var companiesIterator = 0;
}
object Actions {
/**
* For each company, calls notifyCompanyEntries
*/
def notifyAllCompanies() {
var i = 0;
for(i <- 0 to FeederUtils.companiesIterator - 1) {
var currentCompany = FeederUtils.activeCompanies(FeederUtils.companiesIterator)
if (FeederUtils.companiesIterator < FeederUtils.activeCompanies.size - 1) {
FeederUtils.companiesIterator+=1
} else {
FeederUtils.companiesIterator=0
}
Actions.notifyCompanyEntries(currentCompany("activeCompanyName"));
wait(2000);
}
}
/**
* Notifies all entries for a company (reads entries vector)
*/
def notifyCompanyEntries(companyName: String) {
foreach(FeederUtils.socEntries, "record") {
exec(flattenMapIntoAttributes("${record}"))
.exec({session => session.set("codeSociete", companyName)})
.exec(http("Notify ${codeEntree}")
.post(uri)
.body(StringBody("""content"""))
.header("Content-Type", "text/xml;charset=UTF-8")
.header("SOAPAction","DCInterfaceRecherchePrix_ws_v1_rechercherPrix_Binder_rechercherPrix")
.basicAuth("Administrator","manage")
)}
}
}
/**
* Scenario : one user first...
*/
val scn = scenario("Soc test").exec() //TODO ?
setUp(
scn.inject(atOnceUsers(1)).protocols(httpProtocol)
)
}
You received this message because you are subscribed to a topic in the Google Groups "Gatling User Group" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/gatling/fxvHIlV8j74/unsubscribe.
To unsubscribe from this group and all its topics, send an email to gatling+u...@googlegroups.com.
activeCompanyName
valA
valB1 val notifyAllCompanies =
2 for (activeCompany <- activeCompanies)
3 yield Actions.notifyCompanyEntries(activeCompany("codeSociete"))I don't understand return type inference : adding "=" lets compiler infer return type
it seems kind of magic because
Anyway, one again thanks for helping. I really appreciate. I thought it will be easier to understand scala basics and to use it with gatling.
class Test extends Simulation {
val machine = "machine:port"
val baseUri = "http://" + machine + "/ws/linkToWs";
val httpProtocol = http
.baseURL(baseUri)
.disableWarmUp
object Actions {
def testCount = {
2
}
val test = repeat(Actions.testCount, "socId") {
group("Test") {
exec({ session => session.set("fieldName", "testValue") })
}
}
}
val scn = scenario("test").exec(Actions.test)
setUp(
scn.inject(atOnceUsers(1)).protocols(httpProtocol))
}--
Simulation Test started...
Exception in thread "main" java.lang.StackOverflowError
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
at Test.Actions(Test.scala:13)
at Test$Actions$.<init>(Test.scala:18)
at Test.Actions$lzycompute(Test.scala:13)
object Actions {Line 13 is :object Actions {Line 18 :val test = repeat(2, "socId") {
On 15 Dec 2014, at 10:21, Nicolas Amini-Lamy <nicolas.am...@gmail.com> wrote:
Excellent ! What an idea... !Do you understand this behaviour ? Stéphane, I know magic doesn't exist :)
Excellent ! What an idea... !Do you understand this behaviour ? Stéphane, I know magic doesn't exist :)
--
--
You received this message because you are subscribed to a topic in the Google Groups "Gatling User Group" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/gatling/fxvHIlV8j74/unsubscribe.
To unsubscribe from this group and all its topics, send an email to gatling+u...@googlegroups.com.