Commit 8d9ae9d4a660f65a6faa95a60b9e97eece44ab18

Authored by Ednara Oliveira
1 parent ec0ad539
Exists in master

Ajuste no teste ExceptionHandlerInterceptorTest

impl/core/src/test/java/br/gov/frameworkdemoiselle/internal/interceptor/ExceptionHandlerInterceptorTest.java
... ... @@ -155,6 +155,7 @@ public class ExceptionHandlerInterceptorTest {
155 155 @Test
156 156 public void manageSuccessfully() throws Throwable {
157 157 expect(this.context.proceed()).andReturn(null);
  158 + expect(this.context.getTarget()).andReturn(null);
158 159 replayAll();
159 160 assertEquals(null, this.interceptor.manage(this.context));
160 161 verify();
... ...