diff --git a/doc/style/style.xml b/doc/style/style.xml index 3562db20..2bd52c55 100644 --- a/doc/style/style.xml +++ b/doc/style/style.xml @@ -64,7 +64,7 @@ + value="CLASS_DEF, LITERAL_FOR, LITERAL_WHILE, LITERAL_DO, STATIC_INIT, INSTANCE_INIT"/> diff --git a/pom.xml b/pom.xml index 19ca297f..8dc7068b 100755 --- a/pom.xml +++ b/pom.xml @@ -40,8 +40,9 @@ 1 - 1.9.2 - 2.9.0 + 1.9.4 + 2.12.1 + 0.46 UTF-8 UTF-8 @@ -86,7 +87,7 @@ com.saucelabs saucerest - 1.0.39 + 1.0.42 @@ -105,12 +106,13 @@ com.google.truth truth - 0.42 + + ${truth.version} com.google.truth.extensions truth-java8-extension - 0.42 + ${truth.version} org.apache.logging.log4j log4j-api - 2.11.1 + 2.12.0 org.apache.logging.log4j log4j-core - 2.11.1 + 2.12.0 org.slf4j slf4j-simple - 1.7.25 + 1.7.26 io.rest-assured rest-assured - 3.2.0 + 4.0.0 org.codehaus.groovy @@ -159,7 +161,7 @@ org.apache.commons commons-lang3 - 3.8.1 + 3.9 org.json @@ -169,12 +171,12 @@ com.fasterxml.jackson.core jackson-annotations - 2.9.8 + 2.9.9 org.codehaus.groovy groovy-all - 2.5.5 + 2.5.7 pom @@ -182,7 +184,7 @@ org.spockframework spock-core - 1.2-groovy-2.5 + 1.3-groovy-2.5 test @@ -200,13 +202,16 @@ + org.apache.maven.plugins maven-compiler-plugin - 3.8.0 + 3.8.1 + + 1.8 1.8 @@ -216,12 +221,12 @@ org.apache.maven.plugins maven-checkstyle-plugin - 3.0.0 + 3.1.0 com.puppycrawl.tools checkstyle - 8.18 + 8.22 @@ -245,7 +250,7 @@ org.jacoco jacoco-maven-plugin - 0.8.2 + 0.8.4 @@ -293,7 +298,7 @@ org.codehaus.gmavenplus gmavenplus-plugin - 1.6.1 + 1.7.1 @@ -307,14 +312,18 @@ org.apache.maven.plugins maven-surefire-plugin - 2.22.0 + 3.0.0-M3 - ${surefireArgLine} + + ${surefireArgLine} + + */*Spec.* + @@ -329,7 +338,7 @@ org.apache.maven.plugins maven-failsafe-plugin - 2.22.0 + 3.0.0-M3 methods ${threads} @@ -372,18 +381,14 @@ + io.qameta.allure allure-maven - 2.9 + 2.10.0 ${allure.version} - - https://dl.bintray.com/qameta/maven/io/qameta/allure/allure-commandline/%s/allure-commandline-%s.zip @@ -391,7 +396,7 @@ org.apache.maven.plugins maven-source-plugin - 3.0.1 + 3.1.0 attach-sources @@ -405,7 +410,7 @@ org.apache.maven.plugins maven-javadoc-plugin - 3.0.1 + 3.1.0 -Xdoclint:none @@ -421,7 +426,17 @@ @{version} + + + + org.codehaus.mojo + versions-maven-plugin + 2.7 + + false + + - + \ No newline at end of file diff --git a/src/test/java/com/frameworkium/integration/theinternet/tests/TheInternetExampleTests.java b/src/test/java/com/frameworkium/integration/theinternet/tests/TheInternetExampleTests.java index f7b87f61..3e2e69b6 100644 --- a/src/test/java/com/frameworkium/integration/theinternet/tests/TheInternetExampleTests.java +++ b/src/test/java/com/frameworkium/integration/theinternet/tests/TheInternetExampleTests.java @@ -12,6 +12,7 @@ import java.util.stream.Stream; import static com.google.common.truth.Truth.assertThat; +import static com.google.common.truth.Truth.assertWithMessage; @Feature("The Internet Example Feature") @Test @@ -40,8 +41,8 @@ public void dragAndDrop() { .dragAontoB() .getListOfHeadings(); - assertThat(headings) - .named("Order of headings") + assertWithMessage("Order of headings") + .that(headings) .containsExactly("B", "A"); } @@ -105,7 +106,7 @@ public void sortDataTable() { .collect(Collectors.toList()); assertThat(sortedLastNameColumn.get(0)).isEqualTo("Bach"); - assertThat(sortedLastNameColumn).isOrdered(); + assertThat(sortedLastNameColumn).isInOrder(); } }