You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@struts.apache.org by sc...@apache.org on 2006/02/18 13:36:22 UTC

svn commit: r378718 - /struts/shale/trunk/test-framework/src/java/org/apache/shale/test/base/AbstractJsfTestCase.java

Author: schof
Date: Sat Feb 18 04:36:13 2006
New Revision: 378718

URL: http://svn.apache.org/viewcvs?rev=378718&view=rev
Log:
Fixes problem with using myfaces implementation jar.  Previous to this fix the RENDER_KIT_FACTORY was being set to 'javax.faces.render.RenderKitFactory.'  Once loaded, it cannot be replaced with the necessary MockRenderKitFactory until factories are explicitly released.

Modified:
    struts/shale/trunk/test-framework/src/java/org/apache/shale/test/base/AbstractJsfTestCase.java

Modified: struts/shale/trunk/test-framework/src/java/org/apache/shale/test/base/AbstractJsfTestCase.java
URL: http://svn.apache.org/viewcvs/struts/shale/trunk/test-framework/src/java/org/apache/shale/test/base/AbstractJsfTestCase.java?rev=378718&r1=378717&r2=378718&view=diff
==============================================================================
--- struts/shale/trunk/test-framework/src/java/org/apache/shale/test/base/AbstractJsfTestCase.java (original)
+++ struts/shale/trunk/test-framework/src/java/org/apache/shale/test/base/AbstractJsfTestCase.java Sat Feb 18 04:36:13 2006
@@ -1,12 +1,12 @@
 /*
  * Copyright 2004 The Apache Software Foundation.
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
- * 
+ *
  *      http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -95,6 +95,7 @@
         response = new MockHttpServletResponse();
 
         // Set up JSF API Objects
+        FactoryFinder.releaseFactories();
 	FactoryFinder.setFactory(FactoryFinder.APPLICATION_FACTORY,
 				 "org.apache.shale.test.mock.MockApplicationFactory");
 	FactoryFinder.setFactory(FactoryFinder.FACES_CONTEXT_FACTORY,



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@struts.apache.org
For additional commands, e-mail: dev-help@struts.apache.org