[arquillian-issues] [JBoss JIRA] (ARQ-563) @ArquillianResource in TestNG based tests causes test body not to be evaluated

Aslak Knutsen (JIRA) jira-events at lists.jboss.org
Thu Apr 5 16:42:49 EDT 2012


     [ https://issues.jboss.org/browse/ARQ-563?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Aslak Knutsen updated ARQ-563:
------------------------------

      Fix Version/s: 1.1.0.Beta1
                         (was: 1.0.0.Final)
    Forum Reference: http://community.jboss.org/message/636885#636885  (was: http://community.jboss.org/message/636885#636885)

    
> @ArquillianResource in TestNG based tests causes test body not to be evaluated
> ------------------------------------------------------------------------------
>
>                 Key: ARQ-563
>                 URL: https://issues.jboss.org/browse/ARQ-563
>             Project: Arquillian
>          Issue Type: Bug
>      Security Level: Public(Everyone can see) 
>          Components: Test Protocol SPIs and Implementation
>    Affects Versions: 1.0.0.CR4
>         Environment: Surefire 2.7.2, 2.9
> TestNG 5.14.6, 5.14.9
> AS 7.0.1 web
>            Reporter: Karel Piwko
>            Assignee: Andrew Rubinger
>            Priority: Blocker
>             Fix For: 1.1.0.Beta1
>
>
> Suppose following test case:
> {code}
> public class LowercaseConverterTest extends Arquillian {
> 	@Inject
> 	private LowercaseConverter lowercaseConverter;
> 	@Deployment
> 	public static JavaArchive createTestArchive() {
> 		return ShrinkWrap
> 				.create(JavaArchive.class, "test.jar")
> 				.addClasses(LowercaseConverter.class)
> 				.addAsManifestResource(EmptyAsset.INSTANCE,
> 						ArchivePaths.create("beans.xml"));
> 	}
> 	@Test
> 	public void testConvertToLowercase() {	    
> 	    
> 		Assert.assertEquals("martin",
> 				lowercaseConverter.convertToLowercase("Martin"));
> 	}
> }
> {code}
> However, if @ArquillianResource is used for a field injection, such as:
> {code}
> @ArquillianResource URL field;	
> {code}
> than test body is no longer executed and *all tests are reported as passed* even an obvious failure like:
> {code}
> @Test
> 	public void testConvertToLowercase() {	    
> 	    
> 	    Assert.fail();
> 	    
> 		Assert.assertEquals("karel",
> 				lowercaseConverter.convertToLowercase("Martin"));
> 	}
> {code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        


More information about the arquillian-issues mailing list