Mockito (EN)

Library

Java library for creating mock objects for tests

Mockito Architecture

flowchart LR     A[Test class] --> B[Mockito]     B --> C[Mock object]     C --> D[SUT - System Under Test]     D --> E[Dependency]     B --> F[Verification]     F --> G[Test result] 

In Context

  • Typically used together with JUnit
  • Related to: JUnit, TestNG, Hamcrest
  • Example use: Mocking database accesses in unit tests
Quelle: AI Generated