gpt4 book ai didi

junit - 在 Junit 测试脚本中注入(inject) CDI bean

转载 作者:行者123 更新时间:2023-12-02 04:48:00 25 4
gpt4 key购买 nike

我有一个在 JBoss AS 7.1.1 上运行的应用程序。这个应用程序使用了CDI规范的一些资源,如拦截器、注入(inject)等。我的应用程序的架构非常简单,结构如下:

view (xhtml and facelets)

controller (managed beans with @Named, except in the ViewScoped)

model (divided in two layers, service and dao)

service (with @Stateless annotation, here I use an interceptor that I created to manage the transactions with database, because I use native JDBC)

dao

我需要创建一些脚本来测试应用程序服务层,注入(inject)服务实现并调用业务方法。

我相信这种架构很常见。我对我的英语感到抱歉。

有人可以帮我吗?

谢谢!

最佳答案

如果您想测试整个容器,您可能需要 Arquillian 。如果您想使用模拟进行单元测试,请使用weld-se 在测试中启动一个独立的焊接容器。

new Weld().initialize().instance().select(YourClassName.class).get();

您可以使用 beans.xml 中的替代项来替换您的模拟对象。您还可以使用CDI-Unit这稍微简化了过程。

关于junit - 在 Junit 测试脚本中注入(inject) CDI bean,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21558917/

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