BAEL2941: Using JUnit SpringJUnit4ClassRunner with Parametrized

This commit is contained in:
Chirag Dewan
2019-05-18 19:20:02 +05:30
parent 7a7b07fdd2
commit 567fe3151c
6 changed files with 252 additions and 0 deletions
+12
View File
@@ -44,6 +44,11 @@
<artifactId>spring-context</artifactId>
<version>LATEST</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.persistence</groupId>
<artifactId>javax.persistence</artifactId>
@@ -66,6 +71,11 @@
<version>${awaitility.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>${servlet.api.version}</version>
</dependency>
</dependencies>
<build>
@@ -84,6 +94,8 @@
<hamcrest.version>2.0.0.0</hamcrest.version>
<awaitility.version>3.1.6</awaitility.version>
<junit.jupiter.version>5.4.0</junit.jupiter.version>
<spring.version>5.1.4.RELEASE</spring.version>
<servlet.api.version>4.0.1</servlet.api.version>
</properties>
</project>