Commit 7d33c0d4758347b27f5973f49b832ea1b61da0e1

Authored by Cleverson Sacramento
2 parents 1f86a4a8 8d9ae9d4
Exists in master

Merge branch 'master' of git@github.com:demoiselle/framework.git

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