Tips, tricks and gotchas when writing unit tests with Mockito by Jesse Kershaw

Поділитися
Вставка
  • Опубліковано 6 лют 2024
  • Mockito is synonymous with Unit Testing in Java and yet people often misuse features and write tests that are brittle and difficult to maintain. This talk aims to go over the common features of the mockito mocking library, common anti-patterns and better alternatives so that your tests are more understandable and easier to maintain. From how to create mocks and mock behaviour to how to inject mock beans in to a spring boot integration test context.
  • Наука та технологія

КОМЕНТАРІ • 6

  • @jesper7605
    @jesper7605 3 місяці тому +2

    Easy to understand and covered several useful concepts. Good job!

  • @KessirAdjaho
    @KessirAdjaho 3 місяці тому +6

    It's always important to mention the potential downsides of @MockBean. Its abuse can considerably slow down your integration tests and increase memory usage. Anytime you use @MockBean, you may be creating an additional spring context, which are expensive.

  • @metaltoad8462
    @metaltoad8462 2 місяці тому +1

    finally, someone said read the manual or official documentation

  • @ShivamNagpal
    @ShivamNagpal 3 місяці тому

    Awesome Talk!!

  • @jackofnotrades007
    @jackofnotrades007 3 місяці тому

    Great talk