java.util.MissingResourceException: Can’t find bundle for base name javax.servlet.LocalStrings, locale es_ES
Caused by: java.util.MissingResourceException: Can’t find bundle for base name javax.servlet.LocalStrings, locale es_ES That’s the real error. Your running tests are missing the servlet-api dependency. If you’re using maven make sure this dependency is in your project: <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>3.1.0</version> </dependency>