好了,问题解决了。问题是您在服务调用中模拟的对象必须与传递给控制器的对象相同,因此当模拟查看预期的对象时,它会说“哦,您给了我这个,所以您想要那个”。这是使其工作的修改后的代码:
Brand brand = new Brand();brand.setId(1L);brand.setName("Test Brand");brand.setDateCreated(new LocalDateTime());brand.setLastUpdated(new LocalDateTime());// since all I'm passing into the controller is a brand name...when(this.brandService.save(new Brand("Test Brand"))).thenReturn(brand);
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)