最佳答案
因此,我开始为我们的 Java-Spring 项目编写测试。
我使用的是 JUnit 和 Mockito。据说,当我使用 when () ... then Return ()选项时,我可以模拟服务,而不用模拟它们。所以我想做的是,设置:
when(classIwantToTest.object.get().methodWhichReturnsAList(input))thenReturn(ListcreatedInsideTheTestClass)
但是,无论我使用哪个 when 子句,我总是会得到一个 NullpointerException,这当然是有意义的,因为 input 是 null。
同样,当我试图从一个对象模仿另一个方法时:
when(object.method()).thenReturn(true)
在那里我还得到了一个 Nullpoint,因为这个方法需要一个变量,而这个变量是没有设置的。
但我想用 when ()。.然后使用 return ()来创建这个变量等等。我只是想确保,如果有类调用这个方法,那么无论如何,只要返回 true 或者上面的列表。
这是我这边的误会,还是有什么别的问题?
密码:
public class classIWantToTest implements classIWantToTestFacade{
@Autowired
private SomeService myService;
@Override
public Optional<OutputData> getInformations(final InputData inputData) {
final Optional<OutputData> data = myService.getListWithData(inputData);
if (data.isPresent()) {
final List<ItemData> allData = data.get().getItemDatas();
//do something with the data and allData
return data;
}
return Optional.absent();
}
}
这是我的测试课:
public class Test {
private InputData inputdata;
private ClassUnderTest classUnderTest;
final List<ItemData> allData = new ArrayList<ItemData>();
@Mock
private DeliveryItemData item1;
@Mock
private DeliveryItemData item2;
@Mock
private SomeService myService;
@Before
public void setUp() throws Exception {
classUnderTest = new ClassUnderTest();
myService = mock(myService.class);
classUnderTest.setService(myService);
item1 = mock(DeliveryItemData.class);
item2 = mock(DeliveryItemData.class);
}
@Test
public void test_sort() {
createData();
when(myService.getListWithData(inputdata).get().getItemDatas());
when(item1.hasSomething()).thenReturn(true);
when(item2.hasSomething()).thenReturn(false);
}
public void createData() {
item1.setSomeValue("val");
item2.setSomeOtherValue("test");
item2.setSomeValue("val");
item2.setSomeOtherValue("value");
allData.add(item1);
allData.add(item2);
}