0 Replies Latest reply on Mar 3, 2017 10:11 AM by fdlprod

    No Exception catched when use wildfly-arquillian-container-managed lib

    fdlprod

      Hi,

       

      i can every time reproduce an error with this configuration :

       

      <dependency>

        <groupId>org.wildfly.arquillian</groupId>

        <artifactId>wildfly-arquillian-container-managed</artifactId>

           <version>2.0.0.Final</version>

        <scope>test</scope>

        </dependency>

       

      and use arquillian.xml

       

      to reproduce the error follow the tutorial for example :

       

      Démarrage Rapide · Arquillian Guides

       

      then replace embedded weld library by the one above,  then in test :

       

          @Test(enabled = true)

          public void should_create_greeting() throws Exception{

          throw new Exception();

          }

       

      the test PASS SUCCESSFULLY no error is catched so we can not create IT test....

       

      how can i do for make it work it is very annoying?