最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

java - Any way to stub multiple methods to return the same thing - Stack Overflow

programmeradmin1浏览0评论

Is there a simpler/better way to write the following?

@Mock Dog dog; // Dog is a record

when(dog.tail()).thenReturn(Optional.empty);
when(dog.paw()).thenReturn(Optional.empty);
when(dog.nose()).thenReturn(Optional.empty);
when(dog.eye()).thenReturn(Optional.empty);
..

Is there a simpler/better way to write the following?

@Mock Dog dog; // Dog is a record

when(dog.tail()).thenReturn(Optional.empty);
when(dog.paw()).thenReturn(Optional.empty);
when(dog.nose()).thenReturn(Optional.empty);
when(dog.eye()).thenReturn(Optional.empty);
..
Share Improve this question asked yesterday S.DanS.Dan 1,9266 gold badges34 silver badges59 bronze badges
Add a comment  | 

2 Answers 2

Reset to default 0
@Mock
Dog dog; // Dog is a record

doReturn(Optional.empty())
    .when(dog).tail()
    .when(dog).paw()
    .when(dog).nose()
    .when(dog).eye();

You can create a helper function that will stub all of the methods with the same return value:

import static .mockito.Mockito.*;

@Mock
Dog dog; // Dog is a record

private void mockDogMethods() {
    // List of method names
    List<String> methodsToMock = List.of("tail", "paw", "nose", "eye");

    methodsToMock.forEach(method -> 
        when(dog.getClass().getMethod(method).invoke(dog)).thenReturn(Optional.empty())
    );
}

// Use the helper in your test setup
mockDogMethods();
发布评论

评论列表(0)

  1. 暂无评论