我在spring boot应用程序中也有一个service和serviceImpl。当我想对其进行测试并尝试在junit测试类中模拟我的服务时,出现了NullPointerException
错误。
这是我的服务提示
package com.test;
import java.util.Date;
public class MyServiceImpl implements MyService {
@Override
public MyObject doSomething(Date date) {
return null;
}
}
这是我的测试班
package com.test;
import com.netflix.discovery.shared.Application;
import org.junit.jupiter.api.Test;
import org.junit.runner.RunWith;
import org.mockito.Mock;
import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.TestPropertySource;
import org.springframework.test.context.junit4.SpringRunner;
import static org.junit.jupiter.api.Assertions.assertNull;
@RunWith(SpringRunner.class)
@SpringBootTest(classes = Application.class)
@AutoConfigureMockMvc
@TestPropertySource(locations = "classpath:application-integrationtest.properties")
class MyServiceImplTest {
@Mock
MyService myservice;
@Test
void doSomethingTest() {
assertNull(myservice.doSomething(null));
}
}
答案 0 :(得分:4)
使用@Mock
批注时,您需要初始化模拟。您可以在带有@Before
注释的方法中完成此操作:
@Before public void initMocks() {
MockitoAnnotations.initMocks(this);
}
或者,您也可以将跑步者从SpringRunner
更改为:
@RunWith(MockitoJUnitRunner.class)
编辑:
还必须从实现中创建一个bean:
@Service
public class MyServiceImpl implements MyService