我想在TestNG测试用例中使用@Inject
注释。该测试由Arquillian在远程JBoss AS 6实例中执行。测试基本上是这样的:
测试用例
public class WorksheetControllerTest extends Arquillian {
@PersistenceContext
@Produces
@Default
EntityManager em;
@Inject
private UserTransaction utx;
@Deployment
public static WebArchive createTestArchive() {
return ShrinkWrap
.create( WebArchive.class, "test.war" )
.addClasses( SomeClass.class )
.addAsWebInfResource( new ByteArrayAsset( "<beans />".getBytes() ), ArchivePaths.create( "beans.xml" ) )
.addAsResource( "persistence-test.xml", "META-INF/persistence.xml");
}
//@BeforeClass
//@BeforeTest
@BeforeMethod
public void initTestData() throws Exception {
// ...
utx.begin();
em.persist( someEntity );
utx.commit();
}
@Test
public void testGetEmployeeFromTimesheet() throws Exception {
// ...
}
}
工作时......
如果我在单个测试方法中手动调用initTestData()
方法,我已正确注入资源以供使用。
......时无法工作
如果我使用上面给出的任何注释(@BeforeClass
,@BeforeTest
,@BeforeMethod
),测试用例将失败,因为所有注入的资源都为空(utx和em以及其他一些我想测试的课程。
所以,我问自己和你们的人:那里有什么问题?
亲切的问候, 塞巴斯蒂安
答案 0 :(得分:2)
@ Before *方法似乎被调用了两次。另请参阅https://issues.jboss.org/browse/ARQ-104?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12577331#comment-12577331
在注释方法中检查注入的资源是否为空应该可以解决问题。现在一切都很好。