Giter VIP home page Giter VIP logo

Comments (9)

oleksiyp avatar oleksiyp commented on May 18, 2024 3
staticMockk("com.company.module1.ExtensionKt").use {
    every { any<TestObject>().insert() } returns Completable.complete()
}

from mockk.

oleksiyp avatar oleksiyp commented on May 18, 2024 1

Note to use class name and not file name:

staticMockk("com.company.module1.FreeFunctionsKt").use {
    every{ getValue() } returns 1
}

from mockk.

vander2675 avatar vander2675 commented on May 18, 2024

Thanks for the quick response, but does this also work for top level functions?
The function in the Example is not inside a class just in a File named: "FreeFunctions.kt"

from mockk.

oleksiyp avatar oleksiyp commented on May 18, 2024

That's why you need staticMockk, Kotlin builds class FreeFunctionsKt with static methods out of such functions.

from mockk.

vander2675 avatar vander2675 commented on May 18, 2024

Okay thank you very much so far. Did get it working. Is it only possible to mock static functions inside the .use{} closure?

from mockk.

vander2675 avatar vander2675 commented on May 18, 2024

And one more question:
I have an extension Function on the Abstract class io.reactivex.Observable

fun Observable<TestObject>.insert(): Completable {
    return this
                  .map {
                      it.insert()
                  }
                  .ignoreElements()
}

I can't mock this Extension, because its an abstract class. And I cannot create an Object of Observable like

staticMockk("com.company.module1.ExtensionKt").use {
    every { Observable<TestObject>().insert() } returns Completable.complete()
}

Do you have any thoughts on that?

from mockk.

oleksiyp avatar oleksiyp commented on May 18, 2024

Something like that should be possible

from mockk.

vander2675 avatar vander2675 commented on May 18, 2024

I see, does any only mock this one extension Function of the Object and the rest behaves normally?
Using this Technique gives me undefined Behavior.
I got it compiling with:

staticMockk("com.company.module1.ExtensionsKt").use {
    every {.any<Observable<TestObject>>().insert() } returns Completable.complete()
}

But this seems to interfere with my Observable chain.

from mockk.

oleksiyp avatar oleksiyp commented on May 18, 2024

Just in case you still have an issue please report it again with stack traces, examples and more details. Closing this one

from mockk.

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.