[jboss-cvs] jboss-seam/src/test/misc/org/jboss/seam/test ...

Gavin King gavin.king at jboss.com
Mon Jan 8 17:52:31 EST 2007


  User: gavin   
  Date: 07/01/08 17:52:31

  Modified:    src/test/misc/org/jboss/seam/test  InterceptorTest.java
  Log:
  oops
  
  Revision  Changes    Path
  1.27      +6 -6      jboss-seam/src/test/misc/org/jboss/seam/test/InterceptorTest.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: InterceptorTest.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/test/misc/org/jboss/seam/test/InterceptorTest.java,v
  retrieving revision 1.26
  retrieving revision 1.27
  diff -u -b -r1.26 -r1.27
  --- InterceptorTest.java	26 Oct 2006 13:55:36 -0000	1.26
  +++ InterceptorTest.java	8 Jan 2007 22:52:31 -0000	1.27
  @@ -1,4 +1,4 @@
  -//$Id: InterceptorTest.java,v 1.26 2006/10/26 13:55:36 gavin Exp $
  +//$Id: InterceptorTest.java,v 1.27 2007/01/08 22:52:31 gavin Exp $
   package org.jboss.seam.test;
   
   import java.lang.reflect.Method;
  @@ -71,7 +71,7 @@
         
         BijectionInterceptor bi = new BijectionInterceptor();
         bi.setComponent( new Component(Bar.class, appContext) );
  -      String result = (String) bi.bijectTargetComponent( new MockInvocationContext() {
  +      String result = (String) bi.bijectComponent( new MockInvocationContext() {
            @Override
            public Object getTarget()
            {
  @@ -103,7 +103,7 @@
            throw new RuntimeException(e);
         }
   
  -      bi.bijectTargetComponent( new MockInvocationContext() {
  +      bi.bijectComponent( new MockInvocationContext() {
            @Override
            public Object getTarget()
            {
  @@ -129,7 +129,7 @@
         try 
         {
            Contexts.getSessionContext().remove("otherFoo");
  -         bi.bijectTargetComponent( new MockInvocationContext() {
  +         bi.bijectComponent( new MockInvocationContext() {
               @Override
               public Object getTarget()
               {
  @@ -169,7 +169,7 @@
         biba.setComponent( new Component(BrokenAction.class, appContext) );
         try
         {
  -         biba.bijectTargetComponent( new MockInvocationContext() {
  +         biba.bijectComponent( new MockInvocationContext() {
      
               @Override
               public Object getTarget() {
  @@ -208,7 +208,7 @@
         final Action action = new Action();
         BijectionInterceptor bia = new BijectionInterceptor();
         bia.setComponent( new Component(Action.class, appContext) );
  -      result = (String) bia.bijectTargetComponent( new MockInvocationContext() {
  +      result = (String) bia.bijectComponent( new MockInvocationContext() {
   
            @Override
            public Object getTarget() {
  
  
  



More information about the jboss-cvs-commits mailing list