Maven doesn’t execute any unit test
Rename test files from **Tests.java to **Test.java or add the following configuration to pom.xml <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.14.1</version> <configuration> <includes> <include>**/*Tests.java</include> </includes> </configuration> </plugin>