mockito 它很受欢迎 java 图书馆用于在单元测试中创建模拟对象。它允许开发人员模拟复杂对象和交互行为,以便更容易地单独测试每个组件。
基本 mockito 示例import static org.mockito.mockito.*; public class exampletest { @test public void testsomemethod() { // create a mock object of the class someclass mock = mock(someclass.class); // define behavior for the mock when(mock.somemethod()).thenreturn("mocked response"); // use the mock in your test assertequals("mocked response", mock.somemethod()); } }
使用 mockito 测试 spring boot 应用程序
在 spring boot 应用程序中,mockito 通常与 spring 在不启动整个应用程序的上下文的情况下,支持结合使用进行隔离和测试服务层或其他组件。
使用 mockito 测试 spring boot 应用程序步骤- 使用 @mock 注释创建模拟对象。
- 使用 @injectmocks 注释将这些模拟注入被测类别。
- 假如需要启动 spring 请使用上下文 @springboottest 集成测试。
- 使用when(...).thenreturn(...). 配置行为
import static org.mockito.Mockito.*; import org.springframework.boot.test.context.SpringBootTest; import org.junit.jupiter.api.Test; import org.mockito.InjectMocks; import org.mockito.Mock; import org.mockito.MockitoAnnotations; @SpringBootTest public class MyServiceTest { @Mock private MyRepository myRepository; @InjectMocks private MyService myService; @Test public void testGetData() { // Arrange MockitoAnnotations.openMocks(this); when(myRepository.getData()).thenReturn("Mocked Data"); // Act String result = myService.getData(); // Assert assertEquals("Mocked Data", result); } }
结论
mockito 简化单元测试,允许您创建模拟对象并定义其行为。和 spring boot 当一起使用时,它可以独立于应用程序的上下文来有效地测试组件。这有助于确保每个代码单元在没有完整应用程序设置的情况下正常工作。
什么是莫基托?如何使用? Mockito 测试 SpringBoot 详情请关注图灵教育的其他相关文章!