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,8 +36,11 @@
36 */ 36 */
37 package exception.handler.common; 37 package exception.handler.common;
38 38
  39 +import org.junit.Ignore;
  40 +
39 import br.gov.frameworkdemoiselle.exception.ApplicationException; 41 import br.gov.frameworkdemoiselle.exception.ApplicationException;
40 42
  43 +@Ignore
41 @ApplicationException 44 @ApplicationException
42 public class DummyException extends RuntimeException{ 45 public class DummyException extends RuntimeException{
43 46
impl/extension/jsf/src/test/java/exception/handler/common/ExceptionHandlerConfigBean.java
@@ -36,8 +36,11 @@ @@ -36,8 +36,11 @@
36 */ 36 */
37 package exception.handler.common; 37 package exception.handler.common;
38 38
  39 +import org.junit.Ignore;
  40 +
39 import br.gov.frameworkdemoiselle.stereotype.ViewController; 41 import br.gov.frameworkdemoiselle.stereotype.ViewController;
40 42
  43 +@Ignore
41 @ViewController 44 @ViewController
42 public class ExceptionHandlerConfigBean{ 45 public class ExceptionHandlerConfigBean{
43 46
impl/extension/jsf/src/test/java/xxxx/XTest.java
1 package xxxx; 1 package xxxx;
2 2
  3 +import org.junit.Ignore;
  4 +
3 //import java.net.URL; 5 //import java.net.URL;
4 6
5 //import org.jboss.arquillian.container.test.api.Deployment; 7 //import org.jboss.arquillian.container.test.api.Deployment;
@@ -15,6 +17,7 @@ package xxxx; @@ -15,6 +17,7 @@ package xxxx;
15 //import com.thoughtworks.selenium.DefaultSelenium; 17 //import com.thoughtworks.selenium.DefaultSelenium;
16 18
17 //@RunWith(Arquillian.class) 19 //@RunWith(Arquillian.class)
  20 +@Ignore
18 public class XTest { 21 public class XTest {
19 22
20 // private static final String PATH = "src/test/resources/xxx"; 23 // private static final String PATH = "src/test/resources/xxx";