Commit 72d3e71c1a3f959971cadc99ec7b8916e9c8449e
1 parent
211cb260
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 Refatoração
Showing
2 changed files
with
0 additions
and
2 deletions
Show diff stats
impl/extension/jsf/src/test/java/exception/handler/authorization/AuthorizationHandledExceptionTest.java
... | ... | @@ -80,7 +80,6 @@ public class AuthorizationHandledExceptionTest { |
80 | 80 | try { |
81 | 81 | int status = client.executeMethod(method); |
82 | 82 | String message = method.getResponseBodyAsString(); |
83 | - System.out.println("MESAGE: " + message); | |
84 | 83 | |
85 | 84 | assertNotSame(HttpStatus.SC_INTERNAL_SERVER_ERROR, status); |
86 | 85 | assertTrue(message.contains("Authorization Message.")); | ... | ... |
impl/extension/jsf/src/test/java/exception/handler/authorization/AuthorizationNotHandledExceptionTest.java
... | ... | @@ -79,7 +79,6 @@ public class AuthorizationNotHandledExceptionTest { |
79 | 79 | try { |
80 | 80 | int status = client.executeMethod(method); |
81 | 81 | String message = method.getResponseBodyAsString(); |
82 | - System.out.println("MESAGE: " + message); | |
83 | 82 | |
84 | 83 | assertEquals(HttpStatus.SC_INTERNAL_SERVER_ERROR, status); |
85 | 84 | assertTrue(message.contains("Authorization Exception!")); | ... | ... |