Commit d291d4548da2ad04c312d83220ce62e9a68d9e72

Authored by Emerson Oliveira
1 parent 424dfc7b
Exists in master

IN PROGRESS - issue FWK-120: Testes da extensão JSF (segurança +

mensagem + exceção) 
https://demoiselle.atlassian.net/browse/FWK-120
Adição da anotação @Ignore em classes que não possuem testes
impl/extension/jsf/src/test/java/exception/handler/common/DummyException.java
... ... @@ -36,8 +36,11 @@
36 36 */
37 37 package exception.handler.common;
38 38  
  39 +import org.junit.Ignore;
  40 +
39 41 import br.gov.frameworkdemoiselle.exception.ApplicationException;
40 42  
  43 +@Ignore
41 44 @ApplicationException
42 45 public class DummyException extends RuntimeException{
43 46  
... ...
impl/extension/jsf/src/test/java/exception/handler/common/ExceptionHandlerConfigBean.java
... ... @@ -36,8 +36,11 @@
36 36 */
37 37 package exception.handler.common;
38 38  
  39 +import org.junit.Ignore;
  40 +
39 41 import br.gov.frameworkdemoiselle.stereotype.ViewController;
40 42  
  43 +@Ignore
41 44 @ViewController
42 45 public class ExceptionHandlerConfigBean{
43 46  
... ...
impl/extension/jsf/src/test/java/xxxx/XTest.java
1 1 package xxxx;
2 2  
  3 +import org.junit.Ignore;
  4 +
3 5 //import java.net.URL;
4 6  
5 7 //import org.jboss.arquillian.container.test.api.Deployment;
... ... @@ -15,6 +17,7 @@ package xxxx;
15 17 //import com.thoughtworks.selenium.DefaultSelenium;
16 18  
17 19 //@RunWith(Arquillian.class)
  20 +@Ignore
18 21 public class XTest {
19 22  
20 23 // private static final String PATH = "src/test/resources/xxx";
... ...