Running integration tests in Gradle
Your Gradle project can easily be setup to run integration tests using a specific Gradle task and source directory. This separates the integration tests from unit tests, making the project easier to understand and helping developers to work more productively. In this article you’ll learn the simplest way to run integration tests in your Gradle project by adding just a few lines of code to your build script. Benefits of integration tests Integration tests are just one part of an overall testing strategy....