0
アーキタイプアプローチを使用してギャトリング用のmavenプロジェクトを生成しました。 eclipseからEngine.scalaファイルを実行すると、実行するシミュレーションの入力を求められます。 Gatling PropertiesBuilderを使用してシミュレーションクラスのプロパティを追加しましたが、まだシミュレーションIDを要求します。 Engine.scalaを実行したときに入力を求められないように、すべての情報を前もって提供したいと思います。ここで Gatlingの無人実行
はval props = new GatlingPropertiesBuilder
props.dataDirectory(IDEPathHelper.dataDirectory.toString)
props.resultsDirectory(IDEPathHelper.resultsDirectory.toString)
props.bodiesDirectory(IDEPathHelper.bodiesDirectory.toString)
props.binariesDirectory(IDEPathHelper.mavenBinariesDirectory.toString)
props.simulationClass("za.co.insights.gatling.RecordedSimulation")
props.runDescription("Testing")
props.mute()
//props.reportsOnly("true")
//props.
//Gatling.fromArgs
Gatling.fromMap(props.build)
を設定するためには、私のコードです無効。まだ入力を求めています。 – n4rzul
いいえ、そうです。私はあなたがそれを個別に孤立して動作させ、次にその動作を模倣することを提案するでしょう... – user666