Commit ae010b78f24a7a810060bbc9f9f89839c0ed22e1
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
Showing
2 changed files
with
12 additions
and
1 deletions
... | ... | @@ -120,13 +120,17 @@ |
120 | 120 | <groupId>org.apache.curator</groupId> |
121 | 121 | <artifactId>curator-recipes</artifactId> |
122 | 122 | </dependency> |
123 | - | |
124 | 123 | <dependency> |
125 | 124 | <groupId>junit</groupId> |
126 | 125 | <artifactId>junit</artifactId> |
127 | 126 | <scope>test</scope> |
128 | 127 | </dependency> |
129 | 128 | <dependency> |
129 | + <groupId>org.hamcrest</groupId> | |
130 | + <artifactId>hamcrest</artifactId> | |
131 | + <scope>test</scope> | |
132 | + </dependency> | |
133 | + <dependency> | |
130 | 134 | <groupId>org.mockito</groupId> |
131 | 135 | <artifactId>mockito-core</artifactId> |
132 | 136 | <scope>test</scope> | ... | ... |
... | ... | @@ -48,6 +48,7 @@ |
48 | 48 | <json-path.version>2.2.0</json-path.version> |
49 | 49 | <junit.version>4.12</junit.version> |
50 | 50 | <jupiter.version>5.7.1</jupiter.version> |
51 | + <hamcrest.version>2.2</hamcrest.version> | |
51 | 52 | <slf4j.version>1.7.7</slf4j.version> |
52 | 53 | <logback.version>1.2.3</logback.version> |
53 | 54 | <mockito.version>3.3.3</mockito.version> |
... | ... | @@ -1372,6 +1373,12 @@ |
1372 | 1373 | <scope>test</scope> |
1373 | 1374 | </dependency> |
1374 | 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 | 1382 | <groupId>org.junit.jupiter</groupId> |
1376 | 1383 | <artifactId>junit-jupiter-params</artifactId> |
1377 | 1384 | <version>${jupiter.version}</version> | ... | ... |