You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by de...@apache.org on 2007/02/26 00:11:14 UTC

svn commit: r511653 - in /myfaces/core/branches/jsf12/api: pom.xml src/test/java/javax/faces/Messages_xx_TEST.java src/test/java/javax/faces/component/UIComponentBaseTest.java

Author: dennisbyrne
Date: Sun Feb 25 15:11:13 2007
New Revision: 511653

URL: http://svn.apache.org/viewvc?view=rev&rev=511653
Log:
MYFACES-1321 bringing UIComponentBaseTest back into the suite
removed unused class Messages_xx_TEST

Removed:
    myfaces/core/branches/jsf12/api/src/test/java/javax/faces/Messages_xx_TEST.java
Modified:
    myfaces/core/branches/jsf12/api/pom.xml
    myfaces/core/branches/jsf12/api/src/test/java/javax/faces/component/UIComponentBaseTest.java

Modified: myfaces/core/branches/jsf12/api/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/core/branches/jsf12/api/pom.xml?view=diff&rev=511653&r1=511652&r2=511653
==============================================================================
--- myfaces/core/branches/jsf12/api/pom.xml (original)
+++ myfaces/core/branches/jsf12/api/pom.xml Sun Feb 25 15:11:13 2007
@@ -31,11 +31,6 @@
       <plugin>
         <artifactId>maven-surefire-plugin</artifactId>
         <version>2.1.2</version>
-        <configuration>
-          <excludes>
-            <exclude>**/*UIComponentBaseTest*</exclude>
-          </excludes>
-        </configuration>
       </plugin>
       <plugin>
         <!--

Modified: myfaces/core/branches/jsf12/api/src/test/java/javax/faces/component/UIComponentBaseTest.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/jsf12/api/src/test/java/javax/faces/component/UIComponentBaseTest.java?view=diff&rev=511653&r1=511652&r2=511653
==============================================================================
--- myfaces/core/branches/jsf12/api/src/test/java/javax/faces/component/UIComponentBaseTest.java (original)
+++ myfaces/core/branches/jsf12/api/src/test/java/javax/faces/component/UIComponentBaseTest.java Sun Feb 25 15:11:13 2007
@@ -19,6 +19,7 @@
 import javax.faces.el.ValueBinding;
 
 import junit.framework.Test;
+import junit.framework.TestSuite;
 
 import org.apache.shale.test.base.AbstractJsfTestCase;
 import org.apache.shale.test.mock.MockRenderKitFactory;
@@ -37,7 +38,7 @@
 	}
 
 	public static Test suite() {
-		return null; // keep this method or maven won't run it
+		return new TestSuite(UIComponentBaseTest.class); // keep this method or maven won't run it
 	}
 
 	protected void setUp() throws Exception