gpt4 book ai didi

java - 如何为CDI编写Junit测试用例?

转载 作者:塔克拉玛干 更新时间:2023-11-02 07:45:42 26 4
gpt4 key购买 nike

我想为cdi写测试用例。我在我的 dao 中使用了@inject。任何人都可以帮助我如何为 cdi 编写测试用例。我尝试了下面的代码。但它不起作用。请帮助我。

public class StudentTest {

StudentService stuService;

StudentDAO stuDAO;

StudentVO stuVo;

@Before
public void setUp() throws Exception {

System.out.println("In Setup");

stuVo=new StudentVO ();

stuService=new StudentService();

stuDAO=Mockito.mock(StudentDAO.class);

stuVo.setStudId("123");

stuVo.setName("user1");

Mockito.when(stuDAO.getStudent(stuVo.getStuId())).thenReturn(student);
}

@Test
public void getStudent() throws DataAccessException {

StudentVO stVO=stuService.getStudent(123);

Assert.assertEquals("123", stVO.getStuId());
}
}

我的服务等级是

public class StudentService {

@Inject
StudentDAO stuDao;

public StudentVo getStudent(String id){

return stuDao.getStudent(id);

}

}

在失败跟踪中它只是显示为“java.lang.NullPointerException

 at com.stu.StudentService.getStudent(StudentService.java:104)
at com.stu.junit.POCJunit.getgetStudent(StudentTest.java:21)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:45)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:42)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:20)
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:28)
at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:263)...

最佳答案

我通过输入以下代码解决了它

@Mock
StudentDAO stuDAO;

@InjectMocks
StudentService stuService;

And in setUp() method I have written

MockitoAnnotations.initMocks(this);

关于java - 如何为CDI编写Junit测试用例?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26945427/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com