Coder Social home page Coder Social logo

Comments (4)

tmurakami avatar tmurakami commented on June 15, 2024

If you want to test view module, could you try the following steps?

  1. Create a dummy BuildConfig in your view/src/androidTest directory.
// Kotlin
package com.example.yourapp // root package of three modules

object BuildConfig {
    const val APPLICATION_ID = "com.example.yourapp.view" // the applicationId of `view` module
}
  1. Create custom AndroidJUnitRunner in your view/src/androidTest directory.
// Kotlin
package com.example.yourapp.view.test

class CustomJUnitRunner : AndroidJUnitRunner() {
    override fun newApplication(cl: ClassLoader, className: String?, context: Context): Application {
        DexOpener.builder(context)
            .buildConfig(com.example.yourapp.BuildConfig::class.java) // Set the BuildConfig created at #1
            .build()
            .installTo(cl)
        return super.newApplication(cl, className, context)
    }
}
  1. Specify CustomJUnitRunner as the default test runner in your view/build.gradle.
android {
    defaultConfig {
        testInstrumentationRunner 'com.example.yourapp.view.test.CustomJUnitRunner'
    }
}

from dexopener.

JorgeCastilloPrz avatar JorgeCastilloPrz commented on June 15, 2024

And what would you do if the class to mock is defined on another module, and the module is pure kotlin / java? (no android {} block on build.gradle) @tmurakami

Did you find any workaround @vicpinm ?

from dexopener.

tmurakami avatar tmurakami commented on June 15, 2024

I have just released version 2.0.0-alpha01 which fixed this issue. You can now manually specify your root package. Please see the README and the examples for more information.

from dexopener.

JorgeCastilloPrz avatar JorgeCastilloPrz commented on June 15, 2024

😍 thanks!

from dexopener.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.