Skip to content

What is MockK

Devrath edited this page Mar 1, 2024 · 4 revisions

About MockK

  • MockK is a mocking framework used in kotlin for writing unit tests.
  • It is used for creating mock objects of real objects.
  • We can mock the objects and modify the properties.
  • In the mock object, We can Stub the methods and verify the interactions.

Clone this wiki locally