DORSETRIGS
Home

mockk (6 post)


posts by category not found!

How to use @MockBean without having to @Inject the Bean again?

Ditch the Inject Streamlining Your Spring Boot Tests with Mock Bean Testing in Spring Boot is crucial for ensuring the stability and functionality of your appli

2 min read 05-10-2024 46
How to use @MockBean without having to @Inject the Bean again?
How to use @MockBean without having to @Inject the Bean again?

How to mock Java static block

Mocking Static Blocks in Java A Practical Guide Javas static blocks those code snippets executed only once during class loading can pose a challenge when it com

2 min read 04-10-2024 51
How to mock Java static block
How to mock Java static block

Matching list using mockk in Kotlin ignoring items order

Matching Lists Using Mock K in Kotlin While Ignoring Item Order In Kotlin development particularly when writing unit tests its often necessary to verify that a

3 min read 24-09-2024 43
Matching list using mockk in Kotlin ignoring items order
Matching list using mockk in Kotlin ignoring items order

MockK - Stubbed method persists even after class mock was cleared

Understanding Mock K Stubbing Method Persistence Issue in Mocked Classes When working with testing frameworks in Kotlin developers often encounter challenges re

3 min read 24-09-2024 37
MockK - Stubbed method persists even after class mock was cleared
MockK - Stubbed method persists even after class mock was cleared

Kotlin Mockk Error: Missing calls inside verify { ... } block

Unlocking the Mysteries of Missing Calls in Kotlin Mock K When working with Mock K in Kotlin the dreaded Missing calls inside verify block error can be a real h

2 min read 05-09-2024 58
Kotlin Mockk Error: Missing calls inside verify { ... } block
Kotlin Mockk Error: Missing calls inside verify { ... } block

While updating the Kotlin version from 1.7.10 to 1.9.10 Multiple test cases are failing

Kotlin Coroutine Test Failures After Version Upgrade A Common Pitfall and Solutions Upgrading your Kotlin version can bring exciting new features and performanc

2 min read 03-09-2024 50
While updating the Kotlin version from 1.7.10 to 1.9.10 Multiple test cases are failing
While updating the Kotlin version from 1.7.10 to 1.9.10 Multiple test cases are failing