Commit ae010b78f24a7a810060bbc9f9f89839c0ed22e1

Authored by Sergey Matvienko
Committed by Andrew Shvayka
1 parent ef133b22

added hamcrest dependency to the test scope. The purpose is assertThat and vario…

…us Matchers with advanced output
@@ -120,13 +120,17 @@ @@ -120,13 +120,17 @@
120 <groupId>org.apache.curator</groupId> 120 <groupId>org.apache.curator</groupId>
121 <artifactId>curator-recipes</artifactId> 121 <artifactId>curator-recipes</artifactId>
122 </dependency> 122 </dependency>
123 -  
124 <dependency> 123 <dependency>
125 <groupId>junit</groupId> 124 <groupId>junit</groupId>
126 <artifactId>junit</artifactId> 125 <artifactId>junit</artifactId>
127 <scope>test</scope> 126 <scope>test</scope>
128 </dependency> 127 </dependency>
129 <dependency> 128 <dependency>
  129 + <groupId>org.hamcrest</groupId>
  130 + <artifactId>hamcrest</artifactId>
  131 + <scope>test</scope>
  132 + </dependency>
  133 + <dependency>
130 <groupId>org.mockito</groupId> 134 <groupId>org.mockito</groupId>
131 <artifactId>mockito-core</artifactId> 135 <artifactId>mockito-core</artifactId>
132 <scope>test</scope> 136 <scope>test</scope>
@@ -48,6 +48,7 @@ @@ -48,6 +48,7 @@
48 <json-path.version>2.2.0</json-path.version> 48 <json-path.version>2.2.0</json-path.version>
49 <junit.version>4.12</junit.version> 49 <junit.version>4.12</junit.version>
50 <jupiter.version>5.7.1</jupiter.version> 50 <jupiter.version>5.7.1</jupiter.version>
  51 + <hamcrest.version>2.2</hamcrest.version>
51 <slf4j.version>1.7.7</slf4j.version> 52 <slf4j.version>1.7.7</slf4j.version>
52 <logback.version>1.2.3</logback.version> 53 <logback.version>1.2.3</logback.version>
53 <mockito.version>3.3.3</mockito.version> 54 <mockito.version>3.3.3</mockito.version>
@@ -1372,6 +1373,12 @@ @@ -1372,6 +1373,12 @@
1372 <scope>test</scope> 1373 <scope>test</scope>
1373 </dependency> 1374 </dependency>
1374 <dependency> 1375 <dependency>
  1376 + <groupId>org.hamcrest</groupId>
  1377 + <artifactId>hamcrest</artifactId>
  1378 + <version>${hamcrest.version}</version>
  1379 + <scope>test</scope>
  1380 + </dependency>
  1381 + <dependency>
1375 <groupId>org.junit.jupiter</groupId> 1382 <groupId>org.junit.jupiter</groupId>
1376 <artifactId>junit-jupiter-params</artifactId> 1383 <artifactId>junit-jupiter-params</artifactId>
1377 <version>${jupiter.version}</version> 1384 <version>${jupiter.version}</version>