Skip to content

Commit fbd8953

Browse files
committed
Gatling 3.0.0.0-RC1
1 parent d64e25e commit fbd8953

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Gatling do not has an ability to be run as normal unit test. Gatling team has it
88
We 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])
2525
class 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(

build.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
name := "gatling-junitrunner"
22
organization := "ru.pravo"
33
sonatypeProfileName := organization.value
4-
version := "2.3.0.0"
4+
version := "3.0.0.0-RC1"
55
scalaVersion := "2.12.3"
66

77
libraryDependencies ++= 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

1313
publishTo := Some(

src/test/scala/simulation/ExampleSimulation.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import ru.pravo.qa.gatling.junit.JUnitRunner
88
@RunWith(classOf[JUnitRunner])
99
class 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(

0 commit comments

Comments
 (0)