today we discussed the way we want to create our scenarios. The one feature what we have with an OO language is the reusability of parts.
So we was talking about the idea building some parts in different classes and than put them all together.
The idea looks like:
object DomainScenario {
val scn = … // get/create domains
}
object DummyScenario {
val scn = … // do some high load stuff using domains
}
In words, we’d like to create some scenarios depending on each other and run them as ONE scenario (by many concurrent users)
What do you suggest about it?