[weld-issues] [JBoss JIRA] Updated: (WELDX-87) weldContainer.instance().select().iterator() contains null element
Pete Muir (JIRA)
jira-events at lists.jboss.org
Thu Apr 8 06:51:37 EDT 2010
[ https://jira.jboss.org/jira/browse/WELDX-87?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Pete Muir updated WELDX-87:
---------------------------
Fix Version/s: Java SE 1.0.2.CR1
> weldContainer.instance().select().iterator() contains null element
> ------------------------------------------------------------------
>
> Key: WELDX-87
> URL: https://jira.jboss.org/jira/browse/WELDX-87
> Project: Weld Extensions
> Issue Type: Bug
> Components: Java SE
> Environment: Java 1.6, weld-se.1.0.1-Final
> Reporter: Samuli Saarinen
> Fix For: Java SE 1.0.2.CR1
>
>
> {code}
> private Weld weld;
> private WeldContainer container;
> @BeforeMethod
> public void beforeMethod() throws Exception {
> weld = new Weld();
> container = weld.initialize();
>
> }
>
> @Test
> public void testSelect() throws Exception {
> Iterator<Object> iter = container.instance().select().iterator();
> while (iter.hasNext()) {
> assertNotNull(iter.next());
> }
> }
> @AfterMethod
> public void afterMethod() {
> weld.shutdown();
> }
> {code}
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the weld-issues
mailing list