Finding import static statements for Mockito constructs

后端 未结 3 1823
醉梦人生
醉梦人生 2021-01-30 10:05

I\'m trying to crash through the brick wall between me and Mockito. I\'ve torn my hair out over trying to get correct import static statements for Mockito stuff. You\'d

3条回答
  •  心在旅途
    2021-01-30 10:30

    For is()

    import static org.hamcrest.CoreMatchers.*;
    

    For assertThat()

    import static org.junit.Assert.*;
    

    For when() and verify()

    import static org.mockito.Mockito.*;
    

提交回复
热议问题