[Spring Boot] Introduce to Mockito

We have the implemetion: 

复制代码
@SpringBootApplication
public class MockitoDemoApplication {

    public static void main(String[] args) {
        SpringApplication.run(MockitoDemoApplication.class, args);
    }

}

public class SomeBusinessImpl {
    private DataService dataService;

    public SomeBusinessImpl(DataService dataService ){
        super();
        this.dataService = dataService;
    }

    public int findTheGreatestFromAllData() {
        int[] data = dataService.retieveAllData();
        int greatest = Integer.MIN_VALUE;
        for (int value : data) {

            if (value > greatest) {
                greatest = value;
            }
        }
        return greatest;
    }
}


public interface DataService {
    int[] retieveAllData();
}
复制代码

 

And we want to test agaisnst it:

复制代码
import org.junit.Test;

import static org.junit.Assert.assertEquals;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;

public class SomeBusinessMockTests {

    @Test
    public void testFindTheGreatestFromAllData() {
        DataService mockService = mock(DataService.class);
        when( mockService.retieveAllData()).thenReturn(new int[] {24, 6, 15});

        SomeBusinessImpl businessImpl = new SomeBusinessImpl(mockService);
        int result = businessImpl.findTheGreatestFromAllData();
        assertEquals(24, result);
    }
}
复制代码

 

posted @   Zhentiw  阅读(174)  评论(0编辑  收藏  举报
编辑推荐:
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
阅读排行:
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· AI技术革命,工作效率10个最佳AI工具
历史上的今天:
2016-04-17 [RxJS] Returning subscriptions from the subscribe function
2016-04-17 [RxJS] Creation operator: create()
2016-04-17 [RxJS] Creation operators: interval and timer
点击右上角即可分享
微信分享提示