// SetupfinalList<DriverBo> expectedResult =Arrays.asList(DriverBo.builder().id(0L).contactInformations(Arrays.asList(DriverContactInformationBo.builder().build())).build());// 调用queryList方法时,直接返回指定的数据Mockito.doReturn(Arrays.asList(Convert.toList(expectedResult))).when(driverServiceImplUnderTest).queryList(Arrays.asList(0L));// Run the testfinalList<DriverBo> result = driverServiceImplUnderTest.queryList(Arrays.asList(0L));// Verify the resultsassertThat(result.size()).isEqualTo(expectedResult.size());