我在试图找出TestSimulation.scala文件中我的'setUp'方法出了什么问题时遇到了问题。它抛出错误“无法解析符号setUp”从Intellij 13.1.5开始,它显示我有两种类型的'声明'可供从Simulation.class文件中选择,如下所示。选择任何一个似乎都无法解决问题。请协助。
Simulation.class:
package io.gatling.core.scenario
abstract class Simulation() extends scala.AnyRef {
....
def setUp(scenarios : io.gatling.core.structure.PopulatedScenarioBuilder*) : Simulation.this.SetUp = { /* compiled code */ }
class SetUp() extends scala.AnyRef {
....}
def setUp(scenarios : scala.List[io.gatling.core.structure.PopulatedScenarioBuilder]) : Simulation.this.SetUp = { /* compiled code */ }
}
TestSimulation.scala:
import io.gatling.core.Predef._
import io.gatling.http.Predef._
import sim_replacement.SimReplacement
import scala.concurrent.duration._
class TestSimulation extends Simulation {
val httpProtocol = http
.baseURL("http://xx.xx.x.xx")
.inferHtmlResources(BlackList(""".*\.css""", """.*\.js""", """.*\.ico"""), WhiteList())
.acceptHeader("""*/*""")
.acceptEncodingHeader("""gzip,deflate,sdch""")
.acceptLanguageHeader("""en-US,en;q=0.8""")
.contentTypeHeader("""application/x-www-form-urlencoded""")
.userAgentHeader("""Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.104 Safari/537.36""")
setUp(
SimReplacement.scn
.inject(rampRate(5 usersPerSec) to (100 usersPerSec) during (5 minutes))
.protocolConfig(httpProtocol)
)
答案 0 :(得分:0)
你确定你的项目针对的是正确的Scala版本(Gatling 2.0为2.10,主版/即将推出的2.1版为2.11)?