Fix running tests with gradle

The tests for the extractor module rely on some core classes.

PiperOrigin-RevId: 291688932
This commit is contained in:
andrewlewis 2020-01-27 11:03:44 +00:00 committed by Andrew Lewis
parent 694f9844b0
commit 2fc426214f

View file

@ -41,6 +41,7 @@ dependencies {
compileOnly 'org.checkerframework:checker-qual:' + checkerframeworkVersion
compileOnly 'org.checkerframework:checker-compat-qual:' + checkerframeworkVersion
implementation project(modulePrefix + 'library-common')
testImplementation project(modulePrefix + 'library-core')
testImplementation project(modulePrefix + 'testutils')
testImplementation 'org.robolectric:robolectric:' + robolectricVersion
}