mockito-kotlin VS strikt

Compare mockito-kotlin vs strikt and see what are their differences.

Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
mockito-kotlin strikt
6 2
3,071 528
0.0% -
6.1 6.6
18 days ago 5 months ago
Kotlin Kotlin
MIT License Apache License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

mockito-kotlin

Posts with mentions or reviews of mockito-kotlin. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-05-10.
  • Best practices for Unit Testing Android Apps with Mockk, Kotest and others
    5 projects | dev.to | 10 May 2023
    As you can see, I create mockUsersRepository object using mock( function. Then, in setup() method, I set up this repository in such a way so that it would return a list of hardcoded values. After this, on top of everything else, I check if, for mockUsersRepository object, getUsers method was called with verify function, in the test method. It’s important to note that Mockito is a very old framework and was originally written for Java. When Kotlin appeared, it turned out that out of the box this framework can work with some limitations, which is why an extension, mockito-kotlin, was released. The example above was written with it. Another Mockito’s limitation was that it was impossible to mock final classes and static methods, and all classes are final by default in Kotlin. Currently, this is solved through mockito-inline but, before, it was a serious limitation. In respect to Java development, there was and is an alternative for Android developers, PowerMock.
  • Why don't you write unit tests and integration tests to ksp project
    5 projects | dev.to | 11 Jan 2023
    In the demo project, I used junit and mockito. One thing we need to pre-learn do the unit test, that is ksp class diagram.
  • Spring with java vs Spring with kotlin
    4 projects | /r/Kotlin | 15 Sep 2022
    What's wrong with Mockito for Kotlin?
  • From Java to Kotlin. There and back again
    7 projects | dev.to | 1 Apr 2022
    Mockito does not work correctly with Kotlin types out of the box. Spring recommends using Mockk. There is also a special module for Mockito, which adds support for Kotlin - Mockito-Kotlin.
  • Avoiding Stringly-typed in Kotlin
    1 project | /r/Kotlin | 20 Feb 2022
  • Argument(s) are different! Wanted: Unit test
    1 project | /r/androiddev | 27 Dec 2020

strikt

Posts with mentions or reviews of strikt. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-01-06.
  • Kotlin assertion libraries - JUnit, Hamkrest and Strikt
    3 projects | /r/Kotlin | 6 Jan 2023
    In this episode we first look at improving our use of JUnit, using kotlin.test to improve type safety, and assertAll to make multiple checks on the same subject. Then we look at Hamkrest (https://github.com/npryce/hamkrest), a Kotlin reimplementation of the classic Hamcrest, before settingly on Strikt (https://strikt.io/) for our fluent assertions.
  • Which assertion library do you use?
    4 projects | /r/Kotlin | 12 Jul 2022
    Has anyone compared Strikt with AssertK? I'm especially interested in the number of matchers.

What are some alternatives?

When comparing mockito-kotlin and strikt you can also consider the following projects:

mockk - mocking library for Kotlin

Kotest - Powerful, elegant and flexible test framework for Kotlin with additional assertions, property testing and data driven testing

atrium - A multiplatform expectation library for Kotlin

kotlin-faker - Port of a popular ruby faker gem written in kotlin. Generate realistically looking fake data such as names, addresses, banking details, and many more, that can be used for testing and data anonymization purposes.

Kluent - Fluent Assertion-Library for Kotlin

balin - Balin is an automation library for Kotlin. It's basically a Selenium-WebDriver wrapper inspired by Geb.

Elmyr - A utility to make Kotlin/Java tests random yet reproducible

spek - A specification framework for Kotlin

mock-fuel - JUnit 5 extension to easily test with the http client Fuel for Kotlin

hamkrest - Hamcrest for Kotlin