File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
src/test/scala/simulation Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ Gatling do not has an ability to be run as normal unit test. Gatling team has it
88We mimic gatling versioning. For our purposes we use fourth digit in version number.
99` build.sbt `
1010``` scala
11- libraryDependencies += " ru.pravo" %% " gatling-junitrunner" % " 2. 3.0.0"
11+ libraryDependencies += " ru.pravo" %% " gatling-junitrunner" % " 3.0.0.0-RC1 "
1212```
1313
1414## Using
@@ -24,7 +24,7 @@ import ru.pravo.qa.gatling.junit.JUnitRunner
2424@ RunWith (classOf [JUnitRunner ])
2525class ExampleSimulation extends Simulation {
2626 val httpConf = http
27- .baseURL (" http://google.com" )
27+ .baseUrl (" http://google.com" )
2828
2929 val scn = scenario(" Positive Scenario" )
3030 .exec(
Original file line number Diff line number Diff line change 11name := " gatling-junitrunner"
22organization := " ru.pravo"
33sonatypeProfileName := organization.value
4- version := " 2. 3.0.0"
4+ version := " 3.0.0.0-RC1 "
55scalaVersion := " 2.12.3"
66
77libraryDependencies ++= Seq (
8- " io.gatling" % " gatling-test-framework" % " 2. 3.0" ,
8+ " io.gatling" % " gatling-test-framework" % " 3.0.0-RC1 " ,
99 " junit" % " junit" % " 4.12" ,
10- " io.gatling.highcharts" % " gatling-charts-highcharts" % " 2. 3.0"
10+ " io.gatling.highcharts" % " gatling-charts-highcharts" % " 3.0.0-RC1 "
1111)
1212
1313publishTo := Some (
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import ru.pravo.qa.gatling.junit.JUnitRunner
88@ RunWith (classOf [JUnitRunner ])
99class ExampleSimulation extends Simulation {
1010 val httpConf = http
11- .baseURL (" http://google.com" )
11+ .baseUrl (" http://google.com" )
1212
1313 val scn = scenario(" Positive Scenario" )
1414 .exec(
You can’t perform that action at this time.
0 commit comments