Add a verifyVersions to the test FW (#47192)

The test FW has a method to check that it's implementation of getting
index and wire compatible versions as well as reasoning about which
version is released or not produces the same rezults as the simillar
implementation in the build.

This PR adds the `verifyVersions` task to the test FW so we have one
task to check everything related to versions.
This commit is contained in:
Alpar Torok 2019-10-10 11:23:24 +03:00
parent 3d334a262b
commit fbbe04b801
1 changed files with 4 additions and 0 deletions

View File

@ -68,3 +68,7 @@ test {
task integTest(type: Test) {
include "**/*IT.class"
}
tasks.register("verifyVersions") {
dependsOn test
}