February 2019
Intermediate to advanced
442 pages
11h 46m
English
Testing is an integral part of any software development process. It provides quality assurance of the application or product. While creating an application and entities, JHipster creates various automated unit test cases for both the frontend and backend (or the server side).
The server-side unit test cases are generated in the /src/test/java folder. They cover various layers of the application, such as the repository, service, security, REST API, and pagination. They are grouped in respective packages. You can run individual test cases from the IDE, or run all test cases from the Command Prompt with the mvnw test command. Make sure that you are in the application directory when you execute this command. In the case of Gradle, ...