Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

436
Views
Using mockk to match any varargs

I'm trying to mock an Android Context to return a string from a resource id. However I have trouble matching the stub to the call, I assume it is because of the varargs. However I am new to mockk so I might just miss something very easy.

I mock the context this way:

val context = mockk<Context>()
every { context.getString(any(), any()) } returns stringToReturn

But when calling getString on the object it throws the following exception:

io.mockk.MockKException: no answer found for: Context(#1).getString(2131689544, [])

If it is important, I call the function in the class under test similar to this. formatArgs may be empty but doesn't have to:

protected fun foo(stringResource: Int, vararg formatArgs: Any) {
    val s = context.getString(errorMessageStringResource, *formatArgs)

Any idea how I can fix this?

You can check the project and reproduce the exception here: Github Project

over 4 years ago · Santiago Trujillo
2 answers
Answer question

0

There is a related open issue in mockk v1.9: https://github.com/mockk/mockk/issues/224 (see referenced issues as well)

I tried several solutions but I ended up creating overloaded functions just for testing with mockk, eg.

class Context {
    // Renamed because of same JVM signature
    fun foo2(stringResource: Int, vararg formatArgs: Any) = foo(stringResource, formatArgs)

    // Function accepts 
    fun foo(stringResource: Int, formatArgs: args: Array<out Any>) = ...
}

then test the non-vararg foo() function with mockk.

I know it's an ugly workaround but if you find a better one please let me know :)

over 4 years ago · Santiago Trujillo Report

0

Version 1.9.1 introduces few additional matchers to match varargs.

https://mockk.io/#varargs

over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!