Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow unmocked classes in any variant #62

Merged
merged 1 commit into from
Feb 26, 2020
Merged

Conversation

cckroets
Copy link
Contributor

Previously unmocked classes were added to the testImplementation
configuration of each module that needed them. This leads to
duplicate work being done by every module that has unit tests.
Now there can be a single unmocking module that is included by
all other modules.

Usage:

unMock {
    includeInVariants android.libraryVariants
}

Previously unmocked classes were added to the testImplementation
configuration of each module that needed them. This leads to
duplicate work being done by every module that has unit tests.
Now there can be a single unmocking module that is included by
all other modules.

Usage:

unMock {
    includeInVariants android.libraryVariants
}
@bjoernQ bjoernQ merged commit cea2d09 into bjoernQ:master Feb 26, 2020
@zawadz88
Copy link

Hi @cckroets,
Could you explain how

Now there can be a single unmocking module that is included by
all other modules.

would work exactly, please? I tried to set up a single module but couldn't get it working...
Any tips would be much appreciated :)

E.g. would I still need to apply unmock plugin in each module?

@cckroets
Copy link
Contributor Author

@zawadz88 Sorry for the late reply. You should only need to apply the unMock plugin to the lower "test-library" module.

E.g. feature-lib and test-utils are two gradle modules.
In feature-lib add a dependency on the test utils module

// feature-lib/build.gradle
apply plugin: 'com.android.library'

dependencies {
    testImplementation project(':test-utils')
}

In test-utils apply the unMock plugin

// test-utils/build.gradle
apply plugin: 'com.android.library'
apply plugin: 'de.mobilej.unmock'

unMock {
   // keep ...
   includeInVariants android.libraryVariants
}

Let me know if you are getting a specific error with that setup

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants