Movatterモバイル変換


[0]ホーム

URL:


Skip to content
DEV Community
Log in Create account

DEV Community

Yonatan Karp-Rudin
Yonatan Karp-Rudin

Posted on • Originally published atyonatankarp.com on

Kotlin Code Smell 34 - Fragile Tests

TL;DR: Steer clear of non-deterministic tests..

Problem

  • Lack of determinism

  • Eroding confidence

  • Time squandered

Solution

  1. Ensure that the test is fully deterministic. Eradicate any potential for unpredictable behavior.

  2. Eliminate test coupling.

Examples

The terms "Fragile," "Intermittent," "Sporadic," and "Erratic" are often used interchangeably when discussing problematic tests in many development environments.

However, such tests erode the trust developers place in their test suites.

Such tests are best avoided.

Sample Code

Wrong

importorg.junit.jupiter.api.Assertions.assertEqualsimportorg.junit.jupiter.api.TestabstractclassSetTest{protectedabstractfunconstructor():MutableSet<String>@Testfun`testaddempty`(){valset=constructor()set.add("green")set.add("blue")assertEquals("[green, blue]",set.toString())// This is fragile since the outcome hinges on the set's// ordering, which isn't predefined and can vary based on// the set's implementation.}}
Enter fullscreen modeExit fullscreen mode

Right

importorg.junit.jupiter.api.Testimportkotlin.test.assertEqualsimportkotlin.test.assertTrueabstractclassSetTest{protectedabstractfunconstructor():MutableSet<String>@Testfun`testaddempty`(){valset=constructor()set.add("green")assertEquals("[green]",set.toString())}@Testfun`testentryatsingleentry`(){valset=createFromArgs("red")valresult=set.contains("red")assertTrue(result)}}
Enter fullscreen modeExit fullscreen mode

Conclusion

Fragile tests often indicate system coupling and manifest as non-deterministic or unpredictable behaviors.

Addressing and resolving these erratic tests can drain considerable developer time and energy.


I hope you enjoyed this journey and learned something new. If you want to stay updated with my latest thoughts and ideas, feel free to register for mynewsletter. You can also find me onLinkedIn orTwitter. Let's stay connected and keep the conversation going!


Credits

Top comments(0)

Subscribe
pic
Create template

Templates let you quickly answer FAQs or store snippets for re-use.

Dismiss

Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment'spermalink.

For further actions, you may consider blocking this person and/orreporting abuse

For new articles by me feel free to visit my blog at https://yonatankarp.com and sign to the newsletter list :)
  • Location
    Berlin, Germany
  • Education
    Reichman University
  • Work
    Senior Backend Engineer @ SumUp
  • Joined

More fromYonatan Karp-Rudin

DEV Community

We're a place where coders share, stay up-to-date and grow their careers.

Log in Create account

[8]ページ先頭

©2009-2025 Movatter.jp