You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@myfaces.apache.org by Matthias Wessendorf <ma...@apache.org> on 2010/02/06 15:27:27 UTC

BUILD FAILURE: Apache MyFaces Trinidad 1.2

Hello Matt,

because of REV 904625.
http://svn.apache.org/viewvc?view=revision&revision=904625

the build is failing.

Make sure you are using Java5 etc.

Thanks!
Matthias

On Sat, Feb 6, 2010 at 2:09 PM, Continuum@myfaces.zones.apache.org
<co...@myfaces.apache.org> wrote:
> Online report :
> http://myfaces.zones.apache.org:8080/continuum/buildResult.action?buildId=26039&projectId=48
>
> Build statistics:
>  State: Failed
>  Previous State: Ok
>  Started at: Sat 6 Feb 2010 13:01:39 +0000
>  Finished at: Sat 6 Feb 2010 13:08:50 +0000
>  Total time: 7m 11s
>  Build Trigger: Forced
>  Build Number: 343
>  Exit code: 1
>  Building machine hostname: myfaces.zones.apache.org
>  Operating system : SunOS(unknown)
>  Java Home version :         java version "1.5.0_22"
>         Java(TM) 2 Runtime Environment, Standard Edition (build
> 1.5.0_22-b03)
>         Java HotSpot(TM) Server VM (build 1.5.0_22-b03, mixed mode)
>        Builder version :
>         Maven version: 2.0.10
>         Java version: 1.5.0_22
>         OS name: "sunos" version: "5.10" arch: "x86" Family: "unix"
>
> ****************************************************************************
> SCM Changes:
> ****************************************************************************
> Changed: mcooper @ Fri 29 Jan 2010 21:19:14 +0000
> Comment: TRINIDAD-1696 acc (screen reader mode) layout tables should include
> role="presentation"
>
> Thanks to Dave Robinson for the patch:
>
> When using trh:tableLayout in our page to layout some UI components, it
> gives warning during Accessibility testing:
> "WARNING - This layout Table could be confused for a data table by Screen
> Readers"
> From the html perspective, this warning can be fixed by setting
> role="presentation" on the html table element.
>
> We can add role="presentation" to layout tables with the following addition
> to
>
> org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.OutputTextUtils.renderLayoutTableAttributes():
>
>  if (CoreRenderer.isScreenReaderMode(arc))
>  {
>   ResponseWriter writer = context.getResponseWriter();
>   writer.writeAttribute("datatable", "0", null);
>
> --> writer.writeAttribute("role", "presentation", null); <--
>
>  }
> Files changed:
>  /myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/xhtml/OutputUtils.java
> ( 904625 )
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/columnGroup-minimalScrRdr-golden.xml
> ( 904625 )
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/editableTable-minimalScrRdr-golden.xml
> ( 904625 )
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputColor-minimalScrRdr-golden.xml
> ( 904625 )
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputDate-minimalScrRdr-golden.xml
> ( 904625 )
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputFile-minimalScrRdr-golden.xml
> ( 904625 )
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputListOfValues-minimalScrRdr-golden.xml
> ( 904625 )
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputNumberSpinbox-minimalScrRdr-golden.xml
> ( 904625 )
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputText-minimalScrRdr-golden.xml
> ( 904625 )
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputText-rows-minimalScrRdr-golden.xml
> ( 904625 )
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/messages-minimalScrRdr-golden.xml
> ( 904625 )
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/messagesError-minimalScrRdr-golden.xml
> ( 904625 )
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/messagesFatal-minimalScrRdr-golden.xml
> ( 904625 )
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/messagesInfo-minimalScrRdr-golden.xml
> ( 904625 )
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/messagesWarn-minimalScrRdr-golden.xml
> ( 904625 )
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/navigationPaneBar-minimalScrRdr-golden.xml
> ( 904625 )
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/navigationPaneButtons-minimalScrRdr-golden.xml
> ( 904625 )
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/navigationPaneList-minimalScrRdr-golden.xml
> ( 904625 )
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/navigationPaneTabs-minimalScrRdr-golden.xml
> ( 904625 )
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelBorderLayout-minimalScrRdr-golden.xml
> ( 904625 )
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelBox-minimalScrRdr-golden.xml
> ( 904625 )
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelButtonBar-minimalScrRdr-golden.xml
> ( 904625 )
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelFormLayout-minimalScrRdr-golden.xml
> ( 904625 )
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelGroupLayout-minimalScrRdr-golden.xml
> ( 904625 )
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelHorizontalLayout-minimalScrRdr-golden.xml
> ( 904625 )
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelHorizontalLayout-separator-minimalScrRdr-golden.xml
> ( 904625 )
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelLabelAndMessage-facet-minimalScrRdr-golden.xml
> ( 904625 )
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelLabelAndMessage-minimalScrRdr-golden.xml
> ( 904625 )
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelList-minimalScrRdr-golden.xml
> ( 904625 )
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelPage-facets-minimalScrRdr-golden.xml
> ( 904625 )
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelPageHeader-minimalScrRdr-golden.xml
> ( 904625 )
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/rowLayout-minimalScrRdr-golden.xml
> ( 904625 )
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectBooleanCheckbox-minimalScrRdr-golden.xml
> ( 904625 )
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectBooleanRadio-minimalScrRdr-golden.xml
> ( 904625 )
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectManyCheckbox-minimalScrRdr-golden.xml
> ( 904625 )
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectManyListBox-minimalScrRdr-golden.xml
> ( 904625 )
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectManyShuttle-minimalScrRdr-golden.xml
> ( 904625 )
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectOneChoice-minimalScrRdr-golden.xml
> ( 904625 )
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectOneListbox-minimalScrRdr-golden.xml
> ( 904625 )
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectOneRadio-minimalScrRdr-golden.xml
> ( 904625 )
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectOrderShuttle-minimalScrRdr-golden.xml
> ( 904625 )
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectRangeChoiceBar-minimalScrRdr-golden.xml
> ( 904625 )
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectRangeChoiceBarBig-minimalScrRdr-golden.xml
> ( 904625 )
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/singleStepButtonBar-minimalScrRdr-golden.xml
> ( 904625 )
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/table-minimalScrRdr-golden.xml
> ( 904625 )
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/tableSelectMany-minimalScrRdr-golden.xml
> ( 904625 )
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/tableSelectOne-minimalScrRdr-golden.xml
> ( 904625 )
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/train-minimalScrRdr-golden.xml
> ( 904625 )
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/treeTable-minimalScrRdr-golden.xml
> ( 904625 )
>
> Changed: matzew @ Sat 30 Jan 2010 11:17:15 +0000
> Comment: added a jetty profile for the new awesome showcase
> Files changed:
>  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/pom.xml
> ( 904764 )
>
> Changed: jwaldman @ Tue 2 Feb 2010 18:17:22 +0000
> Comment: TRINIDAD-1702 performance: decrease memory of FileSystemStyleCache
> by reusing CSSStyle objects.
> Files changed:
>  /myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/style/cache/FileSystemStyleCache.java
> ( 905740 )
>
> Changed: matzew @ Tue 2 Feb 2010 19:09:07 +0000
> Comment: TRINIDAD-983 - Sortable model for localized text
>
>
> ported patch from Toma havelka to trinidad/jsf 1.2
> Files changed:
>  /myfaces/trinidad/trunk/trinidad-api/src/main/java/org/apache/myfaces/trinidad/model/SortableModel.java
> ( 905749 )
>
> Changed: ckormos @ Wed 3 Feb 2010 20:59:09 +0000
> Comment: fixed [TRINIDAD-1706] - Trinidad components showcase demo app
> doesn't include java sources in packaged war
> Files changed:
>  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/pom.xml
> ( 906239 )
>
> Changed: ckormos @ Wed 3 Feb 2010 21:07:19 +0000
> Comment: [trinidad components showcase] :
>    -  removed usage of commons logging, replaced with logging with
> java.util.
>    - added arg to sitemap generator to be able to specify base URL on
> execution.
> Files changed:
>  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/java/org/apache/myfaces/trinidaddemo/ComponentDemoRegistry.java
> ( 906243 )
>  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/java/org/apache/myfaces/trinidaddemo/NavigationHandlerPhaseListener.java
> ( 906243 )
>  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/java/org/apache/myfaces/trinidaddemo/support/PrettyUrlFilter.java
> ( 906243 )
>  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/java/org/apache/myfaces/trinidaddemo/support/impl/ComponentVariantDemoDescriptionProvider.java
> ( 906243 )
>  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/java/org/apache/myfaces/trinidaddemo/support/util/SitemapGenerator.java
> ( 906243 )
>
> Changed: bsullivan @ Thu 4 Feb 2010 22:44:48 +0000
> Comment: Make sure that the ID_KEY is present in the UIXFacesBeanImpl.java
> key set when the UIXFacesBeanImpl is delegating the storageof the ID
> property back to the UIXComponentBase.
> Files changed:
>  /myfaces/trinidad/trunk/trinidad-api/src/main/java/org/apache/myfaces/trinidad/bean/FacesBeanImpl.java
> ( 906703 )
>  /myfaces/trinidad/trunk/trinidad-api/src/main/java/org/apache/myfaces/trinidad/component/UIXFacesBeanImpl.java
> ( 906703 )
>  /myfaces/trinidad/trunk/trinidad-api/src/main/java/org/apache/myfaces/trinidad/util/CollectionUtils.java
> ( 906703 )
>
> Changed: matzew @ Fri 5 Feb 2010 07:25:50 +0000
> Comment: added getServerInfo() call
> Files changed:
>  /myfaces/trinidad/trunk/trinidad-api/src/main/java/org/apache/myfaces/trinidad/util/ExternalContextUtils.java
> ( 906828 )
>
> Changed: matzew @ Sat 6 Feb 2010 12:05:38 +0000
> Comment: updated scm url
> Files changed:
>  /myfaces/trinidad/trunk/pom.xml ( 907204 )
>
> ****************************************************************************
> Dependencies Changes:
> ****************************************************************************
> No dependencies changed
>
> ****************************************************************************
> Test Summary:
> ****************************************************************************
> Tests: 1319
> Failures: 7
> Total time: 52037
>
> ****************************************************************************
> Output:
> ****************************************************************************
> [INFO] Scanning for projects...
> [INFO] Reactor build order: [INFO]   Apache MyFaces Trinidad 1.2
> [INFO]   Apache MyFaces Trinidad Build
> [INFO]   Apache MyFaces Trinidad API
> [INFO]   Apache MyFaces Trinidad Impl
> [INFO]   Apache MyFaces Trinidad Examples
> [INFO]   Apache MyFaces Trinidad Blank Demo
> [INFO]   Apache MyFaces Trinidad Demo
> [INFO]   Apache MyFaces Trinidad Components Showcase
> [INFO] Searching repository for plugin with prefix: 'source'.
> [INFO] org.apache.maven.plugins: checking for updates from apache.snapshots
> [INFO] org.codehaus.mojo: checking for updates from apache.snapshots
> [INFO]
> ------------------------------------------------------------------------
> [INFO] Building Apache MyFaces Trinidad 1.2
> [INFO]    task-segment: [clean, install, source:jar, deploy]
> [INFO]
> ------------------------------------------------------------------------
> [INFO] [clean:clean]
> [INFO] Deleting directory
> /local/continuum-1.1-beta-2/working-directory/48/target
> [INFO] [xrts:generate-sources {execution: default}]
> [INFO] Setting property: classpath.resource.loader.class =>
> 'org.codehaus.plexus.velocity.ContextClassLoaderResourceLoader'.
> [INFO] Setting property: velocimacro.messages.on => 'false'.
> [INFO] Setting property: resource.loader => 'classpath'.
> [INFO] Setting property: resource.manager.logwhenfound => 'false'.
> [INFO] [remote-resources:process {execution: default}]
> [INFO] [xrts:generate-test-sources {execution: default}]
> [INFO] [site:attach-descriptor]
> [INFO] Unable to load parent project from a relative path: Could not find
> the model file
> '/local/continuum-1.1-beta-2/working-directory/48/../pom.xml'. for project
> unknown
> [INFO] Parent project loaded from repository.
> [INFO] Preparing source:jar
> [WARNING] Removing: jar from forked lifecycle, to prevent recursive
> invocation.
> [INFO] [xrts:generate-sources {execution: default}]
> [INFO] [source:jar {execution: attach-source}]
> [INFO] [install:install]
> [INFO] Installing /local/continuum-1.1-beta-2/working-directory/48/pom.xml
> to
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad/1.2.14-SNAPSHOT/trinidad-1.2.14-SNAPSHOT.pom
> [INFO] Preparing source:jar
> [WARNING] Removing: jar from forked lifecycle, to prevent recursive
> invocation.
> [INFO] [xrts:generate-sources {execution: default}]
> [INFO] [source:jar]
> [INFO] [xrts:generate-sources {execution: default}]
> [INFO] [remote-resources:process {execution: default}]
> [INFO] [xrts:generate-test-sources {execution: default}]
> [INFO] [site:attach-descriptor]
> [INFO] Unable to load parent project from a relative path: Could not find
> the model file
> '/local/continuum-1.1-beta-2/working-directory/48/../pom.xml'. for project
> unknown
> [INFO] Parent project loaded from repository.
> [INFO] Preparing source:jar
> [WARNING] Removing: jar from forked lifecycle, to prevent recursive
> invocation.
> [INFO] [xrts:generate-sources {execution: default}]
> [INFO] [source:jar {execution: attach-source}]
> [INFO] [install:install]
> [INFO] Installing /local/continuum-1.1-beta-2/working-directory/48/pom.xml
> to
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad/1.2.14-SNAPSHOT/trinidad-1.2.14-SNAPSHOT.pom
> [INFO] [deploy:deploy]
> [INFO] Retrieving previous build number from apache-maven-snapshots
> Uploading:
> scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad/1.2.14-SNAPSHOT/trinidad-1.2.14-SNAPSHOT.pom
> [INFO] Retrieving previous metadata from apache-maven-snapshots
> [INFO] Uploading repository metadata for: 'snapshot
> org.apache.myfaces.trinidad:trinidad:1.2.14-SNAPSHOT'
> [INFO] Uploading site descriptor for trinidad 1.2.14-SNAPSHOT site.xml
> [INFO] Retrieving previous metadata from apache-maven-snapshots
> [INFO] Uploading repository metadata for: 'artifact
> org.apache.myfaces.trinidad:trinidad'
> [INFO]
> ------------------------------------------------------------------------
> [INFO] Building Apache MyFaces Trinidad Build
> [INFO]    task-segment: [clean, install, source:jar, deploy]
> [INFO]
> ------------------------------------------------------------------------
> [INFO] [clean:clean]
> [INFO] Deleting directory
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target
> [INFO] [xrts:generate-sources {execution: default}]
> [INFO] [remote-resources:process {execution: default}]
> [INFO] [faces:generate-master-faces-config {execution: default}]
> [INFO] Generating META-INF/maven-faces-plugin/faces-config.xml
> [INFO] [resources:resources]
> [INFO] Using default encoding to copy filtered resources.
> [INFO] [compiler:compile]
> [INFO] No sources to compile
> [INFO] [xrts:generate-test-sources {execution: default}]
> [INFO] [resources:testResources]
> [INFO] Using default encoding to copy filtered resources.
> [INFO] [compiler:testCompile]
> [INFO] No sources to compile
> [INFO] [surefire:test]
> [INFO] Surefire report directory:
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/surefire-reports
>
> -------------------------------------------------------
> T E S T S
> -------------------------------------------------------
> There are no tests to run.
>
> Results :
>
> Tests run: 0, Failures: 0, Errors: 0, Skipped: 0
>
> [INFO] [jar:jar]
> [INFO] Building jar:
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT.jar
> [INFO] Preparing source:jar
> [WARNING] Removing: jar from forked lifecycle, to prevent recursive
> invocation.
> [INFO] [xrts:generate-sources {execution: default}]
> [INFO] [source:jar {execution: attach-source}]
> [INFO] Building jar:
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> [INFO] [install:install]
> [INFO] Installing
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT.jar
> to
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT.jar
> [INFO] Installing
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> to
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> [INFO] Preparing source:jar
> [WARNING] Removing: jar from forked lifecycle, to prevent recursive
> invocation.
> [INFO] [xrts:generate-sources {execution: default}]
> [INFO] [source:jar]
> [INFO] Building jar:
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> [INFO] [xrts:generate-sources {execution: default}]
> [INFO] [remote-resources:process {execution: default}]
> [INFO] [faces:generate-master-faces-config {execution: default}]
> [INFO] Generating META-INF/maven-faces-plugin/faces-config.xml
> [INFO] [resources:resources]
> [INFO] Using default encoding to copy filtered resources.
> [INFO] [compiler:compile]
> [INFO] No sources to compile
> [INFO] [xrts:generate-test-sources {execution: default}]
> [INFO] [resources:testResources]
> [INFO] Using default encoding to copy filtered resources.
> [INFO] [compiler:testCompile]
> [INFO] No sources to compile
> [INFO] [surefire:test]
> [INFO] Surefire report directory:
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/surefire-reports
>
> -------------------------------------------------------
> T E S T S
> -------------------------------------------------------
> There are no tests to run.
>
> Results :
>
> Tests run: 0, Failures: 0, Errors: 0, Skipped: 0
>
> [INFO] [jar:jar]
> [INFO] Building jar:
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT.jar
> [INFO] Preparing source:jar
> [WARNING] Removing: jar from forked lifecycle, to prevent recursive
> invocation.
> [INFO] [xrts:generate-sources {execution: default}]
> [INFO] [source:jar {execution: attach-source}]
> [INFO] Building jar:
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> [INFO] [install:install]
> [INFO] Installing
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT.jar
> to
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT.jar
> [INFO] Installing
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> to
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> [INFO] Installing
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> to
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> [INFO] Installing
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> to
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> [INFO] [deploy:deploy]
> [INFO] Retrieving previous build number from apache-maven-snapshots
> Uploading:
> scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT.jar
> [INFO] Retrieving previous metadata from apache-maven-snapshots
> [INFO] Uploading repository metadata for: 'snapshot
> org.apache.myfaces.trinidad:trinidad-build:1.2.14-SNAPSHOT'
> [INFO] Retrieving previous metadata from apache-maven-snapshots
> [INFO] Uploading repository metadata for: 'artifact
> org.apache.myfaces.trinidad:trinidad-build'
> [INFO] Uploading project information for trinidad-build 1.2.14-SNAPSHOT
> [INFO] Retrieving previous build number from apache-maven-snapshots
> Uploading:
> scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> [INFO] Retrieving previous build number from apache-maven-snapshots
> Uploading:
> scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> [INFO] Retrieving previous build number from apache-maven-snapshots
> Uploading:
> scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> [INFO]
> ------------------------------------------------------------------------
> [INFO] Building Apache MyFaces Trinidad API
> [INFO]    task-segment: [clean, install, source:jar, deploy]
> [INFO]
> ------------------------------------------------------------------------
> [INFO] [clean:clean]
> [INFO] Deleting directory
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target
> [INFO] [xrts:generate-sources {execution: default}]
> [INFO] Generating 54 XRTS bundles to
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/maven-xrts-plugin/main/java
> [INFO] [faces:generate-components {execution: default}]
> [INFO] Generated 133 component(s)
> [INFO] [i18n:generate-locale-elements {execution: default}]
> [INFO] Generating LocaleElements
> [INFO] [remote-resources:process {execution: default}]
> [INFO] [resources:resources]
> [INFO] Using default encoding to copy filtered resources.
> [INFO] [compiler:compile]
> [INFO] Compiling 405 source files to
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/classes
> [INFO] [xrts:generate-test-sources {execution: default}]
> [INFO] Generating 1 XRTS bundles to
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/maven-xrts-plugin/test/java
> [INFO] [resources:testResources]
> [INFO] Using default encoding to copy filtered resources.
> [INFO] [compiler:testCompile]
> [INFO] Compiling 93 source files to
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/test-classes
> [INFO] [surefire:test]
> [INFO] Surefire report directory:
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/surefire-reports
>
> -------------------------------------------------------
> T E S T S
> -------------------------------------------------------
> Running org.apache.myfaces.trinidad.component.AddRemoveTest
> Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.081 sec
> Running org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest
> descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.159 sec
> Running org.apache.myfaces.trinidad.util.ServiceTest
> Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.005 sec
> Running org.apache.myfaces.trinidad.component.UIXSelectManyTest
> Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.387 sec
> Running
> org.apache.myfaces.trinidad.component.core.layout.CoreShowDetailHeaderTest
> Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.044 sec
> Running org.apache.myfaces.trinidad.component.html.HtmlTableLayoutTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018 sec
> Running org.apache.myfaces.trinidad.validator.LengthValidatorTest
> Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.028 sec
> Running org.apache.myfaces.trinidad.bean.util.ValueMapTest
> Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.01 sec
> Running org.apache.myfaces.trinidad.component.html.HtmlScriptTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.201 sec
> Running org.apache.myfaces.trinidad.component.core.CoreFormTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.022 sec
> Running
> org.apache.myfaces.trinidad.component.core.input.CoreSelectBooleanCheckboxTest
> Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.019 sec
> Running org.apache.myfaces.trinidad.component.html.HtmlCellFormatTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018 sec
> Running org.apache.myfaces.trinidad.validator.LongRangeValidatorTest
> Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec
> Running org.apache.myfaces.trinidad.validator.DateRestrictionValidatorTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.022 sec
> Running org.apache.myfaces.trinidad.component.core.layout.CorePanelRadioTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.022 sec
> Running org.apache.myfaces.trinidad.component.UIXTreeTest
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014 sec
> Running org.apache.myfaces.trinidad.component.UIXSwitcherTest
> Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014 sec
> Running org.apache.myfaces.trinidad.component.core.layout.CorePanelBoxTest
> Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018 sec
> Running org.apache.myfaces.trinidad.convert.ColorConverterTest
> Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.179 sec
> Running org.apache.myfaces.trinidad.component.core.nav.CoreBreadCrumbsTest
> Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.039 sec
> Running org.apache.myfaces.trinidad.util.Base64InputStreamTest
> Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.009 sec
> Running org.apache.myfaces.trinidad.bean.PropertyKeyTest
> Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.003 sec
> Running org.apache.myfaces.trinidad.component.core.data.CoreColumnTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.026 sec
> Running org.apache.myfaces.trinidad.component.core.output.CoreSeparatorTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018 sec
> Running org.apache.myfaces.trinidad.component.core.output.CoreOutputTextTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.023 sec
> Running org.apache.myfaces.trinidad.component.html.HtmlFrameTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017 sec
> Running org.apache.myfaces.trinidad.util.FastMessageFormatTest
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec
> Running org.apache.myfaces.trinidad.validator.RegExpValidatorTest
> Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec
> Running org.apache.myfaces.trinidad.bean.FacesBeanImplTest
> Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.13 sec
> Running org.apache.myfaces.trinidad.component.core.layout.CoreShowDetailTest
> Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018 sec
> Running org.apache.myfaces.trinidad.component.UIXProcessTest
> Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017 sec
> Running
> org.apache.myfaces.trinidad.component.core.layout.CorePanelSideBarTest
> Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 sec
> Running org.apache.myfaces.trinidad.component.html.HtmlFrameBorderLayoutTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.022 sec
> Running org.apache.myfaces.trinidad.convert.TrinidadDateTimeConverterTest
> Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.242 sec
> Running org.apache.myfaces.trinidad.component.html.HtmlHtmlTest
> Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.012 sec
> Running org.apache.myfaces.trinidad.component.UIXSelectOrderTest
> Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 sec
> Running org.apache.myfaces.trinidad.render.RenderUtilsTest
>  Found PropertyDescriptor java.beans.PropertyDescriptor@7bf628e6Feb 6, 2010
> 1:04:40 PM org.apache.myfaces.trinidad.util.ComponentUtils
> _findRelativeComponentDeprecated
> WARNING: Could not find the component with scopedId :::button1 from
> UIXInput[UIXEditableFacesBeanImpl, id=input1] with the supported syntax. The
> component was found with the deprecated syntax. Please use the supported
> syntax.
> Feb 6, 2010 1:04:40 PM org.apache.myfaces.trinidad.render.RenderUtils
> getRelativeId
> WARNING: Could not find the component with scopedId commandButton1 from
> RenderUtilsTest$TestNamingContainer[UIXFacesBeanImpl, id=table1] with the
> supported syntax. The component was found with the deprecated syntax. Please
> use the supported syntax.
> Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.01 sec
> Running org.apache.myfaces.trinidad.validator.DateTimeRangeValidatorTest
> Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.071 sec
> Running org.apache.myfaces.trinidad.resource.AggregatingResourceLoaderTest
> Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014 sec
> Running org.apache.myfaces.trinidad.component.core.layout.CorePanelListTest
> Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018 sec
> Running
> org.apache.myfaces.trinidad.component.core.layout.CorePanelHeaderTest
> Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017 sec
> Running org.apache.myfaces.trinidad.model.RowKeySetImplTest
> Tests run: 14, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.026 sec
> Running org.apache.myfaces.trinidad.util.Base64OutputStreamTest
> Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.011 sec
> Running org.apache.myfaces.trinidad.util.ArrayMapTest
> Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004 sec
> Running org.apache.myfaces.trinidad.convert.JsfNumberConverterTest
> resource bundle javax.faces.Messages could not be found
> Tests run: 16, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.029 sec
> Running
> org.apache.myfaces.trinidad.component.core.layout.CorePanelGroupLayoutTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.025 sec
> Running org.apache.myfaces.trinidad.validator.ByteLengthValidatorTest
> Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014 sec
> Running org.apache.myfaces.trinidad.component.core.nav.CoreTrainTest
> Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.002 sec
> Running org.apache.myfaces.trinidad.bean.TypeTest
> Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.003 sec
> Running org.apache.myfaces.trinidad.util.ListFromCollectionTest
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004 sec
> Running
> org.apache.myfaces.trinidad.component.core.data.CoreSelectRangeChoiceBarTest
> Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.022 sec
> Running org.apache.myfaces.trinidad.component.core.output.CoreSpacerTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.224 sec
> Running
> org.apache.myfaces.trinidad.component.core.layout.CorePanelAccordionTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018 sec
> Running org.apache.myfaces.trinidad.component.FindComponentTest
> Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.013 sec
> Running org.apache.myfaces.trinidad.model.RowKeySetTreeImplTest
> descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> Tests run: 13, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.039 sec
> Running org.apache.myfaces.trinidad.model.SortableModelTest
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=name
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=name
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=name
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=name
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=name
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=object
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7ac113d1descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=name
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=name
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=name
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=name
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=name
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=name
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=name
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=name
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.064 sec
> Running org.apache.myfaces.trinidad.validator.DoubleRangeValidatorTest
> Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 sec
> Running org.apache.myfaces.trinidad.component.UIXShowDetailTest
> Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 sec
> Running org.apache.myfaces.trinidad.component.UIXInputTest
> Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.05 sec
> Running org.apache.myfaces.trinidad.convert.TrinidadNumberConverterTest
> Tests run: 18, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.034 sec
> Running org.apache.myfaces.trinidad.convert.JsfDateTimeConverterTest
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.059 sec
> Running
> org.apache.myfaces.trinidad.component.core.layout.CorePanelBorderLayoutTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.028 sec
> Running org.apache.myfaces.trinidad.util.FindRelativeComponentTest
>  Found PropertyDescriptor java.beans.PropertyDescriptor@e6e3b8feFeb 6, 2010
> 1:04:41 PM org.apache.myfaces.trinidad.util.ComponentUtils
> _findRelativeComponentDeprecated
> WARNING: Could not find the component with scopedId :::commandButton1 from
> UIXInput[UIXEditableFacesBeanImpl, id=input1] with the supported syntax. The
> component was found with the deprecated syntax. Please use the supported
> syntax.
> Feb 6, 2010 1:04:41 PM org.apache.myfaces.trinidad.util.ComponentUtils
> _findRelativeComponentDeprecated
> WARNING: Could not find the component with scopedId :::commandButton1 from
> UIXInput[UIXEditableFacesBeanImpl, id=inputA] with the supported syntax. The
> component was found with the deprecated syntax. Please use the supported
> syntax.
> Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec
> Running
> org.apache.myfaces.trinidad.component.core.layout.CorePanelChoiceTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018 sec
> Running org.apache.myfaces.trinidad.component.html.HtmlRowLayoutTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017 sec
> Running org.apache.myfaces.trinidad.component.UIXTableTest
> Feb 6, 2010 1:04:41 PM org.apache.myfaces.trinidad.bean.PropertyKey
> saveValue
> WARNING: Unserializable
> value:SortableModel[javax.faces.model.ListDataModel@985fa2] for
> key:PropertyKey[value,11]
> Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.058 sec
> Running org.apache.myfaces.trinidad.resource.CachingResourceLoaderTest
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.005 sec
> Running org.apache.myfaces.trinidad.component.core.input.CoreInputHiddenTest
> Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.033 sec
>
> Results :
>
> Tests run: 498, Failures: 0, Errors: 0, Skipped: 0
>
> [INFO] [jar:jar]
> [INFO] Building jar:
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT.jar
> [INFO] Preparing source:jar
> [WARNING] Removing: jar from forked lifecycle, to prevent recursive
> invocation.
> [INFO] [xrts:generate-sources {execution: default}]
> [INFO] Nothing to generate - all XRTS bundles are up to date
> [INFO] [faces:generate-components {execution: default}]
> [INFO] Generated 133 component(s)
> [INFO] [i18n:generate-locale-elements {execution: default}]
> [INFO] Generating LocaleElements
> [INFO] [source:jar {execution: attach-source}]
> [INFO] Building jar:
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> [INFO] [jar:test-jar {execution: default}]
> [INFO] Building jar:
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-tests.jar
> [INFO] [install:install]
> [INFO] Installing
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT.jar
> to
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT.jar
> [INFO] Installing
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> to
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> [INFO] Installing
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-tests.jar
> to
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-tests.jar
> [INFO] Preparing source:jar
> [WARNING] Removing: jar from forked lifecycle, to prevent recursive
> invocation.
> [INFO] [xrts:generate-sources {execution: default}]
> [INFO] Nothing to generate - all XRTS bundles are up to date
> [INFO] [faces:generate-components {execution: default}]
> [INFO] Generated 133 component(s)
> [INFO] [i18n:generate-locale-elements {execution: default}]
> [INFO] Generating LocaleElements
> [INFO] [source:jar]
> [INFO] Building jar:
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> [INFO] [xrts:generate-sources {execution: default}]
> [INFO] Nothing to generate - all XRTS bundles are up to date
> [INFO] [faces:generate-components {execution: default}]
> [INFO] Generated 133 component(s)
> [INFO] [i18n:generate-locale-elements {execution: default}]
> [INFO] Generating LocaleElements
> [INFO] [remote-resources:process {execution: default}]
> [INFO] [resources:resources]
> [INFO] Using default encoding to copy filtered resources.
> [INFO] [compiler:compile]
> [INFO] Compiling 133 source files to
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/classes
> [INFO] [xrts:generate-test-sources {execution: default}]
> [INFO] Nothing to generate - all XRTS bundles are up to date
> [INFO] [resources:testResources]
> [INFO] Using default encoding to copy filtered resources.
> [INFO] [compiler:testCompile]
> [INFO] Nothing to compile - all classes are up to date
> [INFO] [surefire:test]
> [INFO] Surefire report directory:
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/surefire-reports
>
> -------------------------------------------------------
> T E S T S
> -------------------------------------------------------
> Running org.apache.myfaces.trinidad.component.AddRemoveTest
> Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.092 sec
> Running org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest
> descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
> Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.148 sec
> Running org.apache.myfaces.trinidad.util.ServiceTest
> Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.005 sec
> Running org.apache.myfaces.trinidad.component.UIXSelectManyTest
> Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.104 sec
> Running
> org.apache.myfaces.trinidad.component.core.layout.CoreShowDetailHeaderTest
> Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.036 sec
> Running org.apache.myfaces.trinidad.component.html.HtmlTableLayoutTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 sec
> Running org.apache.myfaces.trinidad.validator.LengthValidatorTest
> Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.026 sec
> Running org.apache.myfaces.trinidad.bean.util.ValueMapTest
> Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.008 sec
> Running org.apache.myfaces.trinidad.component.html.HtmlScriptTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014 sec
> Running org.apache.myfaces.trinidad.component.core.CoreFormTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.019 sec
> Running
> org.apache.myfaces.trinidad.component.core.input.CoreSelectBooleanCheckboxTest
> Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018 sec
> Running org.apache.myfaces.trinidad.component.html.HtmlCellFormatTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 sec
> Running org.apache.myfaces.trinidad.validator.LongRangeValidatorTest
> Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.013 sec
> Running org.apache.myfaces.trinidad.validator.DateRestrictionValidatorTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.025 sec
> Running org.apache.myfaces.trinidad.component.core.layout.CorePanelRadioTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.02 sec
> Running org.apache.myfaces.trinidad.component.UIXTreeTest
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.012 sec
> Running org.apache.myfaces.trinidad.component.UIXSwitcherTest
> Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.013 sec
> Running org.apache.myfaces.trinidad.component.core.layout.CorePanelBoxTest
> Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 sec
> Running org.apache.myfaces.trinidad.convert.ColorConverterTest
> Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017 sec
> Running org.apache.myfaces.trinidad.component.core.nav.CoreBreadCrumbsTest
> Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.032 sec
> Running org.apache.myfaces.trinidad.util.Base64InputStreamTest
> Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.008 sec
> Running org.apache.myfaces.trinidad.bean.PropertyKeyTest
> Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004 sec
> Running org.apache.myfaces.trinidad.component.core.data.CoreColumnTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.023 sec
> Running org.apache.myfaces.trinidad.component.core.output.CoreSeparatorTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 sec
> Running org.apache.myfaces.trinidad.component.core.output.CoreOutputTextTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.023 sec
> Running org.apache.myfaces.trinidad.component.html.HtmlFrameTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.076 sec
> Running org.apache.myfaces.trinidad.util.FastMessageFormatTest
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec
> Running org.apache.myfaces.trinidad.validator.RegExpValidatorTest
> Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.012 sec
> Running org.apache.myfaces.trinidad.bean.FacesBeanImplTest
> Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.032 sec
> Running org.apache.myfaces.trinidad.component.core.layout.CoreShowDetailTest
> Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017 sec
> Running org.apache.myfaces.trinidad.component.UIXProcessTest
> Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec
> Running
> org.apache.myfaces.trinidad.component.core.layout.CorePanelSideBarTest
> Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec
> Running org.apache.myfaces.trinidad.component.html.HtmlFrameBorderLayoutTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.019 sec
> Running org.apache.myfaces.trinidad.convert.TrinidadDateTimeConverterTest
> Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.183 sec
> Running org.apache.myfaces.trinidad.component.html.HtmlHtmlTest
> Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.01 sec
> Running org.apache.myfaces.trinidad.component.UIXSelectOrderTest
> Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec
>  Found PropertyDescriptor java.beans.PropertyDescriptor@7bf628e6Feb 6, 2010
> 1:05:21 PM org.apache.myfaces.trinidad.util.ComponentUtils
> _findRelativeComponentDeprecated
> WARNING: Could not find the component with scopedId :::button1 from
> UIXInput[UIXEditableFacesBeanImpl, id=input1] with the supported syntax. The
> component was found with the deprecated syntax. Please use the supported
> syntax.
> Feb 6, 2010 1:05:21 PM org.apache.myfaces.trinidad.render.RenderUtils
> getRelativeId
> WARNING: Could not find the component with scopedId commandButton1 from
> RenderUtilsTest$TestNamingContainer[UIXFacesBeanImpl, id=table1] with the
> supported syntax. The component was found with the deprecated syntax. Please
> use the supported syntax.
> Running org.apache.myfaces.trinidad.render.RenderUtilsTest
> Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.007 sec
> Running org.apache.myfaces.trinidad.validator.DateTimeRangeValidatorTest
> Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.958 sec
> Running org.apache.myfaces.trinidad.resource.AggregatingResourceLoaderTest
> Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.208 sec
> Running org.apache.myfaces.trinidad.component.core.layout.CorePanelListTest
> Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.166 sec
> Running
> org.apache.myfaces.trinidad.component.core.layout.CorePanelHeaderTest
> Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.163 sec
> Running org.apache.myfaces.trinidad.model.RowKeySetImplTest
> Tests run: 14, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.581 sec
> Running org.apache.myfaces.trinidad.util.Base64OutputStreamTest
> Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.171 sec
> Running org.apache.myfaces.trinidad.util.ArrayMapTest
> Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.059 sec
> Running org.apache.myfaces.trinidad.convert.JsfNumberConverterTest
> resource bundle javax.faces.Messages could not be found
> Tests run: 16, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.661 sec
> Running
> org.apache.myfaces.trinidad.component.core.layout.CorePanelGroupLayoutTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.345 sec
> Running org.apache.myfaces.trinidad.validator.ByteLengthValidatorTest
> Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.296 sec
> Running org.apache.myfaces.trinidad.component.core.nav.CoreTrainTest
> Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.055 sec
> Running org.apache.myfaces.trinidad.bean.TypeTest
> Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.068 sec
> Running org.apache.myfaces.trinidad.util.ListFromCollectionTest
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.095 sec
> Running
> org.apache.myfaces.trinidad.component.core.data.CoreSelectRangeChoiceBarTest
> Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.117 sec
> Running org.apache.myfaces.trinidad.component.core.output.CoreSpacerTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.055 sec
> Running
> org.apache.myfaces.trinidad.component.core.layout.CorePanelAccordionTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec
> Running org.apache.myfaces.trinidad.component.FindComponentTest
> Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.011 sec
> Running org.apache.myfaces.trinidad.model.RowKeySetTreeImplTest
> descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
> Tests run: 13, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.029 sec
> Running org.apache.myfaces.trinidad.model.SortableModelTest
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=name
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=name
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=name
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=name
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=name
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=object
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@7ac113d1descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=name
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=name
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=name
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=name
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=name
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=name
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=name
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=name
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014 sec
> Running org.apache.myfaces.trinidad.validator.DoubleRangeValidatorTest
> Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.01 sec
> Running org.apache.myfaces.trinidad.component.UIXShowDetailTest
> Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.013 sec
> Running org.apache.myfaces.trinidad.component.UIXInputTest
> Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.042 sec
> Running org.apache.myfaces.trinidad.convert.TrinidadNumberConverterTest
> Tests run: 18, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.028 sec
> Running org.apache.myfaces.trinidad.convert.JsfDateTimeConverterTest
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.006 sec
> Running
> org.apache.myfaces.trinidad.component.core.layout.CorePanelBorderLayoutTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.02 sec
> Running org.apache.myfaces.trinidad.util.FindRelativeComponentTest
>  Found PropertyDescriptor java.beans.PropertyDescriptor@e6e3b8feFeb 6, 2010
> 1:05:26 PM org.apache.myfaces.trinidad.util.ComponentUtils
> _findRelativeComponentDeprecated
> WARNING: Could not find the component with scopedId :::commandButton1 from
> UIXInput[UIXEditableFacesBeanImpl, id=input1] with the supported syntax. The
> component was found with the deprecated syntax. Please use the supported
> syntax.
> Feb 6, 2010 1:05:26 PM org.apache.myfaces.trinidad.util.ComponentUtils
> _findRelativeComponentDeprecated
> WARNING: Could not find the component with scopedId :::commandButton1 from
> UIXInput[UIXEditableFacesBeanImpl, id=inputA] with the supported syntax. The
> component was found with the deprecated syntax. Please use the supported
> syntax.
> Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.013 sec
> Running
> org.apache.myfaces.trinidad.component.core.layout.CorePanelChoiceTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017 sec
> Running org.apache.myfaces.trinidad.component.html.HtmlRowLayoutTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014 sec
> Running org.apache.myfaces.trinidad.component.UIXTableTest
> Feb 6, 2010 1:05:26 PM org.apache.myfaces.trinidad.bean.PropertyKey
> saveValue
> WARNING: Unserializable
> value:SortableModel[javax.faces.model.ListDataModel@1112776] for
> key:PropertyKey[value,11]
> Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.112 sec
> Running org.apache.myfaces.trinidad.resource.CachingResourceLoaderTest
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004 sec
> Running org.apache.myfaces.trinidad.component.core.input.CoreInputHiddenTest
> Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.012 sec
>
> Results :
>
> Tests run: 498, Failures: 0, Errors: 0, Skipped: 0
>
> [INFO] [jar:jar]
> [INFO] Building jar:
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT.jar
> [INFO] Preparing source:jar
> [WARNING] Removing: jar from forked lifecycle, to prevent recursive
> invocation.
> [INFO] [xrts:generate-sources {execution: default}]
> [INFO] Nothing to generate - all XRTS bundles are up to date
> [INFO] [faces:generate-components {execution: default}]
> [INFO] Generated 133 component(s)
> [INFO] [i18n:generate-locale-elements {execution: default}]
> [INFO] Generating LocaleElements
> [INFO] [source:jar {execution: attach-source}]
> [INFO] Building jar:
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> [INFO] [jar:test-jar {execution: default}]
> [INFO] Building jar:
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-tests.jar
> [INFO] [install:install]
> [INFO] Installing
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT.jar
> to
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT.jar
> [INFO] Installing
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> to
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> [INFO] Installing
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-tests.jar
> to
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-tests.jar
> [INFO] Installing
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> to
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> [INFO] Installing
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> to
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> [INFO] Installing
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-tests.jar
> to
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-tests.jar
> [INFO] [deploy:deploy]
> [INFO] Retrieving previous build number from apache-maven-snapshots
> Uploading:
> scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT.jar
> [INFO] Retrieving previous metadata from apache-maven-snapshots
> [INFO] Uploading repository metadata for: 'artifact
> org.apache.myfaces.trinidad:trinidad-api'
> [INFO] Uploading project information for trinidad-api 1.2.14-SNAPSHOT
> [INFO] Retrieving previous metadata from apache-maven-snapshots
> [INFO] Uploading repository metadata for: 'snapshot
> org.apache.myfaces.trinidad:trinidad-api:1.2.14-SNAPSHOT'
> [INFO] Retrieving previous build number from apache-maven-snapshots
> Uploading:
> scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> [INFO] Retrieving previous build number from apache-maven-snapshots
> Uploading:
> scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-tests.jar
> [INFO] Retrieving previous build number from apache-maven-snapshots
> Uploading:
> scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> [INFO] Retrieving previous build number from apache-maven-snapshots
> Uploading:
> scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> [INFO] Retrieving previous build number from apache-maven-snapshots
> Uploading:
> scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-tests.jar
> [INFO]
> ------------------------------------------------------------------------
> [INFO] Building Apache MyFaces Trinidad Impl
> [INFO]    task-segment: [clean, install, source:jar, deploy]
> [INFO]
> ------------------------------------------------------------------------
> [INFO] [clean:clean]
> [INFO] Deleting directory
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target
> [INFO] [faces:generate-jsp-taglibs {execution: default}]
> [INFO] Generated 143 JSP tag(s)
> [INFO] [faces:generate-facelets-taglibs {execution: default}]
> [INFO] Generated META-INF/tr.taglib.xml
> [INFO] Generated META-INF/trh.taglib.xml
> [INFO] [faces:generate-renderer-map {execution: default}]
> [INFO] [i18n:generate-locale-elements {execution: default}]
> [INFO] Generating LocaleElements
> [INFO] [i18n:generate-javascript-locales {execution: default}]
> [INFO] Generating Javascript Locales
> [INFO] [javascript:reduce-javascript {execution: default}]
> [INFO] [xrts:generate-sources {execution: default}]
> [INFO] Generating 59 XRTS bundles to
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/maven-xrts-plugin/main/java
> [INFO] [faces:generate-faces-config {execution: default}]
> [INFO] Generated META-INF/faces-config.xml
> [INFO] [remote-resources:process {execution: default}]
> [INFO] [resources:resources]
> [INFO] Using default encoding to copy filtered resources.
> [INFO] [compiler:compile]
> [INFO] Compiling 1170 source files to
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/classes
> [INFO] [xrts:generate-test-sources {execution: default}]
> [INFO] [resources:testResources]
> [INFO] Using default encoding to copy filtered resources.
> [INFO] snapshot org.apache.myfaces.trinidad:trinidad-api:1.2.14-SNAPSHOT:
> checking for updates from java.net
> [INFO] snapshot org.apache.myfaces.trinidad:trinidad-api:1.2.14-SNAPSHOT:
> checking for updates from apache.snapshots
> [INFO] [compiler:testCompile]
> [INFO] Compiling 50 source files to
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/test-classes
> [INFO] [surefire:test]
> [INFO] Surefire report directory:
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/surefire-reports
> Feb 6, 2010 1:07:56 PM
> org.apache.myfaces.trinidadinternal.renderkit.FacesConfigInfo load
> INFO: PARSING
> file:/local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/classes/META-INF/faces-config.xml
> Feb 6, 2010 1:07:57 PM
> org.apache.myfaces.trinidadinternal.renderkit.FacesConfigInfo load
> INFO: PARSING
> jar:file:/export/home/mrmaven/.m2/repository/com/sun/facelets/jsf-facelets/1.1.14/jsf-facelets-1.1.14.jar!/META-INF/faces-config.xml
> Couldn't create renderer com.sun.facelets.component.RepeatRenderer
>
> -------------------------------------------------------
> T E S T S
> -------------------------------------------------------
> Running org.apache.myfaces.trinidadinternal.metadata.RegionMetadataTest
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.169 sec
> Running
> org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.table.TableSelectOneRendererTest
> Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.15 sec
> Running org.apache.myfaces.trinidadinternal.el.FormatterMapTest
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004 sec
> Running org.apache.myfaces.trinidadinternal.util.TokenCacheTest
> Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.007 sec
> Running
> org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.OutputUtilsTest
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.003 sec
> Running org.apache.myfaces.trinidadinternal.context.PartialTriggersTest
> Feb 6, 2010 1:08:04 PM org.apache.myfaces.trinidad.util.ComponentUtils
> _findRelativeComponentDeprecated
> WARNING: Could not find the component with scopedId :::commandButton1 from
> UIXInput[UIXEditableFacesBeanImpl, id=input1] with the supported syntax. The
> component was found with the deprecated syntax. Please use the supported
> syntax.
> Feb 6, 2010 1:08:04 PM org.apache.myfaces.trinidad.util.ComponentUtils
> _findRelativeComponentDeprecated
> WARNING: Could not find the component with scopedId :::commandButton1 from
> UIXInput[UIXEditableFacesBeanImpl, id=inputA] with the supported syntax. The
> component was found with the deprecated syntax. Please use the supported
> syntax.
> Feb 6, 2010 1:08:04 PM
> org.apache.myfaces.trinidadinternal.context.RequestContextImpl
> addPartialTriggerListeners
> WARNING: Could not find partial trigger commandButton1 from
> UIXTable[org.apache.myfaces.trinidad.component.UIXTable$RowKeyFacesBeanWrapper@24d0d0,
> id=table1] with the supported partialTriggers syntax. The partial trigger
> was found with the deprecated syntax. Please use the supported syntax.
> Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.05 sec
> Running org.apache.myfaces.trinidadinternal.FacesConfigTest
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec
> Feb 6, 2010 1:08:04 PM
> org.apache.myfaces.trinidad.resource.MessageBundleTest
> _warnAbsenceOfBundleKeys
> WARNING: Keys missing in bundle:MessageBundle_ar are
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>
> Feb 6, 2010 1:08:04 PM
> org.apache.myfaces.trinidad.resource.MessageBundleTest
> _warnAbsenceOfBundleKeys
> WARNING: Keys missing in bundle:MessageBundle_cs are
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>
> Feb 6, 2010 1:08:04 PM
> org.apache.myfaces.trinidad.resource.MessageBundleTest
> _warnAbsenceOfBundleKeys
> WARNING: Keys missing in bundle:MessageBundle_da are
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>
> Feb 6, 2010 1:08:04 PM
> org.apache.myfaces.trinidad.resource.MessageBundleTest
> _warnAbsenceOfBundleKeys
> WARNING: Keys missing in bundle:MessageBundle_de are
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>
> Feb 6, 2010 1:08:04 PM
> org.apache.myfaces.trinidad.resource.MessageBundleTest
> _warnAbsenceOfBundleKeys
> WARNING: Keys missing in bundle:MessageBundle_el are
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>
> Running org.apache.myfaces.trinidad.resource.MessageBundleTest
> Feb 6, 2010 1:08:04 PM
> org.apache.myfaces.trinidad.resource.MessageBundleTest
> _warnAbsenceOfBundleKeys
> WARNING: Keys missing in bundle:MessageBundle_es are
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>
> Feb 6, 2010 1:08:04 PM
> org.apache.myfaces.trinidad.resource.MessageBundleTest
> _warnAbsenceOfBundleKeys
> WARNING: Keys missing in bundle:MessageBundle_fi are
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>
> Feb 6, 2010 1:08:04 PM
> org.apache.myfaces.trinidad.resource.MessageBundleTest
> _warnAbsenceOfBundleKeys
> WARNING: Keys missing in bundle:MessageBundle_fr are
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>
> Feb 6, 2010 1:08:04 PM
> org.apache.myfaces.trinidad.resource.MessageBundleTest
> _warnAbsenceOfBundleKeys
> WARNING: Keys missing in bundle:MessageBundle_hu are
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>
> Feb 6, 2010 1:08:04 PM
> org.apache.myfaces.trinidad.resource.MessageBundleTest
> _warnAbsenceOfBundleKeys
> WARNING: Keys missing in bundle:MessageBundle_it are
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>
> Feb 6, 2010 1:08:04 PM
> org.apache.myfaces.trinidad.resource.MessageBundleTest
> _warnAbsenceOfBundleKeys
> WARNING: Keys missing in bundle:MessageBundle_iw are
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>
> Feb 6, 2010 1:08:04 PM
> org.apache.myfaces.trinidad.resource.MessageBundleTest
> _warnAbsenceOfBundleKeys
> WARNING: Keys missing in bundle:MessageBundle_ja are
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>
> Feb 6, 2010 1:08:04 PM
> org.apache.myfaces.trinidad.resource.MessageBundleTest
> _warnAbsenceOfBundleKeys
> WARNING: Keys missing in bundle:MessageBundle_ko are
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>
> Feb 6, 2010 1:08:04 PM
> org.apache.myfaces.trinidad.resource.MessageBundleTest
> _warnAbsenceOfBundleKeys
> WARNING: Keys missing in bundle:MessageBundle_nl are
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>
> Feb 6, 2010 1:08:04 PM
> org.apache.myfaces.trinidad.resource.MessageBundleTest
> _warnAbsenceOfBundleKeys
> WARNING: Keys missing in bundle:MessageBundle_no are
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>
> Feb 6, 2010 1:08:04 PM
> org.apache.myfaces.trinidad.resource.MessageBundleTest
> _warnAbsenceOfBundleKeys
> WARNING: Keys missing in bundle:MessageBundle_pl are
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>
> Feb 6, 2010 1:08:04 PM
> org.apache.myfaces.trinidad.resource.MessageBundleTest
> _warnAbsenceOfBundleKeys
> WARNING: Keys missing in bundle:MessageBundle_pt are
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>
> Feb 6, 2010 1:08:04 PM
> org.apache.myfaces.trinidad.resource.MessageBundleTest
> _warnAbsenceOfBundleKeys
> WARNING: Keys missing in bundle:MessageBundle_pt_BR are
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>
> Feb 6, 2010 1:08:05 PM
> org.apache.myfaces.trinidad.resource.MessageBundleTest
> _warnAbsenceOfBundleKeys
> WARNING: Keys missing in bundle:MessageBundle_ro are
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>
> Feb 6, 2010 1:08:05 PM
> org.apache.myfaces.trinidad.resource.MessageBundleTest
> _warnAbsenceOfBundleKeys
> WARNING: Keys missing in bundle:MessageBundle_ru are
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>
> Feb 6, 2010 1:08:05 PM
> org.apache.myfaces.trinidad.resource.MessageBundleTest
> _warnAbsenceOfBundleKeys
> WARNING: Keys missing in bundle:MessageBundle_sk are
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>
> Feb 6, 2010 1:08:05 PM
> org.apache.myfaces.trinidad.resource.MessageBundleTest
> _warnAbsenceOfBundleKeys
> WARNING: Keys missing in bundle:MessageBundle_sv are
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>
> Feb 6, 2010 1:08:05 PM
> org.apache.myfaces.trinidad.resource.MessageBundleTest
> _warnAbsenceOfBundleKeys
> WARNING: Keys missing in bundle:MessageBundle_th are
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>
> Feb 6, 2010 1:08:05 PM
> org.apache.myfaces.trinidad.resource.MessageBundleTest
> _warnAbsenceOfBundleKeys
> WARNING: Keys missing in bundle:MessageBundle_tr are
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>
> Feb 6, 2010 1:08:05 PM
> org.apache.myfaces.trinidad.resource.MessageBundleTest
> _warnAbsenceOfBundleKeys
> WARNING: Keys missing in bundle:MessageBundle_zh_CN are
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>
> Feb 6, 2010 1:08:05 PM
> org.apache.myfaces.trinidad.resource.MessageBundleTest
> _warnAbsenceOfBundleKeys
> WARNING: Keys missing in bundle:MessageBundle_zh_TW are
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.343 sec
> Running
> org.apache.myfaces.trinidadinternal.style.xml.parse.StyleSheetNodeEqualsTest
> Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.03 sec
> Running org.apache.myfaces.trinidadinternal.application.ViewHandlerImplTest
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014 sec
> Running org.apache.myfaces.trinidadinternal.el.TokenizerTest
> Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.005 sec
> Running org.apache.myfaces.trinidadinternal.util.SubKeyMapTest
> Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.01 sec
> Running org.apache.myfaces.trinidadinternal.renderkit.CoreRenderKitTest
> Feb 6, 2010 1:08:06 PM org.apache.myfaces.trinidad.util.ExternalContextUtils
> <clinit>
> INFO: Portlet Environment Detected: 1.0
> Tests run: 775, Failures: 0, Errors: 7, Skipped: 0, Time elapsed: 43.477 sec
> <<< FAILURE!
> Running org.apache.myfaces.trinidadinternal.context.RequestContextTest
> Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.024 sec
> Running
> org.apache.myfaces.trinidadinternal.ui.laf.base.xhtml.XhtmlLafUtilsTest
> Feb 6, 2010 1:08:48 PM
> org.apache.myfaces.trinidadinternal.renderkit.FacesConfigInfo load
> INFO: PARSING
> file:/local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/classes/META-INF/faces-config.xml
> Feb 6, 2010 1:08:48 PM
> org.apache.myfaces.trinidadinternal.renderkit.FacesConfigInfo load
> INFO: PARSING
> jar:file:/export/home/mrmaven/.m2/repository/com/sun/facelets/jsf-facelets/1.1.14/jsf-facelets-1.1.14.jar!/META-INF/faces-config.xml
> Couldn't create renderer com.sun.facelets.component.RepeatRenderer
> Feb 6, 2010 1:08:48 PM
> org.apache.myfaces.trinidadinternal.renderkit.FacesConfigInfo load
> INFO: PARSING
> file:/local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/classes/META-INF/faces-config.xml
> Feb 6, 2010 1:08:48 PM
> org.apache.myfaces.trinidadinternal.renderkit.FacesConfigInfo load
> INFO: PARSING
> jar:file:/export/home/mrmaven/.m2/repository/com/sun/facelets/jsf-facelets/1.1.14/jsf-facelets-1.1.14.jar!/META-INF/faces-config.xml
> Couldn't create renderer com.sun.facelets.component.RepeatRenderer
> Feb 6, 2010 1:08:48 PM org.apache.myfaces.trinidad.context.RenderingContext
> attach
> WARNING: Trying to attach RenderingContext to a thread that already had one.
> Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.224 sec
> Running
> org.apache.myfaces.trinidadinternal.validator.ByteLengthValidatorTest
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.087 sec
> Running org.apache.myfaces.trinidadinternal.taglib.TLDTest
> Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec
>
> Results :
>
> Tests in error:
>  singleStepButtonBar-minimal(org.apache.myfaces.trinidadinternal.renderkit.RenderKitTestCase$RendererTest)
>  singleStepButtonBar-minimalIE(org.apache.myfaces.trinidadinternal.renderkit.RenderKitTestCase$RendererTest)
>  singleStepButtonBar-minimalIERtl(org.apache.myfaces.trinidadinternal.renderkit.RenderKitTestCase$RendererTest)
>  singleStepButtonBar-minimalPPC(org.apache.myfaces.trinidadinternal.renderkit.RenderKitTestCase$RendererTest)
>  singleStepButtonBar-minimalSaf(org.apache.myfaces.trinidadinternal.renderkit.RenderKitTestCase$RendererTest)
>  singleStepButtonBar-minimalScrRdr(org.apache.myfaces.trinidadinternal.renderkit.RenderKitTestCase$RendererTest)
>  singleStepButtonBar-minimalInacc(org.apache.myfaces.trinidadinternal.renderkit.RenderKitTestCase$RendererTest)
>
> Tests run: 821, Failures: 0, Errors: 7, Skipped: 0
>
> [INFO]
> ------------------------------------------------------------------------
> [ERROR] BUILD FAILURE
> [INFO]
> ------------------------------------------------------------------------
> [INFO] There are test failures.
>
> Please refer to
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/surefire-reports
> for the individual test results.
> [INFO]
> ------------------------------------------------------------------------
> [INFO] For more information, run Maven with the -e switch
> [INFO]
> ------------------------------------------------------------------------
> [INFO] Total time: 7 minutes 7 seconds
> [INFO] Finished at: Sat Feb 06 13:08:49 UTC 2010
> [INFO] Final Memory: 45M/107M
> [INFO]
> ------------------------------------------------------------------------
>
> ****************************************************************************
>
>
>



-- 
Matthias Wessendorf

blog: http://matthiaswessendorf.wordpress.com/
sessions: http://www.slideshare.net/mwessendorf
twitter: http://twitter.com/mwessendorf

Re: BUILD FAILURE: Apache MyFaces Trinidad 1.2

Posted by Jan-Kees van Andel <ja...@gmail.com>.
Hi Matt,

Maybe some kind of classloading issue? Duplicate classes on your classpath?

About @Override: You are allowed to put @Override on methods
implemented from an interface. Compiling code with @Override on an
implemented interface method with Java 5 results in a compile error.

Regards,
Jan-Kees


2010/2/8 Matthias Wessendorf <ma...@apache.org>:
> on my machine it just build fine too...
>
> hrm... what's going on ? :)
>
>
> On Mon, Feb 8, 2010 at 6:29 PM, Matt Cooper <mc...@apache.org> wrote:
>> Hi Matthias,
>>
>> I don't think this revision was the cause.  I'm using Java5 and am seeing
>> the following error in
>> /trinidad-impl/target/surefire-reports/org.apache.myfaces.trinidadinternal.renderkit.CoreRenderKitTest.txt:
>>
>> -------------------------------------------------------------------------------
>> Test set: org.apache.myfaces.trinidadinternal.renderkit.CoreRenderKitTest
>> -------------------------------------------------------------------------------
>> Tests run: 775, Failures: 0, Errors: 119, Skipped: 0, Time elapsed: 10.689
>> sec <<< FAILURE!
>> breadCrumbs-minimal(org.apache.myfaces.trinidadinternal.renderkit.RenderKitTestCase$RendererTest)
>> Time elapsed: 0.655 sec  <<< ERROR!
>> java.lang.IncompatibleClassChangeError: Found class
>> org.apache.myfaces.trinidadinternal.agent.TrinidadAgent, but interface was
>> expected
>>     at
>> org.apache.myfaces.trinidadinternal.ui.laf.base.BaseLafRenderer.getAgentCapability(BaseLafRenderer.java:771)
>>     at
>> org.apache.myfaces.trinidadinternal.ui.laf.base.BaseLafRenderer.getBooleanAgentCapability(BaseLafRenderer.java:783)
>>     at
>> org.apache.myfaces.trinidadinternal.ui.laf.base.BaseLafRenderer.supportsIntrinsicEvents(BaseLafRenderer.java:922)
>>     at
>> org.apache.myfaces.trinidadinternal.ui.laf.base.xhtml.LinkRenderer.getDestination(LinkRenderer.java:301)
>>     at
>> org.apache.myfaces.trinidadinternal.ui.laf.base.xhtml.LinkRenderer.getElementName(LinkRenderer.java:521)
>>     at
>> org.apache.myfaces.trinidadinternal.ui.ElementRenderer.prerender(ElementRenderer.java:70)
>>     at
>> org.apache.myfaces.trinidadinternal.ui.laf.base.xhtml.XhtmlLafRenderer.prerender(XhtmlLafRenderer.java:201)
>>     at
>> org.apache.myfaces.trinidadinternal.ui.laf.base.xhtml.LinkRenderer.prerender(LinkRenderer.java:406)
>>     at
>> org.apache.myfaces.trinidadinternal.ui.BaseRenderer.render(BaseRenderer.java:91)
>>     at
>> org.apache.myfaces.trinidadinternal.ui.laf.base.xhtml.XhtmlLafRenderer.render(XhtmlLafRenderer.java:85)
>> ...
>>
>> This doesn't appear to be related to the line that was added to
>> OutputUtils.java:
>>
>> writer.writeAttribute("role", "presentation", null);
>>
>> Regards,
>> Matt
>>
>> On Mon, Feb 8, 2010 at 8:47 AM, Matthias Wessendorf <ma...@apache.org>
>> wrote:
>>>
>>> hi
>>>
>>> the 2.0 version has; Yes. but trunk should compile fine w/ Java5
>>>
>>> -Matthias
>>>
>>> On Mon, Feb 8, 2010 at 4:35 PM, Leonardo Uribe <lu...@gmail.com> wrote:
>>> > Hi
>>> >
>>> > I think this is not related, but I cannot compile trinidad maven faces
>>> > plugin, because there is an error related to a Override annotation.
>>> >
>>> > regards,
>>> >
>>> > Leonardo Uribe
>>> >
>>> > 2010/2/6 Matthias Wessendorf <ma...@apache.org>
>>> >>
>>> >> Hello Matt,
>>> >>
>>> >> because of REV 904625.
>>> >> http://svn.apache.org/viewvc?view=revision&revision=904625
>>> >>
>>> >> the build is failing.
>>> >>
>>> >> Make sure you are using Java5 etc.
>>> >>
>>> >> Thanks!
>>> >> Matthias
>>> >>
>>> >> On Sat, Feb 6, 2010 at 2:09 PM, Continuum@myfaces.zones.apache.org
>>> >> <co...@myfaces.apache.org> wrote:
>>> >> > Online report :
>>> >> >
>>> >> >
>>> >> > http://myfaces.zones.apache.org:8080/continuum/buildResult.action?buildId=26039&projectId=48
>>> >> >
>>> >> > Build statistics:
>>> >> >  State: Failed
>>> >> >  Previous State: Ok
>>> >> >  Started at: Sat 6 Feb 2010 13:01:39 +0000
>>> >> >  Finished at: Sat 6 Feb 2010 13:08:50 +0000
>>> >> >  Total time: 7m 11s
>>> >> >  Build Trigger: Forced
>>> >> >  Build Number: 343
>>> >> >  Exit code: 1
>>> >> >  Building machine hostname: myfaces.zones.apache.org
>>> >> >  Operating system : SunOS(unknown)
>>> >> >  Java Home version :         java version "1.5.0_22"
>>> >> >         Java(TM) 2 Runtime Environment, Standard Edition (build
>>> >> > 1.5.0_22-b03)
>>> >> >         Java HotSpot(TM) Server VM (build 1.5.0_22-b03, mixed mode)
>>> >> >        Builder version :
>>> >> >         Maven version: 2.0.10
>>> >> >         Java version: 1.5.0_22
>>> >> >         OS name: "sunos" version: "5.10" arch: "x86" Family: "unix"
>>> >> >
>>> >> >
>>> >> >
>>> >> > ****************************************************************************
>>> >> > SCM Changes:
>>> >> >
>>> >> >
>>> >> > ****************************************************************************
>>> >> > Changed: mcooper @ Fri 29 Jan 2010 21:19:14 +0000
>>> >> > Comment: TRINIDAD-1696 acc (screen reader mode) layout tables should
>>> >> > include
>>> >> > role="presentation"
>>> >> >
>>> >> > Thanks to Dave Robinson for the patch:
>>> >> >
>>> >> > When using trh:tableLayout in our page to layout some UI components,
>>> >> > it
>>> >> > gives warning during Accessibility testing:
>>> >> > "WARNING - This layout Table could be confused for a data table by
>>> >> > Screen
>>> >> > Readers"
>>> >> > From the html perspective, this warning can be fixed by setting
>>> >> > role="presentation" on the html table element.
>>> >> >
>>> >> > We can add role="presentation" to layout tables with the following
>>> >> > addition
>>> >> > to
>>> >> >
>>> >> >
>>> >> >
>>> >> > org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.OutputTextUtils.renderLayoutTableAttributes():
>>> >> >
>>> >> >  if (CoreRenderer.isScreenReaderMode(arc))
>>> >> >  {
>>> >> >   ResponseWriter writer = context.getResponseWriter();
>>> >> >   writer.writeAttribute("datatable", "0", null);
>>> >> >
>>> >> > --> writer.writeAttribute("role", "presentation", null); <--
>>> >> >
>>> >> >  }
>>> >> > Files changed:
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/xhtml/OutputUtils.java
>>> >> > ( 904625 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/columnGroup-minimalScrRdr-golden.xml
>>> >> > ( 904625 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/editableTable-minimalScrRdr-golden.xml
>>> >> > ( 904625 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputColor-minimalScrRdr-golden.xml
>>> >> > ( 904625 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputDate-minimalScrRdr-golden.xml
>>> >> > ( 904625 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputFile-minimalScrRdr-golden.xml
>>> >> > ( 904625 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputListOfValues-minimalScrRdr-golden.xml
>>> >> > ( 904625 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputNumberSpinbox-minimalScrRdr-golden.xml
>>> >> > ( 904625 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputText-minimalScrRdr-golden.xml
>>> >> > ( 904625 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputText-rows-minimalScrRdr-golden.xml
>>> >> > ( 904625 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/messages-minimalScrRdr-golden.xml
>>> >> > ( 904625 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/messagesError-minimalScrRdr-golden.xml
>>> >> > ( 904625 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/messagesFatal-minimalScrRdr-golden.xml
>>> >> > ( 904625 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/messagesInfo-minimalScrRdr-golden.xml
>>> >> > ( 904625 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/messagesWarn-minimalScrRdr-golden.xml
>>> >> > ( 904625 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/navigationPaneBar-minimalScrRdr-golden.xml
>>> >> > ( 904625 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/navigationPaneButtons-minimalScrRdr-golden.xml
>>> >> > ( 904625 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/navigationPaneList-minimalScrRdr-golden.xml
>>> >> > ( 904625 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/navigationPaneTabs-minimalScrRdr-golden.xml
>>> >> > ( 904625 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelBorderLayout-minimalScrRdr-golden.xml
>>> >> > ( 904625 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelBox-minimalScrRdr-golden.xml
>>> >> > ( 904625 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelButtonBar-minimalScrRdr-golden.xml
>>> >> > ( 904625 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelFormLayout-minimalScrRdr-golden.xml
>>> >> > ( 904625 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelGroupLayout-minimalScrRdr-golden.xml
>>> >> > ( 904625 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelHorizontalLayout-minimalScrRdr-golden.xml
>>> >> > ( 904625 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelHorizontalLayout-separator-minimalScrRdr-golden.xml
>>> >> > ( 904625 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelLabelAndMessage-facet-minimalScrRdr-golden.xml
>>> >> > ( 904625 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelLabelAndMessage-minimalScrRdr-golden.xml
>>> >> > ( 904625 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelList-minimalScrRdr-golden.xml
>>> >> > ( 904625 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelPage-facets-minimalScrRdr-golden.xml
>>> >> > ( 904625 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelPageHeader-minimalScrRdr-golden.xml
>>> >> > ( 904625 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/rowLayout-minimalScrRdr-golden.xml
>>> >> > ( 904625 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectBooleanCheckbox-minimalScrRdr-golden.xml
>>> >> > ( 904625 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectBooleanRadio-minimalScrRdr-golden.xml
>>> >> > ( 904625 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectManyCheckbox-minimalScrRdr-golden.xml
>>> >> > ( 904625 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectManyListBox-minimalScrRdr-golden.xml
>>> >> > ( 904625 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectManyShuttle-minimalScrRdr-golden.xml
>>> >> > ( 904625 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectOneChoice-minimalScrRdr-golden.xml
>>> >> > ( 904625 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectOneListbox-minimalScrRdr-golden.xml
>>> >> > ( 904625 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectOneRadio-minimalScrRdr-golden.xml
>>> >> > ( 904625 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectOrderShuttle-minimalScrRdr-golden.xml
>>> >> > ( 904625 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectRangeChoiceBar-minimalScrRdr-golden.xml
>>> >> > ( 904625 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectRangeChoiceBarBig-minimalScrRdr-golden.xml
>>> >> > ( 904625 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/singleStepButtonBar-minimalScrRdr-golden.xml
>>> >> > ( 904625 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/table-minimalScrRdr-golden.xml
>>> >> > ( 904625 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/tableSelectMany-minimalScrRdr-golden.xml
>>> >> > ( 904625 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/tableSelectOne-minimalScrRdr-golden.xml
>>> >> > ( 904625 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/train-minimalScrRdr-golden.xml
>>> >> > ( 904625 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/treeTable-minimalScrRdr-golden.xml
>>> >> > ( 904625 )
>>> >> >
>>> >> > Changed: matzew @ Sat 30 Jan 2010 11:17:15 +0000
>>> >> > Comment: added a jetty profile for the new awesome showcase
>>> >> > Files changed:
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/pom.xml
>>> >> > ( 904764 )
>>> >> >
>>> >> > Changed: jwaldman @ Tue 2 Feb 2010 18:17:22 +0000
>>> >> > Comment: TRINIDAD-1702 performance: decrease memory of
>>> >> > FileSystemStyleCache
>>> >> > by reusing CSSStyle objects.
>>> >> > Files changed:
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/style/cache/FileSystemStyleCache.java
>>> >> > ( 905740 )
>>> >> >
>>> >> > Changed: matzew @ Tue 2 Feb 2010 19:09:07 +0000
>>> >> > Comment: TRINIDAD-983 - Sortable model for localized text
>>> >> >
>>> >> >
>>> >> > ported patch from Toma havelka to trinidad/jsf 1.2
>>> >> > Files changed:
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-api/src/main/java/org/apache/myfaces/trinidad/model/SortableModel.java
>>> >> > ( 905749 )
>>> >> >
>>> >> > Changed: ckormos @ Wed 3 Feb 2010 20:59:09 +0000
>>> >> > Comment: fixed [TRINIDAD-1706] - Trinidad components showcase demo
>>> >> > app
>>> >> > doesn't include java sources in packaged war
>>> >> > Files changed:
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/pom.xml
>>> >> > ( 906239 )
>>> >> >
>>> >> > Changed: ckormos @ Wed 3 Feb 2010 21:07:19 +0000
>>> >> > Comment: [trinidad components showcase] :
>>> >> >    -  removed usage of commons logging, replaced with logging with
>>> >> > java.util.
>>> >> >    - added arg to sitemap generator to be able to specify base URL on
>>> >> > execution.
>>> >> > Files changed:
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/java/org/apache/myfaces/trinidaddemo/ComponentDemoRegistry.java
>>> >> > ( 906243 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/java/org/apache/myfaces/trinidaddemo/NavigationHandlerPhaseListener.java
>>> >> > ( 906243 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/java/org/apache/myfaces/trinidaddemo/support/PrettyUrlFilter.java
>>> >> > ( 906243 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/java/org/apache/myfaces/trinidaddemo/support/impl/ComponentVariantDemoDescriptionProvider.java
>>> >> > ( 906243 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/java/org/apache/myfaces/trinidaddemo/support/util/SitemapGenerator.java
>>> >> > ( 906243 )
>>> >> >
>>> >> > Changed: bsullivan @ Thu 4 Feb 2010 22:44:48 +0000
>>> >> > Comment: Make sure that the ID_KEY is present in the
>>> >> > UIXFacesBeanImpl.java
>>> >> > key set when the UIXFacesBeanImpl is delegating the storageof the ID
>>> >> > property back to the UIXComponentBase.
>>> >> > Files changed:
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-api/src/main/java/org/apache/myfaces/trinidad/bean/FacesBeanImpl.java
>>> >> > ( 906703 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-api/src/main/java/org/apache/myfaces/trinidad/component/UIXFacesBeanImpl.java
>>> >> > ( 906703 )
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-api/src/main/java/org/apache/myfaces/trinidad/util/CollectionUtils.java
>>> >> > ( 906703 )
>>> >> >
>>> >> > Changed: matzew @ Fri 5 Feb 2010 07:25:50 +0000
>>> >> > Comment: added getServerInfo() call
>>> >> > Files changed:
>>> >> >
>>> >> >
>>> >> >  /myfaces/trinidad/trunk/trinidad-api/src/main/java/org/apache/myfaces/trinidad/util/ExternalContextUtils.java
>>> >> > ( 906828 )
>>> >> >
>>> >> > Changed: matzew @ Sat 6 Feb 2010 12:05:38 +0000
>>> >> > Comment: updated scm url
>>> >> > Files changed:
>>> >> >  /myfaces/trinidad/trunk/pom.xml ( 907204 )
>>> >> >
>>> >> >
>>> >> >
>>> >> > ****************************************************************************
>>> >> > Dependencies Changes:
>>> >> >
>>> >> >
>>> >> > ****************************************************************************
>>> >> > No dependencies changed
>>> >> >
>>> >> >
>>> >> >
>>> >> > ****************************************************************************
>>> >> > Test Summary:
>>> >> >
>>> >> >
>>> >> > ****************************************************************************
>>> >> > Tests: 1319
>>> >> > Failures: 7
>>> >> > Total time: 52037
>>> >> >
>>> >> >
>>> >> >
>>> >> > ****************************************************************************
>>> >> > Output:
>>> >> >
>>> >> >
>>> >> > ****************************************************************************
>>> >> > [INFO] Scanning for projects...
>>> >> > [INFO] Reactor build order: [INFO]   Apache MyFaces Trinidad 1.2
>>> >> > [INFO]   Apache MyFaces Trinidad Build
>>> >> > [INFO]   Apache MyFaces Trinidad API
>>> >> > [INFO]   Apache MyFaces Trinidad Impl
>>> >> > [INFO]   Apache MyFaces Trinidad Examples
>>> >> > [INFO]   Apache MyFaces Trinidad Blank Demo
>>> >> > [INFO]   Apache MyFaces Trinidad Demo
>>> >> > [INFO]   Apache MyFaces Trinidad Components Showcase
>>> >> > [INFO] Searching repository for plugin with prefix: 'source'.
>>> >> > [INFO] org.apache.maven.plugins: checking for updates from
>>> >> > apache.snapshots
>>> >> > [INFO] org.codehaus.mojo: checking for updates from apache.snapshots
>>> >> > [INFO]
>>> >> >
>>> >> > ------------------------------------------------------------------------
>>> >> > [INFO] Building Apache MyFaces Trinidad 1.2
>>> >> > [INFO]    task-segment: [clean, install, source:jar, deploy]
>>> >> > [INFO]
>>> >> >
>>> >> > ------------------------------------------------------------------------
>>> >> > [INFO] [clean:clean]
>>> >> > [INFO] Deleting directory
>>> >> > /local/continuum-1.1-beta-2/working-directory/48/target
>>> >> > [INFO] [xrts:generate-sources {execution: default}]
>>> >> > [INFO] Setting property: classpath.resource.loader.class =>
>>> >> > 'org.codehaus.plexus.velocity.ContextClassLoaderResourceLoader'.
>>> >> > [INFO] Setting property: velocimacro.messages.on => 'false'.
>>> >> > [INFO] Setting property: resource.loader => 'classpath'.
>>> >> > [INFO] Setting property: resource.manager.logwhenfound => 'false'.
>>> >> > [INFO] [remote-resources:process {execution: default}]
>>> >> > [INFO] [xrts:generate-test-sources {execution: default}]
>>> >> > [INFO] [site:attach-descriptor]
>>> >> > [INFO] Unable to load parent project from a relative path: Could not
>>> >> > find
>>> >> > the model file
>>> >> > '/local/continuum-1.1-beta-2/working-directory/48/../pom.xml'. for
>>> >> > project
>>> >> > unknown
>>> >> > [INFO] Parent project loaded from repository.
>>> >> > [INFO] Preparing source:jar
>>> >> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
>>> >> > invocation.
>>> >> > [INFO] [xrts:generate-sources {execution: default}]
>>> >> > [INFO] [source:jar {execution: attach-source}]
>>> >> > [INFO] [install:install]
>>> >> > [INFO] Installing
>>> >> > /local/continuum-1.1-beta-2/working-directory/48/pom.xml
>>> >> > to
>>> >> >
>>> >> >
>>> >> > /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad/1.2.14-SNAPSHOT/trinidad-1.2.14-SNAPSHOT.pom
>>> >> > [INFO] Preparing source:jar
>>> >> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
>>> >> > invocation.
>>> >> > [INFO] [xrts:generate-sources {execution: default}]
>>> >> > [INFO] [source:jar]
>>> >> > [INFO] [xrts:generate-sources {execution: default}]
>>> >> > [INFO] [remote-resources:process {execution: default}]
>>> >> > [INFO] [xrts:generate-test-sources {execution: default}]
>>> >> > [INFO] [site:attach-descriptor]
>>> >> > [INFO] Unable to load parent project from a relative path: Could not
>>> >> > find
>>> >> > the model file
>>> >> > '/local/continuum-1.1-beta-2/working-directory/48/../pom.xml'. for
>>> >> > project
>>> >> > unknown
>>> >> > [INFO] Parent project loaded from repository.
>>> >> > [INFO] Preparing source:jar
>>> >> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
>>> >> > invocation.
>>> >> > [INFO] [xrts:generate-sources {execution: default}]
>>> >> > [INFO] [source:jar {execution: attach-source}]
>>> >> > [INFO] [install:install]
>>> >> > [INFO] Installing
>>> >> > /local/continuum-1.1-beta-2/working-directory/48/pom.xml
>>> >> > to
>>> >> >
>>> >> >
>>> >> > /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad/1.2.14-SNAPSHOT/trinidad-1.2.14-SNAPSHOT.pom
>>> >> > [INFO] [deploy:deploy]
>>> >> > [INFO] Retrieving previous build number from apache-maven-snapshots
>>> >> > Uploading:
>>> >> >
>>> >> >
>>> >> > scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad/1.2.14-SNAPSHOT/trinidad-1.2.14-SNAPSHOT.pom
>>> >> > [INFO] Retrieving previous metadata from apache-maven-snapshots
>>> >> > [INFO] Uploading repository metadata for: 'snapshot
>>> >> > org.apache.myfaces.trinidad:trinidad:1.2.14-SNAPSHOT'
>>> >> > [INFO] Uploading site descriptor for trinidad 1.2.14-SNAPSHOT
>>> >> > site.xml
>>> >> > [INFO] Retrieving previous metadata from apache-maven-snapshots
>>> >> > [INFO] Uploading repository metadata for: 'artifact
>>> >> > org.apache.myfaces.trinidad:trinidad'
>>> >> > [INFO]
>>> >> >
>>> >> > ------------------------------------------------------------------------
>>> >> > [INFO] Building Apache MyFaces Trinidad Build
>>> >> > [INFO]    task-segment: [clean, install, source:jar, deploy]
>>> >> > [INFO]
>>> >> >
>>> >> > ------------------------------------------------------------------------
>>> >> > [INFO] [clean:clean]
>>> >> > [INFO] Deleting directory
>>> >> >
>>> >> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target
>>> >> > [INFO] [xrts:generate-sources {execution: default}]
>>> >> > [INFO] [remote-resources:process {execution: default}]
>>> >> > [INFO] [faces:generate-master-faces-config {execution: default}]
>>> >> > [INFO] Generating META-INF/maven-faces-plugin/faces-config.xml
>>> >> > [INFO] [resources:resources]
>>> >> > [INFO] Using default encoding to copy filtered resources.
>>> >> > [INFO] [compiler:compile]
>>> >> > [INFO] No sources to compile
>>> >> > [INFO] [xrts:generate-test-sources {execution: default}]
>>> >> > [INFO] [resources:testResources]
>>> >> > [INFO] Using default encoding to copy filtered resources.
>>> >> > [INFO] [compiler:testCompile]
>>> >> > [INFO] No sources to compile
>>> >> > [INFO] [surefire:test]
>>> >> > [INFO] Surefire report directory:
>>> >> >
>>> >> >
>>> >> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/surefire-reports
>>> >> >
>>> >> > -------------------------------------------------------
>>> >> > T E S T S
>>> >> > -------------------------------------------------------
>>> >> > There are no tests to run.
>>> >> >
>>> >> > Results :
>>> >> >
>>> >> > Tests run: 0, Failures: 0, Errors: 0, Skipped: 0
>>> >> >
>>> >> > [INFO] [jar:jar]
>>> >> > [INFO] Building jar:
>>> >> >
>>> >> >
>>> >> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT.jar
>>> >> > [INFO] Preparing source:jar
>>> >> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
>>> >> > invocation.
>>> >> > [INFO] [xrts:generate-sources {execution: default}]
>>> >> > [INFO] [source:jar {execution: attach-source}]
>>> >> > [INFO] Building jar:
>>> >> >
>>> >> >
>>> >> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>>> >> > [INFO] [install:install]
>>> >> > [INFO] Installing
>>> >> >
>>> >> >
>>> >> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT.jar
>>> >> > to
>>> >> >
>>> >> >
>>> >> > /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT.jar
>>> >> > [INFO] Installing
>>> >> >
>>> >> >
>>> >> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>>> >> > to
>>> >> >
>>> >> >
>>> >> > /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>>> >> > [INFO] Preparing source:jar
>>> >> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
>>> >> > invocation.
>>> >> > [INFO] [xrts:generate-sources {execution: default}]
>>> >> > [INFO] [source:jar]
>>> >> > [INFO] Building jar:
>>> >> >
>>> >> >
>>> >> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>>> >> > [INFO] [xrts:generate-sources {execution: default}]
>>> >> > [INFO] [remote-resources:process {execution: default}]
>>> >> > [INFO] [faces:generate-master-faces-config {execution: default}]
>>> >> > [INFO] Generating META-INF/maven-faces-plugin/faces-config.xml
>>> >> > [INFO] [resources:resources]
>>> >> > [INFO] Using default encoding to copy filtered resources.
>>> >> > [INFO] [compiler:compile]
>>> >> > [INFO] No sources to compile
>>> >> > [INFO] [xrts:generate-test-sources {execution: default}]
>>> >> > [INFO] [resources:testResources]
>>> >> > [INFO] Using default encoding to copy filtered resources.
>>> >> > [INFO] [compiler:testCompile]
>>> >> > [INFO] No sources to compile
>>> >> > [INFO] [surefire:test]
>>> >> > [INFO] Surefire report directory:
>>> >> >
>>> >> >
>>> >> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/surefire-reports
>>> >> >
>>> >> > -------------------------------------------------------
>>> >> > T E S T S
>>> >> > -------------------------------------------------------
>>> >> > There are no tests to run.
>>> >> >
>>> >> > Results :
>>> >> >
>>> >> > Tests run: 0, Failures: 0, Errors: 0, Skipped: 0
>>> >> >
>>> >> > [INFO] [jar:jar]
>>> >> > [INFO] Building jar:
>>> >> >
>>> >> >
>>> >> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT.jar
>>> >> > [INFO] Preparing source:jar
>>> >> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
>>> >> > invocation.
>>> >> > [INFO] [xrts:generate-sources {execution: default}]
>>> >> > [INFO] [source:jar {execution: attach-source}]
>>> >> > [INFO] Building jar:
>>> >> >
>>> >> >
>>> >> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>>> >> > [INFO] [install:install]
>>> >> > [INFO] Installing
>>> >> >
>>> >> >
>>> >> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT.jar
>>> >> > to
>>> >> >
>>> >> >
>>> >> > /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT.jar
>>> >> > [INFO] Installing
>>> >> >
>>> >> >
>>> >> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>>> >> > to
>>> >> >
>>> >> >
>>> >> > /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>>> >> > [INFO] Installing
>>> >> >
>>> >> >
>>> >> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>>> >> > to
>>> >> >
>>> >> >
>>> >> > /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>>> >> > [INFO] Installing
>>> >> >
>>> >> >
>>> >> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>>> >> > to
>>> >> >
>>> >> >
>>> >> > /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>>> >> > [INFO] [deploy:deploy]
>>> >> > [INFO] Retrieving previous build number from apache-maven-snapshots
>>> >> > Uploading:
>>> >> >
>>> >> >
>>> >> > scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT.jar
>>> >> > [INFO] Retrieving previous metadata from apache-maven-snapshots
>>> >> > [INFO] Uploading repository metadata for: 'snapshot
>>> >> > org.apache.myfaces.trinidad:trinidad-build:1.2.14-SNAPSHOT'
>>> >> > [INFO] Retrieving previous metadata from apache-maven-snapshots
>>> >> > [INFO] Uploading repository metadata for: 'artifact
>>> >> > org.apache.myfaces.trinidad:trinidad-build'
>>> >> > [INFO] Uploading project information for trinidad-build
>>> >> > 1.2.14-SNAPSHOT
>>> >> > [INFO] Retrieving previous build number from apache-maven-snapshots
>>> >> > Uploading:
>>> >> >
>>> >> >
>>> >> > scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>>> >> > [INFO] Retrieving previous build number from apache-maven-snapshots
>>> >> > Uploading:
>>> >> >
>>> >> >
>>> >> > scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>>> >> > [INFO] Retrieving previous build number from apache-maven-snapshots
>>> >> > Uploading:
>>> >> >
>>> >> >
>>> >> > scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>>> >> > [INFO]
>>> >> >
>>> >> > ------------------------------------------------------------------------
>>> >> > [INFO] Building Apache MyFaces Trinidad API
>>> >> > [INFO]    task-segment: [clean, install, source:jar, deploy]
>>> >> > [INFO]
>>> >> >
>>> >> > ------------------------------------------------------------------------
>>> >> > [INFO] [clean:clean]
>>> >> > [INFO] Deleting directory
>>> >> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target
>>> >> > [INFO] [xrts:generate-sources {execution: default}]
>>> >> > [INFO] Generating 54 XRTS bundles to
>>> >> >
>>> >> >
>>> >> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/maven-xrts-plugin/main/java
>>> >> > [INFO] [faces:generate-components {execution: default}]
>>> >> > [INFO] Generated 133 component(s)
>>> >> > [INFO] [i18n:generate-locale-elements {execution: default}]
>>> >> > [INFO] Generating LocaleElements
>>> >> > [INFO] [remote-resources:process {execution: default}]
>>> >> > [INFO] [resources:resources]
>>> >> > [INFO] Using default encoding to copy filtered resources.
>>> >> > [INFO] [compiler:compile]
>>> >> > [INFO] Compiling 405 source files to
>>> >> >
>>> >> >
>>> >> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/classes
>>> >> > [INFO] [xrts:generate-test-sources {execution: default}]
>>> >> > [INFO] Generating 1 XRTS bundles to
>>> >> >
>>> >> >
>>> >> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/maven-xrts-plugin/test/java
>>> >> > [INFO] [resources:testResources]
>>> >> > [INFO] Using default encoding to copy filtered resources.
>>> >> > [INFO] [compiler:testCompile]
>>> >> > [INFO] Compiling 93 source files to
>>> >> >
>>> >> >
>>> >> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/test-classes
>>> >> > [INFO] [surefire:test]
>>> >> > [INFO] Surefire report directory:
>>> >> >
>>> >> >
>>> >> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/surefire-reports
>>> >> >
>>> >> > -------------------------------------------------------
>>> >> > T E S T S
>>> >> > -------------------------------------------------------
>>> >> > Running org.apache.myfaces.trinidad.component.AddRemoveTest
>>> >> > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.081
>>> >> > sec
>>> >> > Running org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest
>>> >> >
>>> >> >
>>> >> > descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.159
>>> >> > sec
>>> >> > Running org.apache.myfaces.trinidad.util.ServiceTest
>>> >> > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.005
>>> >> > sec
>>> >> > Running org.apache.myfaces.trinidad.component.UIXSelectManyTest
>>> >> > Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed:
>>> >> > 1.387
>>> >> > sec
>>> >> > Running
>>> >> >
>>> >> >
>>> >> > org.apache.myfaces.trinidad.component.core.layout.CoreShowDetailHeaderTest
>>> >> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.044
>>> >> > sec
>>> >> > Running
>>> >> > org.apache.myfaces.trinidad.component.html.HtmlTableLayoutTest
>>> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018
>>> >> > sec
>>> >> > Running org.apache.myfaces.trinidad.validator.LengthValidatorTest
>>> >> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.028
>>> >> > sec
>>> >> > Running org.apache.myfaces.trinidad.bean.util.ValueMapTest
>>> >> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.01
>>> >> > sec
>>> >> > Running org.apache.myfaces.trinidad.component.html.HtmlScriptTest
>>> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.201
>>> >> > sec
>>> >> > Running org.apache.myfaces.trinidad.component.core.CoreFormTest
>>> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.022
>>> >> > sec
>>> >> > Running
>>> >> >
>>> >> >
>>> >> > org.apache.myfaces.trinidad.component.core.input.CoreSelectBooleanCheckboxTest
>>> >> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.019
>>> >> > sec
>>> >> > Running org.apache.myfaces.trinidad.component.html.HtmlCellFormatTest
>>> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018
>>> >> > sec
>>> >> > Running org.apache.myfaces.trinidad.validator.LongRangeValidatorTest
>>> >> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015
>>> >> > sec
>>> >> > Running
>>> >> > org.apache.myfaces.trinidad.validator.DateRestrictionValidatorTest
>>> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.022
>>> >> > sec
>>> >> > Running
>>> >> > org.apache.myfaces.trinidad.component.core.layout.CorePanelRadioTest
>>> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.022
>>> >> > sec
>>> >> > Running org.apache.myfaces.trinidad.component.UIXTreeTest
>>> >> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014
>>> >> > sec
>>> >> > Running org.apache.myfaces.trinidad.component.UIXSwitcherTest
>>> >> > Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014
>>> >> > sec
>>> >> > Running
>>> >> > org.apache.myfaces.trinidad.component.core.layout.CorePanelBoxTest
>>> >> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018
>>> >> > sec
>>> >> > Running org.apache.myfaces.trinidad.convert.ColorConverterTest
>>> >> > Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed:
>>> >> > 0.179
>>> >> > sec
>>> >> > Running
>>> >> > org.apache.myfaces.trinidad.component.core.nav.CoreBreadCrumbsTest
>>> >> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.039
>>> >> > sec
>>> >> > Running org.apache.myfaces.trinidad.util.Base64InputStreamTest
>>> >> > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.009
>>> >> > sec
>>> >> > Running org.apache.myfaces.trinidad.bean.PropertyKeyTest
>>> >> > Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.003
>>> >> > sec
>>> >> > Running
>>> >> > org.apache.myfaces.trinidad.component.core.data.CoreColumnTest
>>> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.026
>>> >> > sec
>>> >> > Running
>>> >> > org.apache.myfaces.trinidad.component.core.output.CoreSeparatorTest
>>> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018
>>> >> > sec
>>> >> > Running
>>> >> > org.apache.myfaces.trinidad.component.core.output.CoreOutputTextTest
>>> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.023
>>> >> > sec
>>> >> > Running org.apache.myfaces.trinidad.component.html.HtmlFrameTest
>>> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017
>>> >> > sec
>>> >> > Running org.apache.myfaces.trinidad.util.FastMessageFormatTest
>>> >> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec
>>> >> > Running org.apache.myfaces.trinidad.validator.RegExpValidatorTest
>>> >> > Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed:
>>> >> > 0.015
>>> >> > sec
>>> >> > Running org.apache.myfaces.trinidad.bean.FacesBeanImplTest
>>> >> > Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.13
>>> >> > sec
>>> >> > Running
>>> >> > org.apache.myfaces.trinidad.component.core.layout.CoreShowDetailTest
>>> >> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018
>>> >> > sec
>>> >> > Running org.apache.myfaces.trinidad.component.UIXProcessTest
>>> >> > Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017
>>> >> > sec
>>> >> > Running
>>> >> >
>>> >> > org.apache.myfaces.trinidad.component.core.layout.CorePanelSideBarTest
>>> >> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016
>>> >> > sec
>>> >> > Running
>>> >> > org.apache.myfaces.trinidad.component.html.HtmlFrameBorderLayoutTest
>>> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.022
>>> >> > sec
>>> >> > Running
>>> >> > org.apache.myfaces.trinidad.convert.TrinidadDateTimeConverterTest
>>> >> > Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed:
>>> >> > 1.242
>>> >> > sec
>>> >> > Running org.apache.myfaces.trinidad.component.html.HtmlHtmlTest
>>> >> > Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.012
>>> >> > sec
>>> >> > Running org.apache.myfaces.trinidad.component.UIXSelectOrderTest
>>> >> > Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed:
>>> >> > 0.016
>>> >> > sec
>>> >> > Running org.apache.myfaces.trinidad.render.RenderUtilsTest
>>> >> >  Found PropertyDescriptor java.beans.PropertyDescriptor@7bf628e6Feb
>>> >> > 6,
>>> >> > 2010
>>> >> > 1:04:40 PM org.apache.myfaces.trinidad.util.ComponentUtils
>>> >> > _findRelativeComponentDeprecated
>>> >> > WARNING: Could not find the component with scopedId :::button1 from
>>> >> > UIXInput[UIXEditableFacesBeanImpl, id=input1] with the supported
>>> >> > syntax.
>>> >> > The
>>> >> > component was found with the deprecated syntax. Please use the
>>> >> > supported
>>> >> > syntax.
>>> >> > Feb 6, 2010 1:04:40 PM org.apache.myfaces.trinidad.render.RenderUtils
>>> >> > getRelativeId
>>> >> > WARNING: Could not find the component with scopedId commandButton1
>>> >> > from
>>> >> > RenderUtilsTest$TestNamingContainer[UIXFacesBeanImpl, id=table1] with
>>> >> > the
>>> >> > supported syntax. The component was found with the deprecated syntax.
>>> >> > Please
>>> >> > use the supported syntax.
>>> >> > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.01
>>> >> > sec
>>> >> > Running
>>> >> > org.apache.myfaces.trinidad.validator.DateTimeRangeValidatorTest
>>> >> > Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed:
>>> >> > 0.071
>>> >> > sec
>>> >> > Running
>>> >> > org.apache.myfaces.trinidad.resource.AggregatingResourceLoaderTest
>>> >> > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014
>>> >> > sec
>>> >> > Running
>>> >> > org.apache.myfaces.trinidad.component.core.layout.CorePanelListTest
>>> >> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018
>>> >> > sec
>>> >> > Running
>>> >> > org.apache.myfaces.trinidad.component.core.layout.CorePanelHeaderTest
>>> >> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017
>>> >> > sec
>>> >> > Running org.apache.myfaces.trinidad.model.RowKeySetImplTest
>>> >> > Tests run: 14, Failures: 0, Errors: 0, Skipped: 0, Time elapsed:
>>> >> > 0.026
>>> >> > sec
>>> >> > Running org.apache.myfaces.trinidad.util.Base64OutputStreamTest
>>> >> > Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.011
>>> >> > sec
>>> >> > Running org.apache.myfaces.trinidad.util.ArrayMapTest
>>> >> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004
>>> >> > sec
>>> >> > Running org.apache.myfaces.trinidad.convert.JsfNumberConverterTest
>>> >> > resource bundle javax.faces.Messages could not be found
>>> >> > Tests run: 16, Failures: 0, Errors: 0, Skipped: 0, Time elapsed:
>>> >> > 0.029
>>> >> > sec
>>> >> > Running
>>> >> >
>>> >> >
>>> >> > org.apache.myfaces.trinidad.component.core.layout.CorePanelGroupLayoutTest
>>> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.025
>>> >> > sec
>>> >> > Running org.apache.myfaces.trinidad.validator.ByteLengthValidatorTest
>>> >> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014
>>> >> > sec
>>> >> > Running org.apache.myfaces.trinidad.component.core.nav.CoreTrainTest
>>> >> > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.002
>>> >> > sec
>>> >> > Running org.apache.myfaces.trinidad.bean.TypeTest
>>> >> > Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.003
>>> >> > sec
>>> >> > Running org.apache.myfaces.trinidad.util.ListFromCollectionTest
>>> >> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004
>>> >> > sec
>>> >> > Running
>>> >> >
>>> >> >
>>> >> > org.apache.myfaces.trinidad.component.core.data.CoreSelectRangeChoiceBarTest
>>> >> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.022
>>> >> > sec
>>> >> > Running
>>> >> > org.apache.myfaces.trinidad.component.core.output.CoreSpacerTest
>>> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.224
>>> >> > sec
>>> >> > Running
>>> >> >
>>> >> > org.apache.myfaces.trinidad.component.core.layout.CorePanelAccordionTest
>>> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018
>>> >> > sec
>>> >> > Running org.apache.myfaces.trinidad.component.FindComponentTest
>>> >> > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.013
>>> >> > sec
>>> >> > Running org.apache.myfaces.trinidad.model.RowKeySetTreeImplTest
>>> >> >
>>> >> >
>>> >> > descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>>> >> > name=kids
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>>> >> > Tests run: 13, Failures: 0, Errors: 0, Skipped: 0, Time elapsed:
>>> >> > 0.039
>>> >> > sec
>>> >> > Running org.apache.myfaces.trinidad.model.SortableModelTest
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>>> >> > name=name
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>>> >> > name=name
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>>> >> > name=name
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>>> >> > name=name
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>>> >> > name=age
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>>> >> > name=name
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>>> >> > name=object
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@7ac113d1descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>>> >> > name=name
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>>> >> > name=name
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>>> >> > name=name
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>>> >> > name=name
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>>> >> > name=name
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>>> >> > name=name
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>>> >> > name=name
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>>> >> > name=name
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>>> >> > name=age
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>>> >> > name=age
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>>> >> > name=age
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>>> >> > name=age
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>>> >> > name=age
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>>> >> > name=age
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>>> >> > name=age
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>>> >> > name=age
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>>> >> > name=age
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>>> >> > name=age
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>>> >> > name=age
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>>> >> > name=age
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>>> >> > name=age
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>>> >> > name=age
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>>> >> > name=age
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>>> >> > name=age
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>>> >> > name=age
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>>> >> >  Found PropertyDescriptor
>>> >> >
>>> >> >
>>> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>>> >> > name=age
>>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792<
>>
>> ...
>>
>> [Message clipped]
>
>
>
> --
> Matthias Wessendorf
>
> blog: http://matthiaswessendorf.wordpress.com/
> sessions: http://www.slideshare.net/mwessendorf
> twitter: http://twitter.com/mwessendorf
>

Re: BUILD FAILURE: Apache MyFaces Trinidad 1.2

Posted by Matthias Wessendorf <ma...@apache.org>.
on my machine it just build fine too...

hrm... what's going on ? :)


On Mon, Feb 8, 2010 at 6:29 PM, Matt Cooper <mc...@apache.org> wrote:
> Hi Matthias,
>
> I don't think this revision was the cause.  I'm using Java5 and am seeing
> the following error in
> /trinidad-impl/target/surefire-reports/org.apache.myfaces.trinidadinternal.renderkit.CoreRenderKitTest.txt:
>
> -------------------------------------------------------------------------------
> Test set: org.apache.myfaces.trinidadinternal.renderkit.CoreRenderKitTest
> -------------------------------------------------------------------------------
> Tests run: 775, Failures: 0, Errors: 119, Skipped: 0, Time elapsed: 10.689
> sec <<< FAILURE!
> breadCrumbs-minimal(org.apache.myfaces.trinidadinternal.renderkit.RenderKitTestCase$RendererTest)
> Time elapsed: 0.655 sec  <<< ERROR!
> java.lang.IncompatibleClassChangeError: Found class
> org.apache.myfaces.trinidadinternal.agent.TrinidadAgent, but interface was
> expected
>     at
> org.apache.myfaces.trinidadinternal.ui.laf.base.BaseLafRenderer.getAgentCapability(BaseLafRenderer.java:771)
>     at
> org.apache.myfaces.trinidadinternal.ui.laf.base.BaseLafRenderer.getBooleanAgentCapability(BaseLafRenderer.java:783)
>     at
> org.apache.myfaces.trinidadinternal.ui.laf.base.BaseLafRenderer.supportsIntrinsicEvents(BaseLafRenderer.java:922)
>     at
> org.apache.myfaces.trinidadinternal.ui.laf.base.xhtml.LinkRenderer.getDestination(LinkRenderer.java:301)
>     at
> org.apache.myfaces.trinidadinternal.ui.laf.base.xhtml.LinkRenderer.getElementName(LinkRenderer.java:521)
>     at
> org.apache.myfaces.trinidadinternal.ui.ElementRenderer.prerender(ElementRenderer.java:70)
>     at
> org.apache.myfaces.trinidadinternal.ui.laf.base.xhtml.XhtmlLafRenderer.prerender(XhtmlLafRenderer.java:201)
>     at
> org.apache.myfaces.trinidadinternal.ui.laf.base.xhtml.LinkRenderer.prerender(LinkRenderer.java:406)
>     at
> org.apache.myfaces.trinidadinternal.ui.BaseRenderer.render(BaseRenderer.java:91)
>     at
> org.apache.myfaces.trinidadinternal.ui.laf.base.xhtml.XhtmlLafRenderer.render(XhtmlLafRenderer.java:85)
> ...
>
> This doesn't appear to be related to the line that was added to
> OutputUtils.java:
>
> writer.writeAttribute("role", "presentation", null);
>
> Regards,
> Matt
>
> On Mon, Feb 8, 2010 at 8:47 AM, Matthias Wessendorf <ma...@apache.org>
> wrote:
>>
>> hi
>>
>> the 2.0 version has; Yes. but trunk should compile fine w/ Java5
>>
>> -Matthias
>>
>> On Mon, Feb 8, 2010 at 4:35 PM, Leonardo Uribe <lu...@gmail.com> wrote:
>> > Hi
>> >
>> > I think this is not related, but I cannot compile trinidad maven faces
>> > plugin, because there is an error related to a Override annotation.
>> >
>> > regards,
>> >
>> > Leonardo Uribe
>> >
>> > 2010/2/6 Matthias Wessendorf <ma...@apache.org>
>> >>
>> >> Hello Matt,
>> >>
>> >> because of REV 904625.
>> >> http://svn.apache.org/viewvc?view=revision&revision=904625
>> >>
>> >> the build is failing.
>> >>
>> >> Make sure you are using Java5 etc.
>> >>
>> >> Thanks!
>> >> Matthias
>> >>
>> >> On Sat, Feb 6, 2010 at 2:09 PM, Continuum@myfaces.zones.apache.org
>> >> <co...@myfaces.apache.org> wrote:
>> >> > Online report :
>> >> >
>> >> >
>> >> > http://myfaces.zones.apache.org:8080/continuum/buildResult.action?buildId=26039&projectId=48
>> >> >
>> >> > Build statistics:
>> >> >  State: Failed
>> >> >  Previous State: Ok
>> >> >  Started at: Sat 6 Feb 2010 13:01:39 +0000
>> >> >  Finished at: Sat 6 Feb 2010 13:08:50 +0000
>> >> >  Total time: 7m 11s
>> >> >  Build Trigger: Forced
>> >> >  Build Number: 343
>> >> >  Exit code: 1
>> >> >  Building machine hostname: myfaces.zones.apache.org
>> >> >  Operating system : SunOS(unknown)
>> >> >  Java Home version :         java version "1.5.0_22"
>> >> >         Java(TM) 2 Runtime Environment, Standard Edition (build
>> >> > 1.5.0_22-b03)
>> >> >         Java HotSpot(TM) Server VM (build 1.5.0_22-b03, mixed mode)
>> >> >        Builder version :
>> >> >         Maven version: 2.0.10
>> >> >         Java version: 1.5.0_22
>> >> >         OS name: "sunos" version: "5.10" arch: "x86" Family: "unix"
>> >> >
>> >> >
>> >> >
>> >> > ****************************************************************************
>> >> > SCM Changes:
>> >> >
>> >> >
>> >> > ****************************************************************************
>> >> > Changed: mcooper @ Fri 29 Jan 2010 21:19:14 +0000
>> >> > Comment: TRINIDAD-1696 acc (screen reader mode) layout tables should
>> >> > include
>> >> > role="presentation"
>> >> >
>> >> > Thanks to Dave Robinson for the patch:
>> >> >
>> >> > When using trh:tableLayout in our page to layout some UI components,
>> >> > it
>> >> > gives warning during Accessibility testing:
>> >> > "WARNING - This layout Table could be confused for a data table by
>> >> > Screen
>> >> > Readers"
>> >> > From the html perspective, this warning can be fixed by setting
>> >> > role="presentation" on the html table element.
>> >> >
>> >> > We can add role="presentation" to layout tables with the following
>> >> > addition
>> >> > to
>> >> >
>> >> >
>> >> >
>> >> > org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.OutputTextUtils.renderLayoutTableAttributes():
>> >> >
>> >> >  if (CoreRenderer.isScreenReaderMode(arc))
>> >> >  {
>> >> >   ResponseWriter writer = context.getResponseWriter();
>> >> >   writer.writeAttribute("datatable", "0", null);
>> >> >
>> >> > --> writer.writeAttribute("role", "presentation", null); <--
>> >> >
>> >> >  }
>> >> > Files changed:
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/xhtml/OutputUtils.java
>> >> > ( 904625 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/columnGroup-minimalScrRdr-golden.xml
>> >> > ( 904625 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/editableTable-minimalScrRdr-golden.xml
>> >> > ( 904625 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputColor-minimalScrRdr-golden.xml
>> >> > ( 904625 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputDate-minimalScrRdr-golden.xml
>> >> > ( 904625 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputFile-minimalScrRdr-golden.xml
>> >> > ( 904625 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputListOfValues-minimalScrRdr-golden.xml
>> >> > ( 904625 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputNumberSpinbox-minimalScrRdr-golden.xml
>> >> > ( 904625 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputText-minimalScrRdr-golden.xml
>> >> > ( 904625 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputText-rows-minimalScrRdr-golden.xml
>> >> > ( 904625 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/messages-minimalScrRdr-golden.xml
>> >> > ( 904625 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/messagesError-minimalScrRdr-golden.xml
>> >> > ( 904625 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/messagesFatal-minimalScrRdr-golden.xml
>> >> > ( 904625 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/messagesInfo-minimalScrRdr-golden.xml
>> >> > ( 904625 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/messagesWarn-minimalScrRdr-golden.xml
>> >> > ( 904625 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/navigationPaneBar-minimalScrRdr-golden.xml
>> >> > ( 904625 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/navigationPaneButtons-minimalScrRdr-golden.xml
>> >> > ( 904625 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/navigationPaneList-minimalScrRdr-golden.xml
>> >> > ( 904625 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/navigationPaneTabs-minimalScrRdr-golden.xml
>> >> > ( 904625 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelBorderLayout-minimalScrRdr-golden.xml
>> >> > ( 904625 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelBox-minimalScrRdr-golden.xml
>> >> > ( 904625 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelButtonBar-minimalScrRdr-golden.xml
>> >> > ( 904625 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelFormLayout-minimalScrRdr-golden.xml
>> >> > ( 904625 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelGroupLayout-minimalScrRdr-golden.xml
>> >> > ( 904625 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelHorizontalLayout-minimalScrRdr-golden.xml
>> >> > ( 904625 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelHorizontalLayout-separator-minimalScrRdr-golden.xml
>> >> > ( 904625 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelLabelAndMessage-facet-minimalScrRdr-golden.xml
>> >> > ( 904625 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelLabelAndMessage-minimalScrRdr-golden.xml
>> >> > ( 904625 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelList-minimalScrRdr-golden.xml
>> >> > ( 904625 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelPage-facets-minimalScrRdr-golden.xml
>> >> > ( 904625 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelPageHeader-minimalScrRdr-golden.xml
>> >> > ( 904625 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/rowLayout-minimalScrRdr-golden.xml
>> >> > ( 904625 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectBooleanCheckbox-minimalScrRdr-golden.xml
>> >> > ( 904625 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectBooleanRadio-minimalScrRdr-golden.xml
>> >> > ( 904625 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectManyCheckbox-minimalScrRdr-golden.xml
>> >> > ( 904625 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectManyListBox-minimalScrRdr-golden.xml
>> >> > ( 904625 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectManyShuttle-minimalScrRdr-golden.xml
>> >> > ( 904625 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectOneChoice-minimalScrRdr-golden.xml
>> >> > ( 904625 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectOneListbox-minimalScrRdr-golden.xml
>> >> > ( 904625 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectOneRadio-minimalScrRdr-golden.xml
>> >> > ( 904625 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectOrderShuttle-minimalScrRdr-golden.xml
>> >> > ( 904625 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectRangeChoiceBar-minimalScrRdr-golden.xml
>> >> > ( 904625 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectRangeChoiceBarBig-minimalScrRdr-golden.xml
>> >> > ( 904625 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/singleStepButtonBar-minimalScrRdr-golden.xml
>> >> > ( 904625 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/table-minimalScrRdr-golden.xml
>> >> > ( 904625 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/tableSelectMany-minimalScrRdr-golden.xml
>> >> > ( 904625 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/tableSelectOne-minimalScrRdr-golden.xml
>> >> > ( 904625 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/train-minimalScrRdr-golden.xml
>> >> > ( 904625 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/treeTable-minimalScrRdr-golden.xml
>> >> > ( 904625 )
>> >> >
>> >> > Changed: matzew @ Sat 30 Jan 2010 11:17:15 +0000
>> >> > Comment: added a jetty profile for the new awesome showcase
>> >> > Files changed:
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/pom.xml
>> >> > ( 904764 )
>> >> >
>> >> > Changed: jwaldman @ Tue 2 Feb 2010 18:17:22 +0000
>> >> > Comment: TRINIDAD-1702 performance: decrease memory of
>> >> > FileSystemStyleCache
>> >> > by reusing CSSStyle objects.
>> >> > Files changed:
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/style/cache/FileSystemStyleCache.java
>> >> > ( 905740 )
>> >> >
>> >> > Changed: matzew @ Tue 2 Feb 2010 19:09:07 +0000
>> >> > Comment: TRINIDAD-983 - Sortable model for localized text
>> >> >
>> >> >
>> >> > ported patch from Toma havelka to trinidad/jsf 1.2
>> >> > Files changed:
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-api/src/main/java/org/apache/myfaces/trinidad/model/SortableModel.java
>> >> > ( 905749 )
>> >> >
>> >> > Changed: ckormos @ Wed 3 Feb 2010 20:59:09 +0000
>> >> > Comment: fixed [TRINIDAD-1706] - Trinidad components showcase demo
>> >> > app
>> >> > doesn't include java sources in packaged war
>> >> > Files changed:
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/pom.xml
>> >> > ( 906239 )
>> >> >
>> >> > Changed: ckormos @ Wed 3 Feb 2010 21:07:19 +0000
>> >> > Comment: [trinidad components showcase] :
>> >> >    -  removed usage of commons logging, replaced with logging with
>> >> > java.util.
>> >> >    - added arg to sitemap generator to be able to specify base URL on
>> >> > execution.
>> >> > Files changed:
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/java/org/apache/myfaces/trinidaddemo/ComponentDemoRegistry.java
>> >> > ( 906243 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/java/org/apache/myfaces/trinidaddemo/NavigationHandlerPhaseListener.java
>> >> > ( 906243 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/java/org/apache/myfaces/trinidaddemo/support/PrettyUrlFilter.java
>> >> > ( 906243 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/java/org/apache/myfaces/trinidaddemo/support/impl/ComponentVariantDemoDescriptionProvider.java
>> >> > ( 906243 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/java/org/apache/myfaces/trinidaddemo/support/util/SitemapGenerator.java
>> >> > ( 906243 )
>> >> >
>> >> > Changed: bsullivan @ Thu 4 Feb 2010 22:44:48 +0000
>> >> > Comment: Make sure that the ID_KEY is present in the
>> >> > UIXFacesBeanImpl.java
>> >> > key set when the UIXFacesBeanImpl is delegating the storageof the ID
>> >> > property back to the UIXComponentBase.
>> >> > Files changed:
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-api/src/main/java/org/apache/myfaces/trinidad/bean/FacesBeanImpl.java
>> >> > ( 906703 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-api/src/main/java/org/apache/myfaces/trinidad/component/UIXFacesBeanImpl.java
>> >> > ( 906703 )
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-api/src/main/java/org/apache/myfaces/trinidad/util/CollectionUtils.java
>> >> > ( 906703 )
>> >> >
>> >> > Changed: matzew @ Fri 5 Feb 2010 07:25:50 +0000
>> >> > Comment: added getServerInfo() call
>> >> > Files changed:
>> >> >
>> >> >
>> >> >  /myfaces/trinidad/trunk/trinidad-api/src/main/java/org/apache/myfaces/trinidad/util/ExternalContextUtils.java
>> >> > ( 906828 )
>> >> >
>> >> > Changed: matzew @ Sat 6 Feb 2010 12:05:38 +0000
>> >> > Comment: updated scm url
>> >> > Files changed:
>> >> >  /myfaces/trinidad/trunk/pom.xml ( 907204 )
>> >> >
>> >> >
>> >> >
>> >> > ****************************************************************************
>> >> > Dependencies Changes:
>> >> >
>> >> >
>> >> > ****************************************************************************
>> >> > No dependencies changed
>> >> >
>> >> >
>> >> >
>> >> > ****************************************************************************
>> >> > Test Summary:
>> >> >
>> >> >
>> >> > ****************************************************************************
>> >> > Tests: 1319
>> >> > Failures: 7
>> >> > Total time: 52037
>> >> >
>> >> >
>> >> >
>> >> > ****************************************************************************
>> >> > Output:
>> >> >
>> >> >
>> >> > ****************************************************************************
>> >> > [INFO] Scanning for projects...
>> >> > [INFO] Reactor build order: [INFO]   Apache MyFaces Trinidad 1.2
>> >> > [INFO]   Apache MyFaces Trinidad Build
>> >> > [INFO]   Apache MyFaces Trinidad API
>> >> > [INFO]   Apache MyFaces Trinidad Impl
>> >> > [INFO]   Apache MyFaces Trinidad Examples
>> >> > [INFO]   Apache MyFaces Trinidad Blank Demo
>> >> > [INFO]   Apache MyFaces Trinidad Demo
>> >> > [INFO]   Apache MyFaces Trinidad Components Showcase
>> >> > [INFO] Searching repository for plugin with prefix: 'source'.
>> >> > [INFO] org.apache.maven.plugins: checking for updates from
>> >> > apache.snapshots
>> >> > [INFO] org.codehaus.mojo: checking for updates from apache.snapshots
>> >> > [INFO]
>> >> >
>> >> > ------------------------------------------------------------------------
>> >> > [INFO] Building Apache MyFaces Trinidad 1.2
>> >> > [INFO]    task-segment: [clean, install, source:jar, deploy]
>> >> > [INFO]
>> >> >
>> >> > ------------------------------------------------------------------------
>> >> > [INFO] [clean:clean]
>> >> > [INFO] Deleting directory
>> >> > /local/continuum-1.1-beta-2/working-directory/48/target
>> >> > [INFO] [xrts:generate-sources {execution: default}]
>> >> > [INFO] Setting property: classpath.resource.loader.class =>
>> >> > 'org.codehaus.plexus.velocity.ContextClassLoaderResourceLoader'.
>> >> > [INFO] Setting property: velocimacro.messages.on => 'false'.
>> >> > [INFO] Setting property: resource.loader => 'classpath'.
>> >> > [INFO] Setting property: resource.manager.logwhenfound => 'false'.
>> >> > [INFO] [remote-resources:process {execution: default}]
>> >> > [INFO] [xrts:generate-test-sources {execution: default}]
>> >> > [INFO] [site:attach-descriptor]
>> >> > [INFO] Unable to load parent project from a relative path: Could not
>> >> > find
>> >> > the model file
>> >> > '/local/continuum-1.1-beta-2/working-directory/48/../pom.xml'. for
>> >> > project
>> >> > unknown
>> >> > [INFO] Parent project loaded from repository.
>> >> > [INFO] Preparing source:jar
>> >> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
>> >> > invocation.
>> >> > [INFO] [xrts:generate-sources {execution: default}]
>> >> > [INFO] [source:jar {execution: attach-source}]
>> >> > [INFO] [install:install]
>> >> > [INFO] Installing
>> >> > /local/continuum-1.1-beta-2/working-directory/48/pom.xml
>> >> > to
>> >> >
>> >> >
>> >> > /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad/1.2.14-SNAPSHOT/trinidad-1.2.14-SNAPSHOT.pom
>> >> > [INFO] Preparing source:jar
>> >> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
>> >> > invocation.
>> >> > [INFO] [xrts:generate-sources {execution: default}]
>> >> > [INFO] [source:jar]
>> >> > [INFO] [xrts:generate-sources {execution: default}]
>> >> > [INFO] [remote-resources:process {execution: default}]
>> >> > [INFO] [xrts:generate-test-sources {execution: default}]
>> >> > [INFO] [site:attach-descriptor]
>> >> > [INFO] Unable to load parent project from a relative path: Could not
>> >> > find
>> >> > the model file
>> >> > '/local/continuum-1.1-beta-2/working-directory/48/../pom.xml'. for
>> >> > project
>> >> > unknown
>> >> > [INFO] Parent project loaded from repository.
>> >> > [INFO] Preparing source:jar
>> >> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
>> >> > invocation.
>> >> > [INFO] [xrts:generate-sources {execution: default}]
>> >> > [INFO] [source:jar {execution: attach-source}]
>> >> > [INFO] [install:install]
>> >> > [INFO] Installing
>> >> > /local/continuum-1.1-beta-2/working-directory/48/pom.xml
>> >> > to
>> >> >
>> >> >
>> >> > /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad/1.2.14-SNAPSHOT/trinidad-1.2.14-SNAPSHOT.pom
>> >> > [INFO] [deploy:deploy]
>> >> > [INFO] Retrieving previous build number from apache-maven-snapshots
>> >> > Uploading:
>> >> >
>> >> >
>> >> > scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad/1.2.14-SNAPSHOT/trinidad-1.2.14-SNAPSHOT.pom
>> >> > [INFO] Retrieving previous metadata from apache-maven-snapshots
>> >> > [INFO] Uploading repository metadata for: 'snapshot
>> >> > org.apache.myfaces.trinidad:trinidad:1.2.14-SNAPSHOT'
>> >> > [INFO] Uploading site descriptor for trinidad 1.2.14-SNAPSHOT
>> >> > site.xml
>> >> > [INFO] Retrieving previous metadata from apache-maven-snapshots
>> >> > [INFO] Uploading repository metadata for: 'artifact
>> >> > org.apache.myfaces.trinidad:trinidad'
>> >> > [INFO]
>> >> >
>> >> > ------------------------------------------------------------------------
>> >> > [INFO] Building Apache MyFaces Trinidad Build
>> >> > [INFO]    task-segment: [clean, install, source:jar, deploy]
>> >> > [INFO]
>> >> >
>> >> > ------------------------------------------------------------------------
>> >> > [INFO] [clean:clean]
>> >> > [INFO] Deleting directory
>> >> >
>> >> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target
>> >> > [INFO] [xrts:generate-sources {execution: default}]
>> >> > [INFO] [remote-resources:process {execution: default}]
>> >> > [INFO] [faces:generate-master-faces-config {execution: default}]
>> >> > [INFO] Generating META-INF/maven-faces-plugin/faces-config.xml
>> >> > [INFO] [resources:resources]
>> >> > [INFO] Using default encoding to copy filtered resources.
>> >> > [INFO] [compiler:compile]
>> >> > [INFO] No sources to compile
>> >> > [INFO] [xrts:generate-test-sources {execution: default}]
>> >> > [INFO] [resources:testResources]
>> >> > [INFO] Using default encoding to copy filtered resources.
>> >> > [INFO] [compiler:testCompile]
>> >> > [INFO] No sources to compile
>> >> > [INFO] [surefire:test]
>> >> > [INFO] Surefire report directory:
>> >> >
>> >> >
>> >> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/surefire-reports
>> >> >
>> >> > -------------------------------------------------------
>> >> > T E S T S
>> >> > -------------------------------------------------------
>> >> > There are no tests to run.
>> >> >
>> >> > Results :
>> >> >
>> >> > Tests run: 0, Failures: 0, Errors: 0, Skipped: 0
>> >> >
>> >> > [INFO] [jar:jar]
>> >> > [INFO] Building jar:
>> >> >
>> >> >
>> >> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT.jar
>> >> > [INFO] Preparing source:jar
>> >> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
>> >> > invocation.
>> >> > [INFO] [xrts:generate-sources {execution: default}]
>> >> > [INFO] [source:jar {execution: attach-source}]
>> >> > [INFO] Building jar:
>> >> >
>> >> >
>> >> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>> >> > [INFO] [install:install]
>> >> > [INFO] Installing
>> >> >
>> >> >
>> >> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT.jar
>> >> > to
>> >> >
>> >> >
>> >> > /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT.jar
>> >> > [INFO] Installing
>> >> >
>> >> >
>> >> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>> >> > to
>> >> >
>> >> >
>> >> > /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>> >> > [INFO] Preparing source:jar
>> >> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
>> >> > invocation.
>> >> > [INFO] [xrts:generate-sources {execution: default}]
>> >> > [INFO] [source:jar]
>> >> > [INFO] Building jar:
>> >> >
>> >> >
>> >> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>> >> > [INFO] [xrts:generate-sources {execution: default}]
>> >> > [INFO] [remote-resources:process {execution: default}]
>> >> > [INFO] [faces:generate-master-faces-config {execution: default}]
>> >> > [INFO] Generating META-INF/maven-faces-plugin/faces-config.xml
>> >> > [INFO] [resources:resources]
>> >> > [INFO] Using default encoding to copy filtered resources.
>> >> > [INFO] [compiler:compile]
>> >> > [INFO] No sources to compile
>> >> > [INFO] [xrts:generate-test-sources {execution: default}]
>> >> > [INFO] [resources:testResources]
>> >> > [INFO] Using default encoding to copy filtered resources.
>> >> > [INFO] [compiler:testCompile]
>> >> > [INFO] No sources to compile
>> >> > [INFO] [surefire:test]
>> >> > [INFO] Surefire report directory:
>> >> >
>> >> >
>> >> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/surefire-reports
>> >> >
>> >> > -------------------------------------------------------
>> >> > T E S T S
>> >> > -------------------------------------------------------
>> >> > There are no tests to run.
>> >> >
>> >> > Results :
>> >> >
>> >> > Tests run: 0, Failures: 0, Errors: 0, Skipped: 0
>> >> >
>> >> > [INFO] [jar:jar]
>> >> > [INFO] Building jar:
>> >> >
>> >> >
>> >> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT.jar
>> >> > [INFO] Preparing source:jar
>> >> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
>> >> > invocation.
>> >> > [INFO] [xrts:generate-sources {execution: default}]
>> >> > [INFO] [source:jar {execution: attach-source}]
>> >> > [INFO] Building jar:
>> >> >
>> >> >
>> >> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>> >> > [INFO] [install:install]
>> >> > [INFO] Installing
>> >> >
>> >> >
>> >> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT.jar
>> >> > to
>> >> >
>> >> >
>> >> > /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT.jar
>> >> > [INFO] Installing
>> >> >
>> >> >
>> >> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>> >> > to
>> >> >
>> >> >
>> >> > /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>> >> > [INFO] Installing
>> >> >
>> >> >
>> >> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>> >> > to
>> >> >
>> >> >
>> >> > /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>> >> > [INFO] Installing
>> >> >
>> >> >
>> >> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>> >> > to
>> >> >
>> >> >
>> >> > /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>> >> > [INFO] [deploy:deploy]
>> >> > [INFO] Retrieving previous build number from apache-maven-snapshots
>> >> > Uploading:
>> >> >
>> >> >
>> >> > scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT.jar
>> >> > [INFO] Retrieving previous metadata from apache-maven-snapshots
>> >> > [INFO] Uploading repository metadata for: 'snapshot
>> >> > org.apache.myfaces.trinidad:trinidad-build:1.2.14-SNAPSHOT'
>> >> > [INFO] Retrieving previous metadata from apache-maven-snapshots
>> >> > [INFO] Uploading repository metadata for: 'artifact
>> >> > org.apache.myfaces.trinidad:trinidad-build'
>> >> > [INFO] Uploading project information for trinidad-build
>> >> > 1.2.14-SNAPSHOT
>> >> > [INFO] Retrieving previous build number from apache-maven-snapshots
>> >> > Uploading:
>> >> >
>> >> >
>> >> > scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>> >> > [INFO] Retrieving previous build number from apache-maven-snapshots
>> >> > Uploading:
>> >> >
>> >> >
>> >> > scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>> >> > [INFO] Retrieving previous build number from apache-maven-snapshots
>> >> > Uploading:
>> >> >
>> >> >
>> >> > scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>> >> > [INFO]
>> >> >
>> >> > ------------------------------------------------------------------------
>> >> > [INFO] Building Apache MyFaces Trinidad API
>> >> > [INFO]    task-segment: [clean, install, source:jar, deploy]
>> >> > [INFO]
>> >> >
>> >> > ------------------------------------------------------------------------
>> >> > [INFO] [clean:clean]
>> >> > [INFO] Deleting directory
>> >> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target
>> >> > [INFO] [xrts:generate-sources {execution: default}]
>> >> > [INFO] Generating 54 XRTS bundles to
>> >> >
>> >> >
>> >> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/maven-xrts-plugin/main/java
>> >> > [INFO] [faces:generate-components {execution: default}]
>> >> > [INFO] Generated 133 component(s)
>> >> > [INFO] [i18n:generate-locale-elements {execution: default}]
>> >> > [INFO] Generating LocaleElements
>> >> > [INFO] [remote-resources:process {execution: default}]
>> >> > [INFO] [resources:resources]
>> >> > [INFO] Using default encoding to copy filtered resources.
>> >> > [INFO] [compiler:compile]
>> >> > [INFO] Compiling 405 source files to
>> >> >
>> >> >
>> >> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/classes
>> >> > [INFO] [xrts:generate-test-sources {execution: default}]
>> >> > [INFO] Generating 1 XRTS bundles to
>> >> >
>> >> >
>> >> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/maven-xrts-plugin/test/java
>> >> > [INFO] [resources:testResources]
>> >> > [INFO] Using default encoding to copy filtered resources.
>> >> > [INFO] [compiler:testCompile]
>> >> > [INFO] Compiling 93 source files to
>> >> >
>> >> >
>> >> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/test-classes
>> >> > [INFO] [surefire:test]
>> >> > [INFO] Surefire report directory:
>> >> >
>> >> >
>> >> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/surefire-reports
>> >> >
>> >> > -------------------------------------------------------
>> >> > T E S T S
>> >> > -------------------------------------------------------
>> >> > Running org.apache.myfaces.trinidad.component.AddRemoveTest
>> >> > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.081
>> >> > sec
>> >> > Running org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest
>> >> >
>> >> >
>> >> > descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.159
>> >> > sec
>> >> > Running org.apache.myfaces.trinidad.util.ServiceTest
>> >> > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.005
>> >> > sec
>> >> > Running org.apache.myfaces.trinidad.component.UIXSelectManyTest
>> >> > Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed:
>> >> > 1.387
>> >> > sec
>> >> > Running
>> >> >
>> >> >
>> >> > org.apache.myfaces.trinidad.component.core.layout.CoreShowDetailHeaderTest
>> >> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.044
>> >> > sec
>> >> > Running
>> >> > org.apache.myfaces.trinidad.component.html.HtmlTableLayoutTest
>> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018
>> >> > sec
>> >> > Running org.apache.myfaces.trinidad.validator.LengthValidatorTest
>> >> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.028
>> >> > sec
>> >> > Running org.apache.myfaces.trinidad.bean.util.ValueMapTest
>> >> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.01
>> >> > sec
>> >> > Running org.apache.myfaces.trinidad.component.html.HtmlScriptTest
>> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.201
>> >> > sec
>> >> > Running org.apache.myfaces.trinidad.component.core.CoreFormTest
>> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.022
>> >> > sec
>> >> > Running
>> >> >
>> >> >
>> >> > org.apache.myfaces.trinidad.component.core.input.CoreSelectBooleanCheckboxTest
>> >> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.019
>> >> > sec
>> >> > Running org.apache.myfaces.trinidad.component.html.HtmlCellFormatTest
>> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018
>> >> > sec
>> >> > Running org.apache.myfaces.trinidad.validator.LongRangeValidatorTest
>> >> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015
>> >> > sec
>> >> > Running
>> >> > org.apache.myfaces.trinidad.validator.DateRestrictionValidatorTest
>> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.022
>> >> > sec
>> >> > Running
>> >> > org.apache.myfaces.trinidad.component.core.layout.CorePanelRadioTest
>> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.022
>> >> > sec
>> >> > Running org.apache.myfaces.trinidad.component.UIXTreeTest
>> >> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014
>> >> > sec
>> >> > Running org.apache.myfaces.trinidad.component.UIXSwitcherTest
>> >> > Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014
>> >> > sec
>> >> > Running
>> >> > org.apache.myfaces.trinidad.component.core.layout.CorePanelBoxTest
>> >> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018
>> >> > sec
>> >> > Running org.apache.myfaces.trinidad.convert.ColorConverterTest
>> >> > Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed:
>> >> > 0.179
>> >> > sec
>> >> > Running
>> >> > org.apache.myfaces.trinidad.component.core.nav.CoreBreadCrumbsTest
>> >> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.039
>> >> > sec
>> >> > Running org.apache.myfaces.trinidad.util.Base64InputStreamTest
>> >> > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.009
>> >> > sec
>> >> > Running org.apache.myfaces.trinidad.bean.PropertyKeyTest
>> >> > Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.003
>> >> > sec
>> >> > Running
>> >> > org.apache.myfaces.trinidad.component.core.data.CoreColumnTest
>> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.026
>> >> > sec
>> >> > Running
>> >> > org.apache.myfaces.trinidad.component.core.output.CoreSeparatorTest
>> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018
>> >> > sec
>> >> > Running
>> >> > org.apache.myfaces.trinidad.component.core.output.CoreOutputTextTest
>> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.023
>> >> > sec
>> >> > Running org.apache.myfaces.trinidad.component.html.HtmlFrameTest
>> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017
>> >> > sec
>> >> > Running org.apache.myfaces.trinidad.util.FastMessageFormatTest
>> >> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec
>> >> > Running org.apache.myfaces.trinidad.validator.RegExpValidatorTest
>> >> > Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed:
>> >> > 0.015
>> >> > sec
>> >> > Running org.apache.myfaces.trinidad.bean.FacesBeanImplTest
>> >> > Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.13
>> >> > sec
>> >> > Running
>> >> > org.apache.myfaces.trinidad.component.core.layout.CoreShowDetailTest
>> >> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018
>> >> > sec
>> >> > Running org.apache.myfaces.trinidad.component.UIXProcessTest
>> >> > Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017
>> >> > sec
>> >> > Running
>> >> >
>> >> > org.apache.myfaces.trinidad.component.core.layout.CorePanelSideBarTest
>> >> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016
>> >> > sec
>> >> > Running
>> >> > org.apache.myfaces.trinidad.component.html.HtmlFrameBorderLayoutTest
>> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.022
>> >> > sec
>> >> > Running
>> >> > org.apache.myfaces.trinidad.convert.TrinidadDateTimeConverterTest
>> >> > Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed:
>> >> > 1.242
>> >> > sec
>> >> > Running org.apache.myfaces.trinidad.component.html.HtmlHtmlTest
>> >> > Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.012
>> >> > sec
>> >> > Running org.apache.myfaces.trinidad.component.UIXSelectOrderTest
>> >> > Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed:
>> >> > 0.016
>> >> > sec
>> >> > Running org.apache.myfaces.trinidad.render.RenderUtilsTest
>> >> >  Found PropertyDescriptor java.beans.PropertyDescriptor@7bf628e6Feb
>> >> > 6,
>> >> > 2010
>> >> > 1:04:40 PM org.apache.myfaces.trinidad.util.ComponentUtils
>> >> > _findRelativeComponentDeprecated
>> >> > WARNING: Could not find the component with scopedId :::button1 from
>> >> > UIXInput[UIXEditableFacesBeanImpl, id=input1] with the supported
>> >> > syntax.
>> >> > The
>> >> > component was found with the deprecated syntax. Please use the
>> >> > supported
>> >> > syntax.
>> >> > Feb 6, 2010 1:04:40 PM org.apache.myfaces.trinidad.render.RenderUtils
>> >> > getRelativeId
>> >> > WARNING: Could not find the component with scopedId commandButton1
>> >> > from
>> >> > RenderUtilsTest$TestNamingContainer[UIXFacesBeanImpl, id=table1] with
>> >> > the
>> >> > supported syntax. The component was found with the deprecated syntax.
>> >> > Please
>> >> > use the supported syntax.
>> >> > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.01
>> >> > sec
>> >> > Running
>> >> > org.apache.myfaces.trinidad.validator.DateTimeRangeValidatorTest
>> >> > Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed:
>> >> > 0.071
>> >> > sec
>> >> > Running
>> >> > org.apache.myfaces.trinidad.resource.AggregatingResourceLoaderTest
>> >> > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014
>> >> > sec
>> >> > Running
>> >> > org.apache.myfaces.trinidad.component.core.layout.CorePanelListTest
>> >> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018
>> >> > sec
>> >> > Running
>> >> > org.apache.myfaces.trinidad.component.core.layout.CorePanelHeaderTest
>> >> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017
>> >> > sec
>> >> > Running org.apache.myfaces.trinidad.model.RowKeySetImplTest
>> >> > Tests run: 14, Failures: 0, Errors: 0, Skipped: 0, Time elapsed:
>> >> > 0.026
>> >> > sec
>> >> > Running org.apache.myfaces.trinidad.util.Base64OutputStreamTest
>> >> > Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.011
>> >> > sec
>> >> > Running org.apache.myfaces.trinidad.util.ArrayMapTest
>> >> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004
>> >> > sec
>> >> > Running org.apache.myfaces.trinidad.convert.JsfNumberConverterTest
>> >> > resource bundle javax.faces.Messages could not be found
>> >> > Tests run: 16, Failures: 0, Errors: 0, Skipped: 0, Time elapsed:
>> >> > 0.029
>> >> > sec
>> >> > Running
>> >> >
>> >> >
>> >> > org.apache.myfaces.trinidad.component.core.layout.CorePanelGroupLayoutTest
>> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.025
>> >> > sec
>> >> > Running org.apache.myfaces.trinidad.validator.ByteLengthValidatorTest
>> >> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014
>> >> > sec
>> >> > Running org.apache.myfaces.trinidad.component.core.nav.CoreTrainTest
>> >> > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.002
>> >> > sec
>> >> > Running org.apache.myfaces.trinidad.bean.TypeTest
>> >> > Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.003
>> >> > sec
>> >> > Running org.apache.myfaces.trinidad.util.ListFromCollectionTest
>> >> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004
>> >> > sec
>> >> > Running
>> >> >
>> >> >
>> >> > org.apache.myfaces.trinidad.component.core.data.CoreSelectRangeChoiceBarTest
>> >> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.022
>> >> > sec
>> >> > Running
>> >> > org.apache.myfaces.trinidad.component.core.output.CoreSpacerTest
>> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.224
>> >> > sec
>> >> > Running
>> >> >
>> >> > org.apache.myfaces.trinidad.component.core.layout.CorePanelAccordionTest
>> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018
>> >> > sec
>> >> > Running org.apache.myfaces.trinidad.component.FindComponentTest
>> >> > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.013
>> >> > sec
>> >> > Running org.apache.myfaces.trinidad.model.RowKeySetTreeImplTest
>> >> >
>> >> >
>> >> > descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> >> > name=kids
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >> > Tests run: 13, Failures: 0, Errors: 0, Skipped: 0, Time elapsed:
>> >> > 0.039
>> >> > sec
>> >> > Running org.apache.myfaces.trinidad.model.SortableModelTest
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> >> > name=name
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> >> > name=name
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> >> > name=name
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> >> > name=name
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> >> > name=age
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> >> > name=name
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> >> > name=object
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@7ac113d1descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> >> > name=name
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> >> > name=name
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> >> > name=name
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> >> > name=name
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> >> > name=name
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> >> > name=name
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> >> > name=name
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> >> > name=name
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> >> > name=age
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> >> > name=age
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> >> > name=age
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> >> > name=age
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> >> > name=age
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> >> > name=age
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> >> > name=age
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> >> > name=age
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> >> > name=age
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> >> > name=age
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> >> > name=age
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> >> > name=age
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> >> > name=age
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> >> > name=age
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> >> > name=age
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> >> > name=age
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> >> > name=age
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >> >  Found PropertyDescriptor
>> >> >
>> >> >
>> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> >> > name=age
>> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792<
>
> ...
>
> [Message clipped]



-- 
Matthias Wessendorf

blog: http://matthiaswessendorf.wordpress.com/
sessions: http://www.slideshare.net/mwessendorf
twitter: http://twitter.com/mwessendorf

Re: BUILD FAILURE: Apache MyFaces Trinidad 1.2

Posted by Matt Cooper <mc...@apache.org>.
Hi Matthias,

I don't think this revision was the cause.  I'm using Java5 and am seeing
the following error in
/trinidad-impl/target/surefire-reports/org.apache.myfaces.trinidadinternal.renderkit.CoreRenderKitTest.txt:

-------------------------------------------------------------------------------
Test set: org.apache.myfaces.trinidadinternal.renderkit.CoreRenderKitTest
-------------------------------------------------------------------------------
Tests run: 775, Failures: 0, Errors: 119, Skipped: 0, Time elapsed: 10.689
sec <<< FAILURE!
breadCrumbs-minimal(org.apache.myfaces.trinidadinternal.renderkit.RenderKitTestCase$RendererTest)
Time elapsed: 0.655 sec  <<< ERROR!
java.lang.IncompatibleClassChangeError: Found class
org.apache.myfaces.trinidadinternal.agent.TrinidadAgent, but interface was
expected
    at
org.apache.myfaces.trinidadinternal.ui.laf.base.BaseLafRenderer.getAgentCapability(BaseLafRenderer.java:771)
    at
org.apache.myfaces.trinidadinternal.ui.laf.base.BaseLafRenderer.getBooleanAgentCapability(BaseLafRenderer.java:783)
    at
org.apache.myfaces.trinidadinternal.ui.laf.base.BaseLafRenderer.supportsIntrinsicEvents(BaseLafRenderer.java:922)
    at
org.apache.myfaces.trinidadinternal.ui.laf.base.xhtml.LinkRenderer.getDestination(LinkRenderer.java:301)
    at
org.apache.myfaces.trinidadinternal.ui.laf.base.xhtml.LinkRenderer.getElementName(LinkRenderer.java:521)
    at
org.apache.myfaces.trinidadinternal.ui.ElementRenderer.prerender(ElementRenderer.java:70)
    at
org.apache.myfaces.trinidadinternal.ui.laf.base.xhtml.XhtmlLafRenderer.prerender(XhtmlLafRenderer.java:201)
    at
org.apache.myfaces.trinidadinternal.ui.laf.base.xhtml.LinkRenderer.prerender(LinkRenderer.java:406)
    at
org.apache.myfaces.trinidadinternal.ui.BaseRenderer.render(BaseRenderer.java:91)
    at
org.apache.myfaces.trinidadinternal.ui.laf.base.xhtml.XhtmlLafRenderer.render(XhtmlLafRenderer.java:85)
...

This doesn't appear to be related to the line that was added to
OutputUtils.java:

writer.writeAttribute("role", "presentation", null);


Regards,
Matt

On Mon, Feb 8, 2010 at 8:47 AM, Matthias Wessendorf <ma...@apache.org>wrote:

> hi
>
> the 2.0 version has; Yes. but trunk should compile fine w/ Java5
>
> -Matthias
>
> On Mon, Feb 8, 2010 at 4:35 PM, Leonardo Uribe <lu...@gmail.com> wrote:
> > Hi
> >
> > I think this is not related, but I cannot compile trinidad maven faces
> > plugin, because there is an error related to a Override annotation.
> >
> > regards,
> >
> > Leonardo Uribe
> >
> > 2010/2/6 Matthias Wessendorf <ma...@apache.org>
> >>
> >> Hello Matt,
> >>
> >> because of REV 904625.
> >> http://svn.apache.org/viewvc?view=revision&revision=904625
> >>
> >> the build is failing.
> >>
> >> Make sure you are using Java5 etc.
> >>
> >> Thanks!
> >> Matthias
> >>
> >> On Sat, Feb 6, 2010 at 2:09 PM, Continuum@myfaces.zones.apache.org
> >> <co...@myfaces.apache.org> wrote:
> >> > Online report :
> >> >
> >> >
> http://myfaces.zones.apache.org:8080/continuum/buildResult.action?buildId=26039&projectId=48
> >> >
> >> > Build statistics:
> >> >  State: Failed
> >> >  Previous State: Ok
> >> >  Started at: Sat 6 Feb 2010 13:01:39 +0000
> >> >  Finished at: Sat 6 Feb 2010 13:08:50 +0000
> >> >  Total time: 7m 11s
> >> >  Build Trigger: Forced
> >> >  Build Number: 343
> >> >  Exit code: 1
> >> >  Building machine hostname: myfaces.zones.apache.org
> >> >  Operating system : SunOS(unknown)
> >> >  Java Home version :         java version "1.5.0_22"
> >> >         Java(TM) 2 Runtime Environment, Standard Edition (build
> >> > 1.5.0_22-b03)
> >> >         Java HotSpot(TM) Server VM (build 1.5.0_22-b03, mixed mode)
> >> >        Builder version :
> >> >         Maven version: 2.0.10
> >> >         Java version: 1.5.0_22
> >> >         OS name: "sunos" version: "5.10" arch: "x86" Family: "unix"
> >> >
> >> >
> >> >
> ****************************************************************************
> >> > SCM Changes:
> >> >
> >> >
> ****************************************************************************
> >> > Changed: mcooper @ Fri 29 Jan 2010 21:19:14 +0000
> >> > Comment: TRINIDAD-1696 acc (screen reader mode) layout tables should
> >> > include
> >> > role="presentation"
> >> >
> >> > Thanks to Dave Robinson for the patch:
> >> >
> >> > When using trh:tableLayout in our page to layout some UI components,
> it
> >> > gives warning during Accessibility testing:
> >> > "WARNING - This layout Table could be confused for a data table by
> >> > Screen
> >> > Readers"
> >> > From the html perspective, this warning can be fixed by setting
> >> > role="presentation" on the html table element.
> >> >
> >> > We can add role="presentation" to layout tables with the following
> >> > addition
> >> > to
> >> >
> >> >
> >> >
> org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.OutputTextUtils.renderLayoutTableAttributes():
> >> >
> >> >  if (CoreRenderer.isScreenReaderMode(arc))
> >> >  {
> >> >   ResponseWriter writer = context.getResponseWriter();
> >> >   writer.writeAttribute("datatable", "0", null);
> >> >
> >> > --> writer.writeAttribute("role", "presentation", null); <--
> >> >
> >> >  }
> >> > Files changed:
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/xhtml/OutputUtils.java
> >> > ( 904625 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/columnGroup-minimalScrRdr-golden.xml
> >> > ( 904625 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/editableTable-minimalScrRdr-golden.xml
> >> > ( 904625 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputColor-minimalScrRdr-golden.xml
> >> > ( 904625 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputDate-minimalScrRdr-golden.xml
> >> > ( 904625 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputFile-minimalScrRdr-golden.xml
> >> > ( 904625 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputListOfValues-minimalScrRdr-golden.xml
> >> > ( 904625 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputNumberSpinbox-minimalScrRdr-golden.xml
> >> > ( 904625 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputText-minimalScrRdr-golden.xml
> >> > ( 904625 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputText-rows-minimalScrRdr-golden.xml
> >> > ( 904625 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/messages-minimalScrRdr-golden.xml
> >> > ( 904625 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/messagesError-minimalScrRdr-golden.xml
> >> > ( 904625 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/messagesFatal-minimalScrRdr-golden.xml
> >> > ( 904625 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/messagesInfo-minimalScrRdr-golden.xml
> >> > ( 904625 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/messagesWarn-minimalScrRdr-golden.xml
> >> > ( 904625 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/navigationPaneBar-minimalScrRdr-golden.xml
> >> > ( 904625 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/navigationPaneButtons-minimalScrRdr-golden.xml
> >> > ( 904625 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/navigationPaneList-minimalScrRdr-golden.xml
> >> > ( 904625 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/navigationPaneTabs-minimalScrRdr-golden.xml
> >> > ( 904625 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelBorderLayout-minimalScrRdr-golden.xml
> >> > ( 904625 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelBox-minimalScrRdr-golden.xml
> >> > ( 904625 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelButtonBar-minimalScrRdr-golden.xml
> >> > ( 904625 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelFormLayout-minimalScrRdr-golden.xml
> >> > ( 904625 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelGroupLayout-minimalScrRdr-golden.xml
> >> > ( 904625 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelHorizontalLayout-minimalScrRdr-golden.xml
> >> > ( 904625 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelHorizontalLayout-separator-minimalScrRdr-golden.xml
> >> > ( 904625 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelLabelAndMessage-facet-minimalScrRdr-golden.xml
> >> > ( 904625 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelLabelAndMessage-minimalScrRdr-golden.xml
> >> > ( 904625 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelList-minimalScrRdr-golden.xml
> >> > ( 904625 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelPage-facets-minimalScrRdr-golden.xml
> >> > ( 904625 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelPageHeader-minimalScrRdr-golden.xml
> >> > ( 904625 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/rowLayout-minimalScrRdr-golden.xml
> >> > ( 904625 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectBooleanCheckbox-minimalScrRdr-golden.xml
> >> > ( 904625 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectBooleanRadio-minimalScrRdr-golden.xml
> >> > ( 904625 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectManyCheckbox-minimalScrRdr-golden.xml
> >> > ( 904625 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectManyListBox-minimalScrRdr-golden.xml
> >> > ( 904625 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectManyShuttle-minimalScrRdr-golden.xml
> >> > ( 904625 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectOneChoice-minimalScrRdr-golden.xml
> >> > ( 904625 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectOneListbox-minimalScrRdr-golden.xml
> >> > ( 904625 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectOneRadio-minimalScrRdr-golden.xml
> >> > ( 904625 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectOrderShuttle-minimalScrRdr-golden.xml
> >> > ( 904625 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectRangeChoiceBar-minimalScrRdr-golden.xml
> >> > ( 904625 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectRangeChoiceBarBig-minimalScrRdr-golden.xml
> >> > ( 904625 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/singleStepButtonBar-minimalScrRdr-golden.xml
> >> > ( 904625 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/table-minimalScrRdr-golden.xml
> >> > ( 904625 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/tableSelectMany-minimalScrRdr-golden.xml
> >> > ( 904625 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/tableSelectOne-minimalScrRdr-golden.xml
> >> > ( 904625 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/train-minimalScrRdr-golden.xml
> >> > ( 904625 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/treeTable-minimalScrRdr-golden.xml
> >> > ( 904625 )
> >> >
> >> > Changed: matzew @ Sat 30 Jan 2010 11:17:15 +0000
> >> > Comment: added a jetty profile for the new awesome showcase
> >> > Files changed:
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/pom.xml
> >> > ( 904764 )
> >> >
> >> > Changed: jwaldman @ Tue 2 Feb 2010 18:17:22 +0000
> >> > Comment: TRINIDAD-1702 performance: decrease memory of
> >> > FileSystemStyleCache
> >> > by reusing CSSStyle objects.
> >> > Files changed:
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/style/cache/FileSystemStyleCache.java
> >> > ( 905740 )
> >> >
> >> > Changed: matzew @ Tue 2 Feb 2010 19:09:07 +0000
> >> > Comment: TRINIDAD-983 - Sortable model for localized text
> >> >
> >> >
> >> > ported patch from Toma havelka to trinidad/jsf 1.2
> >> > Files changed:
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-api/src/main/java/org/apache/myfaces/trinidad/model/SortableModel.java
> >> > ( 905749 )
> >> >
> >> > Changed: ckormos @ Wed 3 Feb 2010 20:59:09 +0000
> >> > Comment: fixed [TRINIDAD-1706] - Trinidad components showcase demo app
> >> > doesn't include java sources in packaged war
> >> > Files changed:
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/pom.xml
> >> > ( 906239 )
> >> >
> >> > Changed: ckormos @ Wed 3 Feb 2010 21:07:19 +0000
> >> > Comment: [trinidad components showcase] :
> >> >    -  removed usage of commons logging, replaced with logging with
> >> > java.util.
> >> >    - added arg to sitemap generator to be able to specify base URL on
> >> > execution.
> >> > Files changed:
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/java/org/apache/myfaces/trinidaddemo/ComponentDemoRegistry.java
> >> > ( 906243 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/java/org/apache/myfaces/trinidaddemo/NavigationHandlerPhaseListener.java
> >> > ( 906243 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/java/org/apache/myfaces/trinidaddemo/support/PrettyUrlFilter.java
> >> > ( 906243 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/java/org/apache/myfaces/trinidaddemo/support/impl/ComponentVariantDemoDescriptionProvider.java
> >> > ( 906243 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/java/org/apache/myfaces/trinidaddemo/support/util/SitemapGenerator.java
> >> > ( 906243 )
> >> >
> >> > Changed: bsullivan @ Thu 4 Feb 2010 22:44:48 +0000
> >> > Comment: Make sure that the ID_KEY is present in the
> >> > UIXFacesBeanImpl.java
> >> > key set when the UIXFacesBeanImpl is delegating the storageof the ID
> >> > property back to the UIXComponentBase.
> >> > Files changed:
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-api/src/main/java/org/apache/myfaces/trinidad/bean/FacesBeanImpl.java
> >> > ( 906703 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-api/src/main/java/org/apache/myfaces/trinidad/component/UIXFacesBeanImpl.java
> >> > ( 906703 )
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-api/src/main/java/org/apache/myfaces/trinidad/util/CollectionUtils.java
> >> > ( 906703 )
> >> >
> >> > Changed: matzew @ Fri 5 Feb 2010 07:25:50 +0000
> >> > Comment: added getServerInfo() call
> >> > Files changed:
> >> >
> >> >
>  /myfaces/trinidad/trunk/trinidad-api/src/main/java/org/apache/myfaces/trinidad/util/ExternalContextUtils.java
> >> > ( 906828 )
> >> >
> >> > Changed: matzew @ Sat 6 Feb 2010 12:05:38 +0000
> >> > Comment: updated scm url
> >> > Files changed:
> >> >  /myfaces/trinidad/trunk/pom.xml ( 907204 )
> >> >
> >> >
> >> >
> ****************************************************************************
> >> > Dependencies Changes:
> >> >
> >> >
> ****************************************************************************
> >> > No dependencies changed
> >> >
> >> >
> >> >
> ****************************************************************************
> >> > Test Summary:
> >> >
> >> >
> ****************************************************************************
> >> > Tests: 1319
> >> > Failures: 7
> >> > Total time: 52037
> >> >
> >> >
> >> >
> ****************************************************************************
> >> > Output:
> >> >
> >> >
> ****************************************************************************
> >> > [INFO] Scanning for projects...
> >> > [INFO] Reactor build order: [INFO]   Apache MyFaces Trinidad 1.2
> >> > [INFO]   Apache MyFaces Trinidad Build
> >> > [INFO]   Apache MyFaces Trinidad API
> >> > [INFO]   Apache MyFaces Trinidad Impl
> >> > [INFO]   Apache MyFaces Trinidad Examples
> >> > [INFO]   Apache MyFaces Trinidad Blank Demo
> >> > [INFO]   Apache MyFaces Trinidad Demo
> >> > [INFO]   Apache MyFaces Trinidad Components Showcase
> >> > [INFO] Searching repository for plugin with prefix: 'source'.
> >> > [INFO] org.apache.maven.plugins: checking for updates from
> >> > apache.snapshots
> >> > [INFO] org.codehaus.mojo: checking for updates from apache.snapshots
> >> > [INFO]
> >> >
> ------------------------------------------------------------------------
> >> > [INFO] Building Apache MyFaces Trinidad 1.2
> >> > [INFO]    task-segment: [clean, install, source:jar, deploy]
> >> > [INFO]
> >> >
> ------------------------------------------------------------------------
> >> > [INFO] [clean:clean]
> >> > [INFO] Deleting directory
> >> > /local/continuum-1.1-beta-2/working-directory/48/target
> >> > [INFO] [xrts:generate-sources {execution: default}]
> >> > [INFO] Setting property: classpath.resource.loader.class =>
> >> > 'org.codehaus.plexus.velocity.ContextClassLoaderResourceLoader'.
> >> > [INFO] Setting property: velocimacro.messages.on => 'false'.
> >> > [INFO] Setting property: resource.loader => 'classpath'.
> >> > [INFO] Setting property: resource.manager.logwhenfound => 'false'.
> >> > [INFO] [remote-resources:process {execution: default}]
> >> > [INFO] [xrts:generate-test-sources {execution: default}]
> >> > [INFO] [site:attach-descriptor]
> >> > [INFO] Unable to load parent project from a relative path: Could not
> >> > find
> >> > the model file
> >> > '/local/continuum-1.1-beta-2/working-directory/48/../pom.xml'. for
> >> > project
> >> > unknown
> >> > [INFO] Parent project loaded from repository.
> >> > [INFO] Preparing source:jar
> >> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
> >> > invocation.
> >> > [INFO] [xrts:generate-sources {execution: default}]
> >> > [INFO] [source:jar {execution: attach-source}]
> >> > [INFO] [install:install]
> >> > [INFO] Installing
> >> > /local/continuum-1.1-beta-2/working-directory/48/pom.xml
> >> > to
> >> >
> >> >
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad/1.2.14-SNAPSHOT/trinidad-1.2.14-SNAPSHOT.pom
> >> > [INFO] Preparing source:jar
> >> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
> >> > invocation.
> >> > [INFO] [xrts:generate-sources {execution: default}]
> >> > [INFO] [source:jar]
> >> > [INFO] [xrts:generate-sources {execution: default}]
> >> > [INFO] [remote-resources:process {execution: default}]
> >> > [INFO] [xrts:generate-test-sources {execution: default}]
> >> > [INFO] [site:attach-descriptor]
> >> > [INFO] Unable to load parent project from a relative path: Could not
> >> > find
> >> > the model file
> >> > '/local/continuum-1.1-beta-2/working-directory/48/../pom.xml'. for
> >> > project
> >> > unknown
> >> > [INFO] Parent project loaded from repository.
> >> > [INFO] Preparing source:jar
> >> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
> >> > invocation.
> >> > [INFO] [xrts:generate-sources {execution: default}]
> >> > [INFO] [source:jar {execution: attach-source}]
> >> > [INFO] [install:install]
> >> > [INFO] Installing
> >> > /local/continuum-1.1-beta-2/working-directory/48/pom.xml
> >> > to
> >> >
> >> >
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad/1.2.14-SNAPSHOT/trinidad-1.2.14-SNAPSHOT.pom
> >> > [INFO] [deploy:deploy]
> >> > [INFO] Retrieving previous build number from apache-maven-snapshots
> >> > Uploading:
> >> >
> >> > scpexe://
> minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad/1.2.14-SNAPSHOT/trinidad-1.2.14-SNAPSHOT.pom
> >> > [INFO] Retrieving previous metadata from apache-maven-snapshots
> >> > [INFO] Uploading repository metadata for: 'snapshot
> >> > org.apache.myfaces.trinidad:trinidad:1.2.14-SNAPSHOT'
> >> > [INFO] Uploading site descriptor for trinidad 1.2.14-SNAPSHOT site.xml
> >> > [INFO] Retrieving previous metadata from apache-maven-snapshots
> >> > [INFO] Uploading repository metadata for: 'artifact
> >> > org.apache.myfaces.trinidad:trinidad'
> >> > [INFO]
> >> >
> ------------------------------------------------------------------------
> >> > [INFO] Building Apache MyFaces Trinidad Build
> >> > [INFO]    task-segment: [clean, install, source:jar, deploy]
> >> > [INFO]
> >> >
> ------------------------------------------------------------------------
> >> > [INFO] [clean:clean]
> >> > [INFO] Deleting directory
> >> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target
> >> > [INFO] [xrts:generate-sources {execution: default}]
> >> > [INFO] [remote-resources:process {execution: default}]
> >> > [INFO] [faces:generate-master-faces-config {execution: default}]
> >> > [INFO] Generating META-INF/maven-faces-plugin/faces-config.xml
> >> > [INFO] [resources:resources]
> >> > [INFO] Using default encoding to copy filtered resources.
> >> > [INFO] [compiler:compile]
> >> > [INFO] No sources to compile
> >> > [INFO] [xrts:generate-test-sources {execution: default}]
> >> > [INFO] [resources:testResources]
> >> > [INFO] Using default encoding to copy filtered resources.
> >> > [INFO] [compiler:testCompile]
> >> > [INFO] No sources to compile
> >> > [INFO] [surefire:test]
> >> > [INFO] Surefire report directory:
> >> >
> >> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/surefire-reports
> >> >
> >> > -------------------------------------------------------
> >> > T E S T S
> >> > -------------------------------------------------------
> >> > There are no tests to run.
> >> >
> >> > Results :
> >> >
> >> > Tests run: 0, Failures: 0, Errors: 0, Skipped: 0
> >> >
> >> > [INFO] [jar:jar]
> >> > [INFO] Building jar:
> >> >
> >> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT.jar
> >> > [INFO] Preparing source:jar
> >> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
> >> > invocation.
> >> > [INFO] [xrts:generate-sources {execution: default}]
> >> > [INFO] [source:jar {execution: attach-source}]
> >> > [INFO] Building jar:
> >> >
> >> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> >> > [INFO] [install:install]
> >> > [INFO] Installing
> >> >
> >> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT.jar
> >> > to
> >> >
> >> >
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT.jar
> >> > [INFO] Installing
> >> >
> >> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> >> > to
> >> >
> >> >
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> >> > [INFO] Preparing source:jar
> >> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
> >> > invocation.
> >> > [INFO] [xrts:generate-sources {execution: default}]
> >> > [INFO] [source:jar]
> >> > [INFO] Building jar:
> >> >
> >> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> >> > [INFO] [xrts:generate-sources {execution: default}]
> >> > [INFO] [remote-resources:process {execution: default}]
> >> > [INFO] [faces:generate-master-faces-config {execution: default}]
> >> > [INFO] Generating META-INF/maven-faces-plugin/faces-config.xml
> >> > [INFO] [resources:resources]
> >> > [INFO] Using default encoding to copy filtered resources.
> >> > [INFO] [compiler:compile]
> >> > [INFO] No sources to compile
> >> > [INFO] [xrts:generate-test-sources {execution: default}]
> >> > [INFO] [resources:testResources]
> >> > [INFO] Using default encoding to copy filtered resources.
> >> > [INFO] [compiler:testCompile]
> >> > [INFO] No sources to compile
> >> > [INFO] [surefire:test]
> >> > [INFO] Surefire report directory:
> >> >
> >> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/surefire-reports
> >> >
> >> > -------------------------------------------------------
> >> > T E S T S
> >> > -------------------------------------------------------
> >> > There are no tests to run.
> >> >
> >> > Results :
> >> >
> >> > Tests run: 0, Failures: 0, Errors: 0, Skipped: 0
> >> >
> >> > [INFO] [jar:jar]
> >> > [INFO] Building jar:
> >> >
> >> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT.jar
> >> > [INFO] Preparing source:jar
> >> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
> >> > invocation.
> >> > [INFO] [xrts:generate-sources {execution: default}]
> >> > [INFO] [source:jar {execution: attach-source}]
> >> > [INFO] Building jar:
> >> >
> >> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> >> > [INFO] [install:install]
> >> > [INFO] Installing
> >> >
> >> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT.jar
> >> > to
> >> >
> >> >
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT.jar
> >> > [INFO] Installing
> >> >
> >> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> >> > to
> >> >
> >> >
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> >> > [INFO] Installing
> >> >
> >> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> >> > to
> >> >
> >> >
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> >> > [INFO] Installing
> >> >
> >> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> >> > to
> >> >
> >> >
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> >> > [INFO] [deploy:deploy]
> >> > [INFO] Retrieving previous build number from apache-maven-snapshots
> >> > Uploading:
> >> >
> >> > scpexe://
> minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT.jar
> >> > [INFO] Retrieving previous metadata from apache-maven-snapshots
> >> > [INFO] Uploading repository metadata for: 'snapshot
> >> > org.apache.myfaces.trinidad:trinidad-build:1.2.14-SNAPSHOT'
> >> > [INFO] Retrieving previous metadata from apache-maven-snapshots
> >> > [INFO] Uploading repository metadata for: 'artifact
> >> > org.apache.myfaces.trinidad:trinidad-build'
> >> > [INFO] Uploading project information for trinidad-build
> 1.2.14-SNAPSHOT
> >> > [INFO] Retrieving previous build number from apache-maven-snapshots
> >> > Uploading:
> >> >
> >> > scpexe://
> minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> >> > [INFO] Retrieving previous build number from apache-maven-snapshots
> >> > Uploading:
> >> >
> >> > scpexe://
> minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> >> > [INFO] Retrieving previous build number from apache-maven-snapshots
> >> > Uploading:
> >> >
> >> > scpexe://
> minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> >> > [INFO]
> >> >
> ------------------------------------------------------------------------
> >> > [INFO] Building Apache MyFaces Trinidad API
> >> > [INFO]    task-segment: [clean, install, source:jar, deploy]
> >> > [INFO]
> >> >
> ------------------------------------------------------------------------
> >> > [INFO] [clean:clean]
> >> > [INFO] Deleting directory
> >> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target
> >> > [INFO] [xrts:generate-sources {execution: default}]
> >> > [INFO] Generating 54 XRTS bundles to
> >> >
> >> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/maven-xrts-plugin/main/java
> >> > [INFO] [faces:generate-components {execution: default}]
> >> > [INFO] Generated 133 component(s)
> >> > [INFO] [i18n:generate-locale-elements {execution: default}]
> >> > [INFO] Generating LocaleElements
> >> > [INFO] [remote-resources:process {execution: default}]
> >> > [INFO] [resources:resources]
> >> > [INFO] Using default encoding to copy filtered resources.
> >> > [INFO] [compiler:compile]
> >> > [INFO] Compiling 405 source files to
> >> >
> >> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/classes
> >> > [INFO] [xrts:generate-test-sources {execution: default}]
> >> > [INFO] Generating 1 XRTS bundles to
> >> >
> >> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/maven-xrts-plugin/test/java
> >> > [INFO] [resources:testResources]
> >> > [INFO] Using default encoding to copy filtered resources.
> >> > [INFO] [compiler:testCompile]
> >> > [INFO] Compiling 93 source files to
> >> >
> >> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/test-classes
> >> > [INFO] [surefire:test]
> >> > [INFO] Surefire report directory:
> >> >
> >> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/surefire-reports
> >> >
> >> > -------------------------------------------------------
> >> > T E S T S
> >> > -------------------------------------------------------
> >> > Running org.apache.myfaces.trinidad.component.AddRemoveTest
> >> > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.081
> >> > sec
> >> > Running org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest
> >> >
> >> >
> descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.159
> >> > sec
> >> > Running org.apache.myfaces.trinidad.util.ServiceTest
> >> > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.005
> >> > sec
> >> > Running org.apache.myfaces.trinidad.component.UIXSelectManyTest
> >> > Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.387
> >> > sec
> >> > Running
> >> >
> >> >
> org.apache.myfaces.trinidad.component.core.layout.CoreShowDetailHeaderTest
> >> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.044
> >> > sec
> >> > Running org.apache.myfaces.trinidad.component.html.HtmlTableLayoutTest
> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018
> >> > sec
> >> > Running org.apache.myfaces.trinidad.validator.LengthValidatorTest
> >> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.028
> >> > sec
> >> > Running org.apache.myfaces.trinidad.bean.util.ValueMapTest
> >> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.01
> sec
> >> > Running org.apache.myfaces.trinidad.component.html.HtmlScriptTest
> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.201
> >> > sec
> >> > Running org.apache.myfaces.trinidad.component.core.CoreFormTest
> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.022
> >> > sec
> >> > Running
> >> >
> >> >
> org.apache.myfaces.trinidad.component.core.input.CoreSelectBooleanCheckboxTest
> >> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.019
> >> > sec
> >> > Running org.apache.myfaces.trinidad.component.html.HtmlCellFormatTest
> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018
> >> > sec
> >> > Running org.apache.myfaces.trinidad.validator.LongRangeValidatorTest
> >> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015
> >> > sec
> >> > Running
> >> > org.apache.myfaces.trinidad.validator.DateRestrictionValidatorTest
> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.022
> >> > sec
> >> > Running
> >> > org.apache.myfaces.trinidad.component.core.layout.CorePanelRadioTest
> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.022
> >> > sec
> >> > Running org.apache.myfaces.trinidad.component.UIXTreeTest
> >> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014
> >> > sec
> >> > Running org.apache.myfaces.trinidad.component.UIXSwitcherTest
> >> > Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014
> >> > sec
> >> > Running
> >> > org.apache.myfaces.trinidad.component.core.layout.CorePanelBoxTest
> >> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018
> >> > sec
> >> > Running org.apache.myfaces.trinidad.convert.ColorConverterTest
> >> > Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.179
> >> > sec
> >> > Running
> >> > org.apache.myfaces.trinidad.component.core.nav.CoreBreadCrumbsTest
> >> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.039
> >> > sec
> >> > Running org.apache.myfaces.trinidad.util.Base64InputStreamTest
> >> > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.009
> >> > sec
> >> > Running org.apache.myfaces.trinidad.bean.PropertyKeyTest
> >> > Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.003
> >> > sec
> >> > Running org.apache.myfaces.trinidad.component.core.data.CoreColumnTest
> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.026
> >> > sec
> >> > Running
> >> > org.apache.myfaces.trinidad.component.core.output.CoreSeparatorTest
> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018
> >> > sec
> >> > Running
> >> > org.apache.myfaces.trinidad.component.core.output.CoreOutputTextTest
> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.023
> >> > sec
> >> > Running org.apache.myfaces.trinidad.component.html.HtmlFrameTest
> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017
> >> > sec
> >> > Running org.apache.myfaces.trinidad.util.FastMessageFormatTest
> >> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec
> >> > Running org.apache.myfaces.trinidad.validator.RegExpValidatorTest
> >> > Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015
> >> > sec
> >> > Running org.apache.myfaces.trinidad.bean.FacesBeanImplTest
> >> > Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.13
> >> > sec
> >> > Running
> >> > org.apache.myfaces.trinidad.component.core.layout.CoreShowDetailTest
> >> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018
> >> > sec
> >> > Running org.apache.myfaces.trinidad.component.UIXProcessTest
> >> > Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017
> >> > sec
> >> > Running
> >> > org.apache.myfaces.trinidad.component.core.layout.CorePanelSideBarTest
> >> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016
> >> > sec
> >> > Running
> >> > org.apache.myfaces.trinidad.component.html.HtmlFrameBorderLayoutTest
> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.022
> >> > sec
> >> > Running
> >> > org.apache.myfaces.trinidad.convert.TrinidadDateTimeConverterTest
> >> > Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.242
> >> > sec
> >> > Running org.apache.myfaces.trinidad.component.html.HtmlHtmlTest
> >> > Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.012
> >> > sec
> >> > Running org.apache.myfaces.trinidad.component.UIXSelectOrderTest
> >> > Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016
> >> > sec
> >> > Running org.apache.myfaces.trinidad.render.RenderUtilsTest
> >> >  Found PropertyDescriptor java.beans.PropertyDescriptor@7bf628e6Feb6,
> >> > 2010
> >> > 1:04:40 PM org.apache.myfaces.trinidad.util.ComponentUtils
> >> > _findRelativeComponentDeprecated
> >> > WARNING: Could not find the component with scopedId :::button1 from
> >> > UIXInput[UIXEditableFacesBeanImpl, id=input1] with the supported
> syntax.
> >> > The
> >> > component was found with the deprecated syntax. Please use the
> supported
> >> > syntax.
> >> > Feb 6, 2010 1:04:40 PM org.apache.myfaces.trinidad.render.RenderUtils
> >> > getRelativeId
> >> > WARNING: Could not find the component with scopedId commandButton1
> from
> >> > RenderUtilsTest$TestNamingContainer[UIXFacesBeanImpl, id=table1] with
> >> > the
> >> > supported syntax. The component was found with the deprecated syntax.
> >> > Please
> >> > use the supported syntax.
> >> > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.01
> sec
> >> > Running
> org.apache.myfaces.trinidad.validator.DateTimeRangeValidatorTest
> >> > Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.071
> >> > sec
> >> > Running
> >> > org.apache.myfaces.trinidad.resource.AggregatingResourceLoaderTest
> >> > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014
> >> > sec
> >> > Running
> >> > org.apache.myfaces.trinidad.component.core.layout.CorePanelListTest
> >> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018
> >> > sec
> >> > Running
> >> > org.apache.myfaces.trinidad.component.core.layout.CorePanelHeaderTest
> >> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017
> >> > sec
> >> > Running org.apache.myfaces.trinidad.model.RowKeySetImplTest
> >> > Tests run: 14, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.026
> >> > sec
> >> > Running org.apache.myfaces.trinidad.util.Base64OutputStreamTest
> >> > Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.011
> >> > sec
> >> > Running org.apache.myfaces.trinidad.util.ArrayMapTest
> >> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004
> >> > sec
> >> > Running org.apache.myfaces.trinidad.convert.JsfNumberConverterTest
> >> > resource bundle javax.faces.Messages could not be found
> >> > Tests run: 16, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.029
> >> > sec
> >> > Running
> >> >
> >> >
> org.apache.myfaces.trinidad.component.core.layout.CorePanelGroupLayoutTest
> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.025
> >> > sec
> >> > Running org.apache.myfaces.trinidad.validator.ByteLengthValidatorTest
> >> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014
> >> > sec
> >> > Running org.apache.myfaces.trinidad.component.core.nav.CoreTrainTest
> >> > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.002
> >> > sec
> >> > Running org.apache.myfaces.trinidad.bean.TypeTest
> >> > Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.003
> >> > sec
> >> > Running org.apache.myfaces.trinidad.util.ListFromCollectionTest
> >> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004
> >> > sec
> >> > Running
> >> >
> >> >
> org.apache.myfaces.trinidad.component.core.data.CoreSelectRangeChoiceBarTest
> >> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.022
> >> > sec
> >> > Running
> org.apache.myfaces.trinidad.component.core.output.CoreSpacerTest
> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.224
> >> > sec
> >> > Running
> >> >
> org.apache.myfaces.trinidad.component.core.layout.CorePanelAccordionTest
> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018
> >> > sec
> >> > Running org.apache.myfaces.trinidad.component.FindComponentTest
> >> > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.013
> >> > sec
> >> > Running org.apache.myfaces.trinidad.model.RowKeySetTreeImplTest
> >> >
> >> >
> descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >> > Tests run: 13, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.039
> >> > sec
> >> > Running org.apache.myfaces.trinidad.model.SortableModelTest
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=name
> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=name
> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=name
> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=name
> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=age
> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=name
> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=object
> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7ac113d1descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=name
> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=name
> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=name
> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=name
> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=name
> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=name
> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=name
> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=name
> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=age
> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=age
> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=age
> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=age
> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=age
> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=age
> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=age
> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=age
> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=age
> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=age
> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=age
> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=age
> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=age
> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=age
> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=age
> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=age
> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=age
> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=age
> >> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.064
> >> > sec
> >> > Running org.apache.myfaces.trinidad.validator.DoubleRangeValidatorTest
> >> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016
> >> > sec
> >> > Running org.apache.myfaces.trinidad.component.UIXShowDetailTest
> >> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016
> >> > sec
> >> > Running org.apache.myfaces.trinidad.component.UIXInputTest
> >> > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.05
> sec
> >> > Running
> org.apache.myfaces.trinidad.convert.TrinidadNumberConverterTest
> >> > Tests run: 18, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.034
> >> > sec
> >> > Running org.apache.myfaces.trinidad.convert.JsfDateTimeConverterTest
> >> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.059
> >> > sec
> >> > Running
> >> >
> >> >
> org.apache.myfaces.trinidad.component.core.layout.CorePanelBorderLayoutTest
> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.028
> >> > sec
> >> > Running org.apache.myfaces.trinidad.util.FindRelativeComponentTest
> >> >  Found PropertyDescriptor java.beans.PropertyDescriptor@e6e3b8feFeb6,
> >> > 2010
> >> > 1:04:41 PM org.apache.myfaces.trinidad.util.ComponentUtils
> >> > _findRelativeComponentDeprecated
> >> > WARNING: Could not find the component with scopedId :::commandButton1
> >> > from
> >> > UIXInput[UIXEditableFacesBeanImpl, id=input1] with the supported
> syntax.
> >> > The
> >> > component was found with the deprecated syntax. Please use the
> supported
> >> > syntax.
> >> > Feb 6, 2010 1:04:41 PM org.apache.myfaces.trinidad.util.ComponentUtils
> >> > _findRelativeComponentDeprecated
> >> > WARNING: Could not find the component with scopedId :::commandButton1
> >> > from
> >> > UIXInput[UIXEditableFacesBeanImpl, id=inputA] with the supported
> syntax.
> >> > The
> >> > component was found with the deprecated syntax. Please use the
> supported
> >> > syntax.
> >> > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015
> >> > sec
> >> > Running
> >> > org.apache.myfaces.trinidad.component.core.layout.CorePanelChoiceTest
> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018
> >> > sec
> >> > Running org.apache.myfaces.trinidad.component.html.HtmlRowLayoutTest
> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017
> >> > sec
> >> > Running org.apache.myfaces.trinidad.component.UIXTableTest
> >> > Feb 6, 2010 1:04:41 PM org.apache.myfaces.trinidad.bean.PropertyKey
> >> > saveValue
> >> > WARNING: Unserializable
> >> > value:SortableModel[javax.faces.model.ListDataModel@985fa2] for
> >> > key:PropertyKey[value,11]
> >> > Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.058
> >> > sec
> >> > Running org.apache.myfaces.trinidad.resource.CachingResourceLoaderTest
> >> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.005
> >> > sec
> >> > Running
> >> > org.apache.myfaces.trinidad.component.core.input.CoreInputHiddenTest
> >> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.033
> >> > sec
> >> >
> >> > Results :
> >> >
> >> > Tests run: 498, Failures: 0, Errors: 0, Skipped: 0
> >> >
> >> > [INFO] [jar:jar]
> >> > [INFO] Building jar:
> >> >
> >> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT.jar
> >> > [INFO] Preparing source:jar
> >> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
> >> > invocation.
> >> > [INFO] [xrts:generate-sources {execution: default}]
> >> > [INFO] Nothing to generate - all XRTS bundles are up to date
> >> > [INFO] [faces:generate-components {execution: default}]
> >> > [INFO] Generated 133 component(s)
> >> > [INFO] [i18n:generate-locale-elements {execution: default}]
> >> > [INFO] Generating LocaleElements
> >> > [INFO] [source:jar {execution: attach-source}]
> >> > [INFO] Building jar:
> >> >
> >> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> >> > [INFO] [jar:test-jar {execution: default}]
> >> > [INFO] Building jar:
> >> >
> >> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-tests.jar
> >> > [INFO] [install:install]
> >> > [INFO] Installing
> >> >
> >> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT.jar
> >> > to
> >> >
> >> >
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT.jar
> >> > [INFO] Installing
> >> >
> >> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> >> > to
> >> >
> >> >
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> >> > [INFO] Installing
> >> >
> >> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-tests.jar
> >> > to
> >> >
> >> >
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-tests.jar
> >> > [INFO] Preparing source:jar
> >> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
> >> > invocation.
> >> > [INFO] [xrts:generate-sources {execution: default}]
> >> > [INFO] Nothing to generate - all XRTS bundles are up to date
> >> > [INFO] [faces:generate-components {execution: default}]
> >> > [INFO] Generated 133 component(s)
> >> > [INFO] [i18n:generate-locale-elements {execution: default}]
> >> > [INFO] Generating LocaleElements
> >> > [INFO] [source:jar]
> >> > [INFO] Building jar:
> >> >
> >> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> >> > [INFO] [xrts:generate-sources {execution: default}]
> >> > [INFO] Nothing to generate - all XRTS bundles are up to date
> >> > [INFO] [faces:generate-components {execution: default}]
> >> > [INFO] Generated 133 component(s)
> >> > [INFO] [i18n:generate-locale-elements {execution: default}]
> >> > [INFO] Generating LocaleElements
> >> > [INFO] [remote-resources:process {execution: default}]
> >> > [INFO] [resources:resources]
> >> > [INFO] Using default encoding to copy filtered resources.
> >> > [INFO] [compiler:compile]
> >> > [INFO] Compiling 133 source files to
> >> >
> >> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/classes
> >> > [INFO] [xrts:generate-test-sources {execution: default}]
> >> > [INFO] Nothing to generate - all XRTS bundles are up to date
> >> > [INFO] [resources:testResources]
> >> > [INFO] Using default encoding to copy filtered resources.
> >> > [INFO] [compiler:testCompile]
> >> > [INFO] Nothing to compile - all classes are up to date
> >> > [INFO] [surefire:test]
> >> > [INFO] Surefire report directory:
> >> >
> >> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/surefire-reports
> >> >
> >> > -------------------------------------------------------
> >> > T E S T S
> >> > -------------------------------------------------------
> >> > Running org.apache.myfaces.trinidad.component.AddRemoveTest
> >> > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.092
> >> > sec
> >> > Running org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest
> >> >
> >> >
> descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.148
> >> > sec
> >> > Running org.apache.myfaces.trinidad.util.ServiceTest
> >> > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.005
> >> > sec
> >> > Running org.apache.myfaces.trinidad.component.UIXSelectManyTest
> >> > Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.104
> >> > sec
> >> > Running
> >> >
> >> >
> org.apache.myfaces.trinidad.component.core.layout.CoreShowDetailHeaderTest
> >> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.036
> >> > sec
> >> > Running org.apache.myfaces.trinidad.component.html.HtmlTableLayoutTest
> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016
> >> > sec
> >> > Running org.apache.myfaces.trinidad.validator.LengthValidatorTest
> >> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.026
> >> > sec
> >> > Running org.apache.myfaces.trinidad.bean.util.ValueMapTest
> >> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.008
> >> > sec
> >> > Running org.apache.myfaces.trinidad.component.html.HtmlScriptTest
> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014
> >> > sec
> >> > Running org.apache.myfaces.trinidad.component.core.CoreFormTest
> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.019
> >> > sec
> >> > Running
> >> >
> >> >
> org.apache.myfaces.trinidad.component.core.input.CoreSelectBooleanCheckboxTest
> >> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018
> >> > sec
> >> > Running org.apache.myfaces.trinidad.component.html.HtmlCellFormatTest
> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016
> >> > sec
> >> > Running org.apache.myfaces.trinidad.validator.LongRangeValidatorTest
> >> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.013
> >> > sec
> >> > Running
> >> > org.apache.myfaces.trinidad.validator.DateRestrictionValidatorTest
> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.025
> >> > sec
> >> > Running
> >> > org.apache.myfaces.trinidad.component.core.layout.CorePanelRadioTest
> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.02
> sec
> >> > Running org.apache.myfaces.trinidad.component.UIXTreeTest
> >> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.012
> >> > sec
> >> > Running org.apache.myfaces.trinidad.component.UIXSwitcherTest
> >> > Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.013
> >> > sec
> >> > Running
> >> > org.apache.myfaces.trinidad.component.core.layout.CorePanelBoxTest
> >> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016
> >> > sec
> >> > Running org.apache.myfaces.trinidad.convert.ColorConverterTest
> >> > Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017
> >> > sec
> >> > Running
> >> > org.apache.myfaces.trinidad.component.core.nav.CoreBreadCrumbsTest
> >> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.032
> >> > sec
> >> > Running org.apache.myfaces.trinidad.util.Base64InputStreamTest
> >> > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.008
> >> > sec
> >> > Running org.apache.myfaces.trinidad.bean.PropertyKeyTest
> >> > Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004
> >> > sec
> >> > Running org.apache.myfaces.trinidad.component.core.data.CoreColumnTest
> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.023
> >> > sec
> >> > Running
> >> > org.apache.myfaces.trinidad.component.core.output.CoreSeparatorTest
> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016
> >> > sec
> >> > Running
> >> > org.apache.myfaces.trinidad.component.core.output.CoreOutputTextTest
> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.023
> >> > sec
> >> > Running org.apache.myfaces.trinidad.component.html.HtmlFrameTest
> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.076
> >> > sec
> >> > Running org.apache.myfaces.trinidad.util.FastMessageFormatTest
> >> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001
> >> > sec
> >> > Running org.apache.myfaces.trinidad.validator.RegExpValidatorTest
> >> > Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.012
> >> > sec
> >> > Running org.apache.myfaces.trinidad.bean.FacesBeanImplTest
> >> > Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.032
> >> > sec
> >> > Running
> >> > org.apache.myfaces.trinidad.component.core.layout.CoreShowDetailTest
> >> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017
> >> > sec
> >> > Running org.apache.myfaces.trinidad.component.UIXProcessTest
> >> > Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015
> >> > sec
> >> > Running
> >> > org.apache.myfaces.trinidad.component.core.layout.CorePanelSideBarTest
> >> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015
> >> > sec
> >> > Running
> >> > org.apache.myfaces.trinidad.component.html.HtmlFrameBorderLayoutTest
> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.019
> >> > sec
> >> > Running
> >> > org.apache.myfaces.trinidad.convert.TrinidadDateTimeConverterTest
> >> > Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.183
> >> > sec
> >> > Running org.apache.myfaces.trinidad.component.html.HtmlHtmlTest
> >> > Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.01
> sec
> >> > Running org.apache.myfaces.trinidad.component.UIXSelectOrderTest
> >> > Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015
> >> > sec
> >> >  Found PropertyDescriptor java.beans.PropertyDescriptor@7bf628e6Feb6,
> >> > 2010
> >> > 1:05:21 PM org.apache.myfaces.trinidad.util.ComponentUtils
> >> > _findRelativeComponentDeprecated
> >> > WARNING: Could not find the component with scopedId :::button1 from
> >> > UIXInput[UIXEditableFacesBeanImpl, id=input1] with the supported
> syntax.
> >> > The
> >> > component was found with the deprecated syntax. Please use the
> supported
> >> > syntax.
> >> > Feb 6, 2010 1:05:21 PM org.apache.myfaces.trinidad.render.RenderUtils
> >> > getRelativeId
> >> > WARNING: Could not find the component with scopedId commandButton1
> from
> >> > RenderUtilsTest$TestNamingContainer[UIXFacesBeanImpl, id=table1] with
> >> > the
> >> > supported syntax. The component was found with the deprecated syntax.
> >> > Please
> >> > use the supported syntax.
> >> > Running org.apache.myfaces.trinidad.render.RenderUtilsTest
> >> > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.007
> >> > sec
> >> > Running
> org.apache.myfaces.trinidad.validator.DateTimeRangeValidatorTest
> >> > Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.958
> >> > sec
> >> > Running
> >> > org.apache.myfaces.trinidad.resource.AggregatingResourceLoaderTest
> >> > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.208
> >> > sec
> >> > Running
> >> > org.apache.myfaces.trinidad.component.core.layout.CorePanelListTest
> >> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.166
> >> > sec
> >> > Running
> >> > org.apache.myfaces.trinidad.component.core.layout.CorePanelHeaderTest
> >> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.163
> >> > sec
> >> > Running org.apache.myfaces.trinidad.model.RowKeySetImplTest
> >> > Tests run: 14, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.581
> >> > sec
> >> > Running org.apache.myfaces.trinidad.util.Base64OutputStreamTest
> >> > Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.171
> >> > sec
> >> > Running org.apache.myfaces.trinidad.util.ArrayMapTest
> >> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.059
> >> > sec
> >> > Running org.apache.myfaces.trinidad.convert.JsfNumberConverterTest
> >> > resource bundle javax.faces.Messages could not be found
> >> > Tests run: 16, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.661
> >> > sec
> >> > Running
> >> >
> >> >
> org.apache.myfaces.trinidad.component.core.layout.CorePanelGroupLayoutTest
> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.345
> >> > sec
> >> > Running org.apache.myfaces.trinidad.validator.ByteLengthValidatorTest
> >> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.296
> >> > sec
> >> > Running org.apache.myfaces.trinidad.component.core.nav.CoreTrainTest
> >> > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.055
> >> > sec
> >> > Running org.apache.myfaces.trinidad.bean.TypeTest
> >> > Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.068
> >> > sec
> >> > Running org.apache.myfaces.trinidad.util.ListFromCollectionTest
> >> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.095
> >> > sec
> >> > Running
> >> >
> >> >
> org.apache.myfaces.trinidad.component.core.data.CoreSelectRangeChoiceBarTest
> >> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.117
> >> > sec
> >> > Running
> org.apache.myfaces.trinidad.component.core.output.CoreSpacerTest
> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.055
> >> > sec
> >> > Running
> >> >
> org.apache.myfaces.trinidad.component.core.layout.CorePanelAccordionTest
> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015
> >> > sec
> >> > Running org.apache.myfaces.trinidad.component.FindComponentTest
> >> > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.011
> >> > sec
> >> > Running org.apache.myfaces.trinidad.model.RowKeySetTreeImplTest
> >> >
> >> >
> descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> >> > name=kids
> >> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >> > Tests run: 13, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.029
> >> > sec
> >> > Running org.apache.myfaces.trinidad.model.SortableModelTest
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=name
> >> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=name
> >> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=name
> >> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=name
> >> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=age
> >> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=name
> >> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=object
> >> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@7ac113d1descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=name
> >> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=name
> >> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=name
> >> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=name
> >> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=name
> >> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=name
> >> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=name
> >> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=name
> >> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=age
> >> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=age
> >> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=age
> >> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=age
> >> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=age
> >> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=age
> >> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=age
> >> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=age
> >> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=age
> >> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=age
> >> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=age
> >> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=age
> >> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=age
> >> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=age
> >> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=age
> >> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=age
> >> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=age
> >> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >> >  Found PropertyDescriptor
> >> >
> >> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> >> > name=age
> >> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014
> >> > sec
> >> > Running org.apache.myfaces.trinidad.validator.DoubleRangeValidatorTest
> >> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.01
> sec
> >> > Running org.apache.myfaces.trinidad.component.UIXShowDetailTest
> >> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.013
> >> > sec
> >> > Running org.apache.myfaces.trinidad.component.UIXInputTest
> >> > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.042
> >> > sec
> >> > Running
> org.apache.myfaces.trinidad.convert.TrinidadNumberConverterTest
> >> > Tests run: 18, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.028
> >> > sec
> >> > Running org.apache.myfaces.trinidad.convert.JsfDateTimeConverterTest
> >> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.006
> >> > sec
> >> > Running
> >> >
> >> >
> org.apache.myfaces.trinidad.component.core.layout.CorePanelBorderLayoutTest
> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.02
> sec
> >> > Running org.apache.myfaces.trinidad.util.FindRelativeComponentTest
> >> >  Found PropertyDescriptor java.beans.PropertyDescriptor@e6e3b8feFeb6,
> >> > 2010
> >> > 1:05:26 PM org.apache.myfaces.trinidad.util.ComponentUtils
> >> > _findRelativeComponentDeprecated
> >> > WARNING: Could not find the component with scopedId :::commandButton1
> >> > from
> >> > UIXInput[UIXEditableFacesBeanImpl, id=input1] with the supported
> syntax.
> >> > The
> >> > component was found with the deprecated syntax. Please use the
> supported
> >> > syntax.
> >> > Feb 6, 2010 1:05:26 PM org.apache.myfaces.trinidad.util.ComponentUtils
> >> > _findRelativeComponentDeprecated
> >> > WARNING: Could not find the component with scopedId :::commandButton1
> >> > from
> >> > UIXInput[UIXEditableFacesBeanImpl, id=inputA] with the supported
> syntax.
> >> > The
> >> > component was found with the deprecated syntax. Please use the
> supported
> >> > syntax.
> >> > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.013
> >> > sec
> >> > Running
> >> > org.apache.myfaces.trinidad.component.core.layout.CorePanelChoiceTest
> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017
> >> > sec
> >> > Running org.apache.myfaces.trinidad.component.html.HtmlRowLayoutTest
> >> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014
> >> > sec
> >> > Running org.apache.myfaces.trinidad.component.UIXTableTest
> >> > Feb 6, 2010 1:05:26 PM org.apache.myfaces.trinidad.bean.PropertyKey
> >> > saveValue
> >> > WARNING: Unserializable
> >> > value:SortableModel[javax.faces.model.ListDataModel@1112776] for
> >> > key:PropertyKey[value,11]
> >> > Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.112
> >> > sec
> >> > Running org.apache.myfaces.trinidad.resource.CachingResourceLoaderTest
> >> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004
> >> > sec
> >> > Running
> >> > org.apache.myfaces.trinidad.component.core.input.CoreInputHiddenTest
> >> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.012
> >> > sec
> >> >
> >> > Results :
> >> >
> >> > Tests run: 498, Failures: 0, Errors: 0, Skipped: 0
> >> >
> >> > [INFO] [jar:jar]
> >> > [INFO] Building jar:
> >> >
> >> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT.jar
> >> > [INFO] Preparing source:jar
> >> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
> >> > invocation.
> >> > [INFO] [xrts:generate-sources {execution: default}]
> >> > [INFO] Nothing to generate - all XRTS bundles are up to date
> >> > [INFO] [faces:generate-components {execution: default}]
> >> > [INFO] Generated 133 component(s)
> >> > [INFO] [i18n:generate-locale-elements {execution: default}]
> >> > [INFO] Generating LocaleElements
> >> > [INFO] [source:jar {execution: attach-source}]
> >> > [INFO] Building jar:
> >> >
> >> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> >> > [INFO] [jar:test-jar {execution: default}]
> >> > [INFO] Building jar:
> >> >
> >> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-tests.jar
> >> > [INFO] [install:install]
> >> > [INFO] Installing
> >> >
> >> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT.jar
> >> > to
> >> >
> >> >
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT.jar
> >> > [INFO] Installing
> >> >
> >> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> >> > to
> >> >
> >> >
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> >> > [INFO] Installing
> >> >
> >> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-tests.jar
> >> > to
> >> >
> >> >
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-tests.jar
> >> > [INFO] Installing
> >> >
> >> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> >> > to
> >> >
> >> >
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> >> > [INFO] Installing
> >> >
> >> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> >> > to
> >> >
> >> >
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> >> > [INFO] Installing
> >> >
> >> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-tests.jar
> >> > to
> >> >
> >> >
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-tests.jar
> >> > [INFO] [deploy:deploy]
> >> > [INFO] Retrieving previous build number from apache-maven-snapshots
> >> > Uploading:
> >> >
> >> > scpexe://
> minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT.jar
> >> > [INFO] Retrieving previous metadata from apache-maven-snapshots
> >> > [INFO] Uploading repository metadata for: 'artifact
> >> > org.apache.myfaces.trinidad:trinidad-api'
> >> > [INFO] Uploading project information for trinidad-api 1.2.14-SNAPSHOT
> >> > [INFO] Retrieving previous metadata from apache-maven-snapshots
> >> > [INFO] Uploading repository metadata for: 'snapshot
> >> > org.apache.myfaces.trinidad:trinidad-api:1.2.14-SNAPSHOT'
> >> > [INFO] Retrieving previous build number from apache-maven-snapshots
> >> > Uploading:
> >> >
> >> > scpexe://
> minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> >> > [INFO] Retrieving previous build number from apache-maven-snapshots
> >> > Uploading:
> >> >
> >> > scpexe://
> minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-tests.jar
> >> > [INFO] Retrieving previous build number from apache-maven-snapshots
> >> > Uploading:
> >> >
> >> > scpexe://
> minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> >> > [INFO] Retrieving previous build number from apache-maven-snapshots
> >> > Uploading:
> >> >
> >> > scpexe://
> minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> >> > [INFO] Retrieving previous build number from apache-maven-snapshots
> >> > Uploading:
> >> >
> >> > scpexe://
> minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-tests.jar
> >> > [INFO]
> >> >
> ------------------------------------------------------------------------
> >> > [INFO] Building Apache MyFaces Trinidad Impl
> >> > [INFO]    task-segment: [clean, install, source:jar, deploy]
> >> > [INFO]
> >> >
> ------------------------------------------------------------------------
> >> > [INFO] [clean:clean]
> >> > [INFO] Deleting directory
> >> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target
> >> > [INFO] [faces:generate-jsp-taglibs {execution: default}]
> >> > [INFO] Generated 143 JSP tag(s)
> >> > [INFO] [faces:generate-facelets-taglibs {execution: default}]
> >> > [INFO] Generated META-INF/tr.taglib.xml
> >> > [INFO] Generated META-INF/trh.taglib.xml
> >> > [INFO] [faces:generate-renderer-map {execution: default}]
> >> > [INFO] [i18n:generate-locale-elements {execution: default}]
> >> > [INFO] Generating LocaleElements
> >> > [INFO] [i18n:generate-javascript-locales {execution: default}]
> >> > [INFO] Generating Javascript Locales
> >> > [INFO] [javascript:reduce-javascript {execution: default}]
> >> > [INFO] [xrts:generate-sources {execution: default}]
> >> > [INFO] Generating 59 XRTS bundles to
> >> >
> >> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/maven-xrts-plugin/main/java
> >> > [INFO] [faces:generate-faces-config {execution: default}]
> >> > [INFO] Generated META-INF/faces-config.xml
> >> > [INFO] [remote-resources:process {execution: default}]
> >> > [INFO] [resources:resources]
> >> > [INFO] Using default encoding to copy filtered resources.
> >> > [INFO] [compiler:compile]
> >> > [INFO] Compiling 1170 source files to
> >> >
> >> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/classes
> >> > [INFO] [xrts:generate-test-sources {execution: default}]
> >> > [INFO] [resources:testResources]
> >> > [INFO] Using default encoding to copy filtered resources.
> >> > [INFO] snapshot
> >> > org.apache.myfaces.trinidad:trinidad-api:1.2.14-SNAPSHOT:
> >> > checking for updates from java.net
> >> > [INFO] snapshot
> >> > org.apache.myfaces.trinidad:trinidad-api:1.2.14-SNAPSHOT:
> >> > checking for updates from apache.snapshots
> >> > [INFO] [compiler:testCompile]
> >> > [INFO] Compiling 50 source files to
> >> >
> >> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/test-classes
> >> > [INFO] [surefire:test]
> >> > [INFO] Surefire report directory:
> >> >
> >> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/surefire-reports
> >> > Feb 6, 2010 1:07:56 PM
> >> > org.apache.myfaces.trinidadinternal.renderkit.FacesConfigInfo load
> >> > INFO: PARSING
> >> >
> >> >
> file:/local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/classes/META-INF/faces-config.xml
> >> > Feb 6, 2010 1:07:57 PM
> >> > org.apache.myfaces.trinidadinternal.renderkit.FacesConfigInfo load
> >> > INFO: PARSING
> >> >
> >> >
> jar:file:/export/home/mrmaven/.m2/repository/com/sun/facelets/jsf-facelets/1.1.14/jsf-facelets-1.1.14.jar!/META-INF/faces-config.xml
> >> > Couldn't create renderer com.sun.facelets.component.RepeatRenderer
> >> >
> >> > -------------------------------------------------------
> >> > T E S T S
> >> > -------------------------------------------------------
> >> > Running
> org.apache.myfaces.trinidadinternal.metadata.RegionMetadataTest
> >> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.169
> >> > sec
> >> > Running
> >> >
> >> >
> org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.table.TableSelectOneRendererTest
> >> > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.15
> sec
> >> > Running org.apache.myfaces.trinidadinternal.el.FormatterMapTest
> >> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004
> >> > sec
> >> > Running org.apache.myfaces.trinidadinternal.util.TokenCacheTest
> >> > Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.007
> >> > sec
> >> > Running
> >> >
> org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.OutputUtilsTest
> >> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.003
> >> > sec
> >> > Running
> org.apache.myfaces.trinidadinternal.context.PartialTriggersTest
> >> > Feb 6, 2010 1:08:04 PM org.apache.myfaces.trinidad.util.ComponentUtils
> >> > _findRelativeComponentDeprecated
> >> > WARNING: Could not find the component with scopedId :::commandButton1
> >> > from
> >> > UIXInput[UIXEditableFacesBeanImpl, id=input1] with the supported
> syntax.
> >> > The
> >> > component was found with the deprecated syntax. Please use the
> supported
> >> > syntax.
> >> > Feb 6, 2010 1:08:04 PM org.apache.myfaces.trinidad.util.ComponentUtils
> >> > _findRelativeComponentDeprecated
> >> > WARNING: Could not find the component with scopedId :::commandButton1
> >> > from
> >> > UIXInput[UIXEditableFacesBeanImpl, id=inputA] with the supported
> syntax.
> >> > The
> >> > component was found with the deprecated syntax. Please use the
> supported
> >> > syntax.
> >> > Feb 6, 2010 1:08:04 PM
> >> > org.apache.myfaces.trinidadinternal.context.RequestContextImpl
> >> > addPartialTriggerListeners
> >> > WARNING: Could not find partial trigger commandButton1 from
> >> >
> >> >
> UIXTable[org.apache.myfaces.trinidad.component.UIXTable$RowKeyFacesBeanWrapper@24d0d0
> ,
> >> > id=table1] with the supported partialTriggers syntax. The partial
> >> > trigger
> >> > was found with the deprecated syntax. Please use the supported syntax.
> >> > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.05
> sec
> >> > Running org.apache.myfaces.trinidadinternal.FacesConfigTest
> >> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001
> >> > sec
> >> > Feb 6, 2010 1:08:04 PM
> >> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> >> > _warnAbsenceOfBundleKeys
> >> > WARNING: Keys missing in bundle:MessageBundle_ar are
> >> >
> >> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >> >
> >> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >> >
> >> > Feb 6, 2010 1:08:04 PM
> >> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> >> > _warnAbsenceOfBundleKeys
> >> > WARNING: Keys missing in bundle:MessageBundle_cs are
> >> >
> >> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >> >
> >> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >> >
> >> > Feb 6, 2010 1:08:04 PM
> >> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> >> > _warnAbsenceOfBundleKeys
> >> > WARNING: Keys missing in bundle:MessageBundle_da are
> >> >
> >> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >> >
> >> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >> >
> >> > Feb 6, 2010 1:08:04 PM
> >> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> >> > _warnAbsenceOfBundleKeys
> >> > WARNING: Keys missing in bundle:MessageBundle_de are
> >> >
> >> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >> >
> >> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >> >
> >> > Feb 6, 2010 1:08:04 PM
> >> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> >> > _warnAbsenceOfBundleKeys
> >> > WARNING: Keys missing in bundle:MessageBundle_el are
> >> >
> >> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >> >
> >> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >> >
> >> > Running org.apache.myfaces.trinidad.resource.MessageBundleTest
> >> > Feb 6, 2010 1:08:04 PM
> >> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> >> > _warnAbsenceOfBundleKeys
> >> > WARNING: Keys missing in bundle:MessageBundle_es are
> >> >
> >> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >> >
> >> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >> >
> >> > Feb 6, 2010 1:08:04 PM
> >> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> >> > _warnAbsenceOfBundleKeys
> >> > WARNING: Keys missing in bundle:MessageBundle_fi are
> >> >
> >> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >> >
> >> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >> >
> >> > Feb 6, 2010 1:08:04 PM
> >> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> >> > _warnAbsenceOfBundleKeys
> >> > WARNING: Keys missing in bundle:MessageBundle_fr are
> >> >
> >> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >> >
> >> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >> >
> >> > Feb 6, 2010 1:08:04 PM
> >> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> >> > _warnAbsenceOfBundleKeys
> >> > WARNING: Keys missing in bundle:MessageBundle_hu are
> >> >
> >> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >> >
> >> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >> >
> >> > Feb 6, 2010 1:08:04 PM
> >> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> >> > _warnAbsenceOfBundleKeys
> >> > WARNING: Keys missing in bundle:MessageBundle_it are
> >> >
> >> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >> >
> >> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >> >
> >> > Feb 6, 2010 1:08:04 PM
> >> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> >> > _warnAbsenceOfBundleKeys
> >> > WARNING: Keys missing in bundle:MessageBundle_iw are
> >> >
> >> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >> >
> >> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >> >
> >> > Feb 6, 2010 1:08:04 PM
> >> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> >> > _warnAbsenceOfBundleKeys
> >> > WARNING: Keys missing in bundle:MessageBundle_ja are
> >> >
> >> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >> >
> >> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >> >
> >> > Feb 6, 2010 1:08:04 PM
> >> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> >> > _warnAbsenceOfBundleKeys
> >> > WARNING: Keys missing in bundle:MessageBundle_ko are
> >> >
> >> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >> >
> >> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >> >
> >> > Feb 6, 2010 1:08:04 PM
> >> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> >> > _warnAbsenceOfBundleKeys
> >> > WARNING: Keys missing in bundle:MessageBundle_nl are
> >> >
> >> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >> >
> >> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >> >
> >> > Feb 6, 2010 1:08:04 PM
> >> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> >> > _warnAbsenceOfBundleKeys
> >> > WARNING: Keys missing in bundle:MessageBundle_no are
> >> >
> >> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >> >
> >> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >> >
> >> > Feb 6, 2010 1:08:04 PM
> >> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> >> > _warnAbsenceOfBundleKeys
> >> > WARNING: Keys missing in bundle:MessageBundle_pl are
> >> >
> >> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >> >
> >> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >> >
> >> > Feb 6, 2010 1:08:04 PM
> >> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> >> > _warnAbsenceOfBundleKeys
> >> > WARNING: Keys missing in bundle:MessageBundle_pt are
> >> >
> >> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >> >
> >> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >> >
> >> > Feb 6, 2010 1:08:04 PM
> >> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> >> > _warnAbsenceOfBundleKeys
> >> > WARNING: Keys missing in bundle:MessageBundle_pt_BR are
> >> >
> >> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >> >
> >> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >> >
> >> > Feb 6, 2010 1:08:05 PM
> >> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> >> > _warnAbsenceOfBundleKeys
> >> > WARNING: Keys missing in bundle:MessageBundle_ro are
> >> >
> >> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >> >
> >> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >> >
> >> > Feb 6, 2010 1:08:05 PM
> >> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> >> > _warnAbsenceOfBundleKeys
> >> > WARNING: Keys missing in bundle:MessageBundle_ru are
> >> >
> >> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >> >
> >> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >> >
> >> > Feb 6, 2010 1:08:05 PM
> >> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> >> > _warnAbsenceOfBundleKeys
> >> > WARNING: Keys missing in bundle:MessageBundle_sk are
> >> >
> >> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >> >
> >> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >> >
> >> > Feb 6, 2010 1:08:05 PM
> >> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> >> > _warnAbsenceOfBundleKeys
> >> > WARNING: Keys missing in bundle:MessageBundle_sv are
> >> >
> >> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >> >
> >> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >> >
> >> > Feb 6, 2010 1:08:05 PM
> >> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> >> > _warnAbsenceOfBundleKeys
> >> > WARNING: Keys missing in bundle:MessageBundle_th are
> >> >
> >> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >> >
> >> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >> >
> >> > Feb 6, 2010 1:08:05 PM
> >> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> >> > _warnAbsenceOfBundleKeys
> >> > WARNING: Keys missing in bundle:MessageBundle_tr are
> >> >
> >> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >> >
> >> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >> >
> >> > Feb 6, 2010 1:08:05 PM
> >> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> >> > _warnAbsenceOfBundleKeys
> >> > WARNING: Keys missing in bundle:MessageBundle_zh_CN are
> >> >
> >> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >> >
> >> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >> >
> >> > Feb 6, 2010 1:08:05 PM
> >> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> >> > _warnAbsenceOfBundleKeys
> >> > WARNING: Keys missing in bundle:MessageBundle_zh_TW are
> >> >
> >> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >> >
> >> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >> >
> >> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.343
> >> > sec
> >> > Running
> >> >
> >> >
> org.apache.myfaces.trinidadinternal.style.xml.parse.StyleSheetNodeEqualsTest
> >> > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.03
> sec
> >> > Running
> >> > org.apache.myfaces.trinidadinternal.application.ViewHandlerImplTest
> >> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014
> >> > sec
> >> > Running org.apache.myfaces.trinidadinternal.el.TokenizerTest
> >> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.005
> >> > sec
> >> > Running org.apache.myfaces.trinidadinternal.util.SubKeyMapTest
> >> > Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.01
> >> > sec
> >> > Running
> org.apache.myfaces.trinidadinternal.renderkit.CoreRenderKitTest
> >> > Feb 6, 2010 1:08:06 PM
> >> > org.apache.myfaces.trinidad.util.ExternalContextUtils
> >> > <clinit>
> >> > INFO: Portlet Environment Detected: 1.0
> >> > Tests run: 775, Failures: 0, Errors: 7, Skipped: 0, Time elapsed:
> 43.477
> >> > sec
> >> > <<< FAILURE!
> >> > Running org.apache.myfaces.trinidadinternal.context.RequestContextTest
> >> > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.024
> >> > sec
> >> > Running
> >> >
> org.apache.myfaces.trinidadinternal.ui.laf.base.xhtml.XhtmlLafUtilsTest
> >> > Feb 6, 2010 1:08:48 PM
> >> > org.apache.myfaces.trinidadinternal.renderkit.FacesConfigInfo load
> >> > INFO: PARSING
> >> >
> >> >
> file:/local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/classes/META-INF/faces-config.xml
> >> > Feb 6, 2010 1:08:48 PM
> >> > org.apache.myfaces.trinidadinternal.renderkit.FacesConfigInfo load
> >> > INFO: PARSING
> >> >
> >> >
> jar:file:/export/home/mrmaven/.m2/repository/com/sun/facelets/jsf-facelets/1.1.14/jsf-facelets-1.1.14.jar!/META-INF/faces-config.xml
> >> > Couldn't create renderer com.sun.facelets.component.RepeatRenderer
> >> > Feb 6, 2010 1:08:48 PM
> >> > org.apache.myfaces.trinidadinternal.renderkit.FacesConfigInfo load
> >> > INFO: PARSING
> >> >
> >> >
> file:/local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/classes/META-INF/faces-config.xml
> >> > Feb 6, 2010 1:08:48 PM
> >> > org.apache.myfaces.trinidadinternal.renderkit.FacesConfigInfo load
> >> > INFO: PARSING
> >> >
> >> >
> jar:file:/export/home/mrmaven/.m2/repository/com/sun/facelets/jsf-facelets/1.1.14/jsf-facelets-1.1.14.jar!/META-INF/faces-config.xml
> >> > Couldn't create renderer com.sun.facelets.component.RepeatRenderer
> >> > Feb 6, 2010 1:08:48 PM
> >> > org.apache.myfaces.trinidad.context.RenderingContext
> >> > attach
> >> > WARNING: Trying to attach RenderingContext to a thread that already
> had
> >> > one.
> >> > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.224
> >> > sec
> >> > Running
> >> > org.apache.myfaces.trinidadinternal.validator.ByteLengthValidatorTest
> >> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.087
> >> > sec
> >> > Running org.apache.myfaces.trinidadinternal.taglib.TLDTest
> >> > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001
> >> > sec
> >> >
> >> > Results :
> >> >
> >> > Tests in error:
> >> >
> >> >
>  singleStepButtonBar-minimal(org.apache.myfaces.trinidadinternal.renderkit.RenderKitTestCase$RendererTest)
> >> >
> >> >
>  singleStepButtonBar-minimalIE(org.apache.myfaces.trinidadinternal.renderkit.RenderKitTestCase$RendererTest)
> >> >
> >> >
>  singleStepButtonBar-minimalIERtl(org.apache.myfaces.trinidadinternal.renderkit.RenderKitTestCase$RendererTest)
> >> >
> >> >
>  singleStepButtonBar-minimalPPC(org.apache.myfaces.trinidadinternal.renderkit.RenderKitTestCase$RendererTest)
> >> >
> >> >
>  singleStepButtonBar-minimalSaf(org.apache.myfaces.trinidadinternal.renderkit.RenderKitTestCase$RendererTest)
> >> >
> >> >
>  singleStepButtonBar-minimalScrRdr(org.apache.myfaces.trinidadinternal.renderkit.RenderKitTestCase$RendererTest)
> >> >
> >> >
>  singleStepButtonBar-minimalInacc(org.apache.myfaces.trinidadinternal.renderkit.RenderKitTestCase$RendererTest)
> >> >
> >> > Tests run: 821, Failures: 0, Errors: 7, Skipped: 0
> >> >
> >> > [INFO]
> >> >
> ------------------------------------------------------------------------
> >> > [ERROR] BUILD FAILURE
> >> > [INFO]
> >> >
> ------------------------------------------------------------------------
> >> > [INFO] There are test failures.
> >> >
> >> > Please refer to
> >> >
> >> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/surefire-reports
> >> > for the individual test results.
> >> > [INFO]
> >> >
> ------------------------------------------------------------------------
> >> > [INFO] For more information, run Maven with the -e switch
> >> > [INFO]
> >> >
> ------------------------------------------------------------------------
> >> > [INFO] Total time: 7 minutes 7 seconds
> >> > [INFO] Finished at: Sat Feb 06 13:08:49 UTC 2010
> >> > [INFO] Final Memory: 45M/107M
> >> > [INFO]
> >> >
> ------------------------------------------------------------------------
> >> >
> >> >
> >> >
> ****************************************************************************
> >> >
> >> >
> >> >
> >>
> >>
> >>
> >> --
> >> Matthias Wessendorf
> >>
> >> blog: http://matthiaswessendorf.wordpress.com/
> >> sessions: http://www.slideshare.net/mwessendorf
> >> twitter: http://twitter.com/mwessendorf
> >
> >
>
>
>
> --
> Matthias Wessendorf
>
> blog: http://matthiaswessendorf.wordpress.com/
> sessions: http://www.slideshare.net/mwessendorf
> twitter: http://twitter.com/mwessendorf
>

Re: BUILD FAILURE: Apache MyFaces Trinidad 1.2

Posted by Matthias Wessendorf <ma...@apache.org>.
hi

the 2.0 version has; Yes. but trunk should compile fine w/ Java5

-Matthias

On Mon, Feb 8, 2010 at 4:35 PM, Leonardo Uribe <lu...@gmail.com> wrote:
> Hi
>
> I think this is not related, but I cannot compile trinidad maven faces
> plugin, because there is an error related to a Override annotation.
>
> regards,
>
> Leonardo Uribe
>
> 2010/2/6 Matthias Wessendorf <ma...@apache.org>
>>
>> Hello Matt,
>>
>> because of REV 904625.
>> http://svn.apache.org/viewvc?view=revision&revision=904625
>>
>> the build is failing.
>>
>> Make sure you are using Java5 etc.
>>
>> Thanks!
>> Matthias
>>
>> On Sat, Feb 6, 2010 at 2:09 PM, Continuum@myfaces.zones.apache.org
>> <co...@myfaces.apache.org> wrote:
>> > Online report :
>> >
>> > http://myfaces.zones.apache.org:8080/continuum/buildResult.action?buildId=26039&projectId=48
>> >
>> > Build statistics:
>> >  State: Failed
>> >  Previous State: Ok
>> >  Started at: Sat 6 Feb 2010 13:01:39 +0000
>> >  Finished at: Sat 6 Feb 2010 13:08:50 +0000
>> >  Total time: 7m 11s
>> >  Build Trigger: Forced
>> >  Build Number: 343
>> >  Exit code: 1
>> >  Building machine hostname: myfaces.zones.apache.org
>> >  Operating system : SunOS(unknown)
>> >  Java Home version :         java version "1.5.0_22"
>> >         Java(TM) 2 Runtime Environment, Standard Edition (build
>> > 1.5.0_22-b03)
>> >         Java HotSpot(TM) Server VM (build 1.5.0_22-b03, mixed mode)
>> >        Builder version :
>> >         Maven version: 2.0.10
>> >         Java version: 1.5.0_22
>> >         OS name: "sunos" version: "5.10" arch: "x86" Family: "unix"
>> >
>> >
>> > ****************************************************************************
>> > SCM Changes:
>> >
>> > ****************************************************************************
>> > Changed: mcooper @ Fri 29 Jan 2010 21:19:14 +0000
>> > Comment: TRINIDAD-1696 acc (screen reader mode) layout tables should
>> > include
>> > role="presentation"
>> >
>> > Thanks to Dave Robinson for the patch:
>> >
>> > When using trh:tableLayout in our page to layout some UI components, it
>> > gives warning during Accessibility testing:
>> > "WARNING - This layout Table could be confused for a data table by
>> > Screen
>> > Readers"
>> > From the html perspective, this warning can be fixed by setting
>> > role="presentation" on the html table element.
>> >
>> > We can add role="presentation" to layout tables with the following
>> > addition
>> > to
>> >
>> >
>> > org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.OutputTextUtils.renderLayoutTableAttributes():
>> >
>> >  if (CoreRenderer.isScreenReaderMode(arc))
>> >  {
>> >   ResponseWriter writer = context.getResponseWriter();
>> >   writer.writeAttribute("datatable", "0", null);
>> >
>> > --> writer.writeAttribute("role", "presentation", null); <--
>> >
>> >  }
>> > Files changed:
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/xhtml/OutputUtils.java
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/columnGroup-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/editableTable-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputColor-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputDate-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputFile-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputListOfValues-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputNumberSpinbox-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputText-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputText-rows-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/messages-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/messagesError-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/messagesFatal-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/messagesInfo-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/messagesWarn-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/navigationPaneBar-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/navigationPaneButtons-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/navigationPaneList-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/navigationPaneTabs-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelBorderLayout-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelBox-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelButtonBar-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelFormLayout-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelGroupLayout-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelHorizontalLayout-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelHorizontalLayout-separator-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelLabelAndMessage-facet-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelLabelAndMessage-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelList-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelPage-facets-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelPageHeader-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/rowLayout-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectBooleanCheckbox-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectBooleanRadio-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectManyCheckbox-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectManyListBox-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectManyShuttle-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectOneChoice-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectOneListbox-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectOneRadio-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectOrderShuttle-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectRangeChoiceBar-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectRangeChoiceBarBig-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/singleStepButtonBar-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/table-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/tableSelectMany-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/tableSelectOne-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/train-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/treeTable-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> > Changed: matzew @ Sat 30 Jan 2010 11:17:15 +0000
>> > Comment: added a jetty profile for the new awesome showcase
>> > Files changed:
>> >
>> >  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/pom.xml
>> > ( 904764 )
>> >
>> > Changed: jwaldman @ Tue 2 Feb 2010 18:17:22 +0000
>> > Comment: TRINIDAD-1702 performance: decrease memory of
>> > FileSystemStyleCache
>> > by reusing CSSStyle objects.
>> > Files changed:
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/style/cache/FileSystemStyleCache.java
>> > ( 905740 )
>> >
>> > Changed: matzew @ Tue 2 Feb 2010 19:09:07 +0000
>> > Comment: TRINIDAD-983 - Sortable model for localized text
>> >
>> >
>> > ported patch from Toma havelka to trinidad/jsf 1.2
>> > Files changed:
>> >
>> >  /myfaces/trinidad/trunk/trinidad-api/src/main/java/org/apache/myfaces/trinidad/model/SortableModel.java
>> > ( 905749 )
>> >
>> > Changed: ckormos @ Wed 3 Feb 2010 20:59:09 +0000
>> > Comment: fixed [TRINIDAD-1706] - Trinidad components showcase demo app
>> > doesn't include java sources in packaged war
>> > Files changed:
>> >
>> >  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/pom.xml
>> > ( 906239 )
>> >
>> > Changed: ckormos @ Wed 3 Feb 2010 21:07:19 +0000
>> > Comment: [trinidad components showcase] :
>> >    -  removed usage of commons logging, replaced with logging with
>> > java.util.
>> >    - added arg to sitemap generator to be able to specify base URL on
>> > execution.
>> > Files changed:
>> >
>> >  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/java/org/apache/myfaces/trinidaddemo/ComponentDemoRegistry.java
>> > ( 906243 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/java/org/apache/myfaces/trinidaddemo/NavigationHandlerPhaseListener.java
>> > ( 906243 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/java/org/apache/myfaces/trinidaddemo/support/PrettyUrlFilter.java
>> > ( 906243 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/java/org/apache/myfaces/trinidaddemo/support/impl/ComponentVariantDemoDescriptionProvider.java
>> > ( 906243 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/java/org/apache/myfaces/trinidaddemo/support/util/SitemapGenerator.java
>> > ( 906243 )
>> >
>> > Changed: bsullivan @ Thu 4 Feb 2010 22:44:48 +0000
>> > Comment: Make sure that the ID_KEY is present in the
>> > UIXFacesBeanImpl.java
>> > key set when the UIXFacesBeanImpl is delegating the storageof the ID
>> > property back to the UIXComponentBase.
>> > Files changed:
>> >
>> >  /myfaces/trinidad/trunk/trinidad-api/src/main/java/org/apache/myfaces/trinidad/bean/FacesBeanImpl.java
>> > ( 906703 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-api/src/main/java/org/apache/myfaces/trinidad/component/UIXFacesBeanImpl.java
>> > ( 906703 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-api/src/main/java/org/apache/myfaces/trinidad/util/CollectionUtils.java
>> > ( 906703 )
>> >
>> > Changed: matzew @ Fri 5 Feb 2010 07:25:50 +0000
>> > Comment: added getServerInfo() call
>> > Files changed:
>> >
>> >  /myfaces/trinidad/trunk/trinidad-api/src/main/java/org/apache/myfaces/trinidad/util/ExternalContextUtils.java
>> > ( 906828 )
>> >
>> > Changed: matzew @ Sat 6 Feb 2010 12:05:38 +0000
>> > Comment: updated scm url
>> > Files changed:
>> >  /myfaces/trinidad/trunk/pom.xml ( 907204 )
>> >
>> >
>> > ****************************************************************************
>> > Dependencies Changes:
>> >
>> > ****************************************************************************
>> > No dependencies changed
>> >
>> >
>> > ****************************************************************************
>> > Test Summary:
>> >
>> > ****************************************************************************
>> > Tests: 1319
>> > Failures: 7
>> > Total time: 52037
>> >
>> >
>> > ****************************************************************************
>> > Output:
>> >
>> > ****************************************************************************
>> > [INFO] Scanning for projects...
>> > [INFO] Reactor build order: [INFO]   Apache MyFaces Trinidad 1.2
>> > [INFO]   Apache MyFaces Trinidad Build
>> > [INFO]   Apache MyFaces Trinidad API
>> > [INFO]   Apache MyFaces Trinidad Impl
>> > [INFO]   Apache MyFaces Trinidad Examples
>> > [INFO]   Apache MyFaces Trinidad Blank Demo
>> > [INFO]   Apache MyFaces Trinidad Demo
>> > [INFO]   Apache MyFaces Trinidad Components Showcase
>> > [INFO] Searching repository for plugin with prefix: 'source'.
>> > [INFO] org.apache.maven.plugins: checking for updates from
>> > apache.snapshots
>> > [INFO] org.codehaus.mojo: checking for updates from apache.snapshots
>> > [INFO]
>> > ------------------------------------------------------------------------
>> > [INFO] Building Apache MyFaces Trinidad 1.2
>> > [INFO]    task-segment: [clean, install, source:jar, deploy]
>> > [INFO]
>> > ------------------------------------------------------------------------
>> > [INFO] [clean:clean]
>> > [INFO] Deleting directory
>> > /local/continuum-1.1-beta-2/working-directory/48/target
>> > [INFO] [xrts:generate-sources {execution: default}]
>> > [INFO] Setting property: classpath.resource.loader.class =>
>> > 'org.codehaus.plexus.velocity.ContextClassLoaderResourceLoader'.
>> > [INFO] Setting property: velocimacro.messages.on => 'false'.
>> > [INFO] Setting property: resource.loader => 'classpath'.
>> > [INFO] Setting property: resource.manager.logwhenfound => 'false'.
>> > [INFO] [remote-resources:process {execution: default}]
>> > [INFO] [xrts:generate-test-sources {execution: default}]
>> > [INFO] [site:attach-descriptor]
>> > [INFO] Unable to load parent project from a relative path: Could not
>> > find
>> > the model file
>> > '/local/continuum-1.1-beta-2/working-directory/48/../pom.xml'. for
>> > project
>> > unknown
>> > [INFO] Parent project loaded from repository.
>> > [INFO] Preparing source:jar
>> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
>> > invocation.
>> > [INFO] [xrts:generate-sources {execution: default}]
>> > [INFO] [source:jar {execution: attach-source}]
>> > [INFO] [install:install]
>> > [INFO] Installing
>> > /local/continuum-1.1-beta-2/working-directory/48/pom.xml
>> > to
>> >
>> > /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad/1.2.14-SNAPSHOT/trinidad-1.2.14-SNAPSHOT.pom
>> > [INFO] Preparing source:jar
>> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
>> > invocation.
>> > [INFO] [xrts:generate-sources {execution: default}]
>> > [INFO] [source:jar]
>> > [INFO] [xrts:generate-sources {execution: default}]
>> > [INFO] [remote-resources:process {execution: default}]
>> > [INFO] [xrts:generate-test-sources {execution: default}]
>> > [INFO] [site:attach-descriptor]
>> > [INFO] Unable to load parent project from a relative path: Could not
>> > find
>> > the model file
>> > '/local/continuum-1.1-beta-2/working-directory/48/../pom.xml'. for
>> > project
>> > unknown
>> > [INFO] Parent project loaded from repository.
>> > [INFO] Preparing source:jar
>> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
>> > invocation.
>> > [INFO] [xrts:generate-sources {execution: default}]
>> > [INFO] [source:jar {execution: attach-source}]
>> > [INFO] [install:install]
>> > [INFO] Installing
>> > /local/continuum-1.1-beta-2/working-directory/48/pom.xml
>> > to
>> >
>> > /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad/1.2.14-SNAPSHOT/trinidad-1.2.14-SNAPSHOT.pom
>> > [INFO] [deploy:deploy]
>> > [INFO] Retrieving previous build number from apache-maven-snapshots
>> > Uploading:
>> >
>> > scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad/1.2.14-SNAPSHOT/trinidad-1.2.14-SNAPSHOT.pom
>> > [INFO] Retrieving previous metadata from apache-maven-snapshots
>> > [INFO] Uploading repository metadata for: 'snapshot
>> > org.apache.myfaces.trinidad:trinidad:1.2.14-SNAPSHOT'
>> > [INFO] Uploading site descriptor for trinidad 1.2.14-SNAPSHOT site.xml
>> > [INFO] Retrieving previous metadata from apache-maven-snapshots
>> > [INFO] Uploading repository metadata for: 'artifact
>> > org.apache.myfaces.trinidad:trinidad'
>> > [INFO]
>> > ------------------------------------------------------------------------
>> > [INFO] Building Apache MyFaces Trinidad Build
>> > [INFO]    task-segment: [clean, install, source:jar, deploy]
>> > [INFO]
>> > ------------------------------------------------------------------------
>> > [INFO] [clean:clean]
>> > [INFO] Deleting directory
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target
>> > [INFO] [xrts:generate-sources {execution: default}]
>> > [INFO] [remote-resources:process {execution: default}]
>> > [INFO] [faces:generate-master-faces-config {execution: default}]
>> > [INFO] Generating META-INF/maven-faces-plugin/faces-config.xml
>> > [INFO] [resources:resources]
>> > [INFO] Using default encoding to copy filtered resources.
>> > [INFO] [compiler:compile]
>> > [INFO] No sources to compile
>> > [INFO] [xrts:generate-test-sources {execution: default}]
>> > [INFO] [resources:testResources]
>> > [INFO] Using default encoding to copy filtered resources.
>> > [INFO] [compiler:testCompile]
>> > [INFO] No sources to compile
>> > [INFO] [surefire:test]
>> > [INFO] Surefire report directory:
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/surefire-reports
>> >
>> > -------------------------------------------------------
>> > T E S T S
>> > -------------------------------------------------------
>> > There are no tests to run.
>> >
>> > Results :
>> >
>> > Tests run: 0, Failures: 0, Errors: 0, Skipped: 0
>> >
>> > [INFO] [jar:jar]
>> > [INFO] Building jar:
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT.jar
>> > [INFO] Preparing source:jar
>> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
>> > invocation.
>> > [INFO] [xrts:generate-sources {execution: default}]
>> > [INFO] [source:jar {execution: attach-source}]
>> > [INFO] Building jar:
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>> > [INFO] [install:install]
>> > [INFO] Installing
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT.jar
>> > to
>> >
>> > /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT.jar
>> > [INFO] Installing
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>> > to
>> >
>> > /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>> > [INFO] Preparing source:jar
>> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
>> > invocation.
>> > [INFO] [xrts:generate-sources {execution: default}]
>> > [INFO] [source:jar]
>> > [INFO] Building jar:
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>> > [INFO] [xrts:generate-sources {execution: default}]
>> > [INFO] [remote-resources:process {execution: default}]
>> > [INFO] [faces:generate-master-faces-config {execution: default}]
>> > [INFO] Generating META-INF/maven-faces-plugin/faces-config.xml
>> > [INFO] [resources:resources]
>> > [INFO] Using default encoding to copy filtered resources.
>> > [INFO] [compiler:compile]
>> > [INFO] No sources to compile
>> > [INFO] [xrts:generate-test-sources {execution: default}]
>> > [INFO] [resources:testResources]
>> > [INFO] Using default encoding to copy filtered resources.
>> > [INFO] [compiler:testCompile]
>> > [INFO] No sources to compile
>> > [INFO] [surefire:test]
>> > [INFO] Surefire report directory:
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/surefire-reports
>> >
>> > -------------------------------------------------------
>> > T E S T S
>> > -------------------------------------------------------
>> > There are no tests to run.
>> >
>> > Results :
>> >
>> > Tests run: 0, Failures: 0, Errors: 0, Skipped: 0
>> >
>> > [INFO] [jar:jar]
>> > [INFO] Building jar:
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT.jar
>> > [INFO] Preparing source:jar
>> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
>> > invocation.
>> > [INFO] [xrts:generate-sources {execution: default}]
>> > [INFO] [source:jar {execution: attach-source}]
>> > [INFO] Building jar:
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>> > [INFO] [install:install]
>> > [INFO] Installing
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT.jar
>> > to
>> >
>> > /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT.jar
>> > [INFO] Installing
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>> > to
>> >
>> > /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>> > [INFO] Installing
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>> > to
>> >
>> > /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>> > [INFO] Installing
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>> > to
>> >
>> > /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>> > [INFO] [deploy:deploy]
>> > [INFO] Retrieving previous build number from apache-maven-snapshots
>> > Uploading:
>> >
>> > scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT.jar
>> > [INFO] Retrieving previous metadata from apache-maven-snapshots
>> > [INFO] Uploading repository metadata for: 'snapshot
>> > org.apache.myfaces.trinidad:trinidad-build:1.2.14-SNAPSHOT'
>> > [INFO] Retrieving previous metadata from apache-maven-snapshots
>> > [INFO] Uploading repository metadata for: 'artifact
>> > org.apache.myfaces.trinidad:trinidad-build'
>> > [INFO] Uploading project information for trinidad-build 1.2.14-SNAPSHOT
>> > [INFO] Retrieving previous build number from apache-maven-snapshots
>> > Uploading:
>> >
>> > scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>> > [INFO] Retrieving previous build number from apache-maven-snapshots
>> > Uploading:
>> >
>> > scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>> > [INFO] Retrieving previous build number from apache-maven-snapshots
>> > Uploading:
>> >
>> > scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>> > [INFO]
>> > ------------------------------------------------------------------------
>> > [INFO] Building Apache MyFaces Trinidad API
>> > [INFO]    task-segment: [clean, install, source:jar, deploy]
>> > [INFO]
>> > ------------------------------------------------------------------------
>> > [INFO] [clean:clean]
>> > [INFO] Deleting directory
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target
>> > [INFO] [xrts:generate-sources {execution: default}]
>> > [INFO] Generating 54 XRTS bundles to
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/maven-xrts-plugin/main/java
>> > [INFO] [faces:generate-components {execution: default}]
>> > [INFO] Generated 133 component(s)
>> > [INFO] [i18n:generate-locale-elements {execution: default}]
>> > [INFO] Generating LocaleElements
>> > [INFO] [remote-resources:process {execution: default}]
>> > [INFO] [resources:resources]
>> > [INFO] Using default encoding to copy filtered resources.
>> > [INFO] [compiler:compile]
>> > [INFO] Compiling 405 source files to
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/classes
>> > [INFO] [xrts:generate-test-sources {execution: default}]
>> > [INFO] Generating 1 XRTS bundles to
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/maven-xrts-plugin/test/java
>> > [INFO] [resources:testResources]
>> > [INFO] Using default encoding to copy filtered resources.
>> > [INFO] [compiler:testCompile]
>> > [INFO] Compiling 93 source files to
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/test-classes
>> > [INFO] [surefire:test]
>> > [INFO] Surefire report directory:
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/surefire-reports
>> >
>> > -------------------------------------------------------
>> > T E S T S
>> > -------------------------------------------------------
>> > Running org.apache.myfaces.trinidad.component.AddRemoveTest
>> > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.081
>> > sec
>> > Running org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest
>> >
>> > descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.159
>> > sec
>> > Running org.apache.myfaces.trinidad.util.ServiceTest
>> > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.005
>> > sec
>> > Running org.apache.myfaces.trinidad.component.UIXSelectManyTest
>> > Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.387
>> > sec
>> > Running
>> >
>> > org.apache.myfaces.trinidad.component.core.layout.CoreShowDetailHeaderTest
>> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.044
>> > sec
>> > Running org.apache.myfaces.trinidad.component.html.HtmlTableLayoutTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018
>> > sec
>> > Running org.apache.myfaces.trinidad.validator.LengthValidatorTest
>> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.028
>> > sec
>> > Running org.apache.myfaces.trinidad.bean.util.ValueMapTest
>> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.01 sec
>> > Running org.apache.myfaces.trinidad.component.html.HtmlScriptTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.201
>> > sec
>> > Running org.apache.myfaces.trinidad.component.core.CoreFormTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.022
>> > sec
>> > Running
>> >
>> > org.apache.myfaces.trinidad.component.core.input.CoreSelectBooleanCheckboxTest
>> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.019
>> > sec
>> > Running org.apache.myfaces.trinidad.component.html.HtmlCellFormatTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018
>> > sec
>> > Running org.apache.myfaces.trinidad.validator.LongRangeValidatorTest
>> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.validator.DateRestrictionValidatorTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.022
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.component.core.layout.CorePanelRadioTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.022
>> > sec
>> > Running org.apache.myfaces.trinidad.component.UIXTreeTest
>> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014
>> > sec
>> > Running org.apache.myfaces.trinidad.component.UIXSwitcherTest
>> > Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.component.core.layout.CorePanelBoxTest
>> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018
>> > sec
>> > Running org.apache.myfaces.trinidad.convert.ColorConverterTest
>> > Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.179
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.component.core.nav.CoreBreadCrumbsTest
>> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.039
>> > sec
>> > Running org.apache.myfaces.trinidad.util.Base64InputStreamTest
>> > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.009
>> > sec
>> > Running org.apache.myfaces.trinidad.bean.PropertyKeyTest
>> > Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.003
>> > sec
>> > Running org.apache.myfaces.trinidad.component.core.data.CoreColumnTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.026
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.component.core.output.CoreSeparatorTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.component.core.output.CoreOutputTextTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.023
>> > sec
>> > Running org.apache.myfaces.trinidad.component.html.HtmlFrameTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017
>> > sec
>> > Running org.apache.myfaces.trinidad.util.FastMessageFormatTest
>> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec
>> > Running org.apache.myfaces.trinidad.validator.RegExpValidatorTest
>> > Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015
>> > sec
>> > Running org.apache.myfaces.trinidad.bean.FacesBeanImplTest
>> > Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.13
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.component.core.layout.CoreShowDetailTest
>> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018
>> > sec
>> > Running org.apache.myfaces.trinidad.component.UIXProcessTest
>> > Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.component.core.layout.CorePanelSideBarTest
>> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.component.html.HtmlFrameBorderLayoutTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.022
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.convert.TrinidadDateTimeConverterTest
>> > Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.242
>> > sec
>> > Running org.apache.myfaces.trinidad.component.html.HtmlHtmlTest
>> > Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.012
>> > sec
>> > Running org.apache.myfaces.trinidad.component.UIXSelectOrderTest
>> > Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016
>> > sec
>> > Running org.apache.myfaces.trinidad.render.RenderUtilsTest
>> >  Found PropertyDescriptor java.beans.PropertyDescriptor@7bf628e6Feb 6,
>> > 2010
>> > 1:04:40 PM org.apache.myfaces.trinidad.util.ComponentUtils
>> > _findRelativeComponentDeprecated
>> > WARNING: Could not find the component with scopedId :::button1 from
>> > UIXInput[UIXEditableFacesBeanImpl, id=input1] with the supported syntax.
>> > The
>> > component was found with the deprecated syntax. Please use the supported
>> > syntax.
>> > Feb 6, 2010 1:04:40 PM org.apache.myfaces.trinidad.render.RenderUtils
>> > getRelativeId
>> > WARNING: Could not find the component with scopedId commandButton1 from
>> > RenderUtilsTest$TestNamingContainer[UIXFacesBeanImpl, id=table1] with
>> > the
>> > supported syntax. The component was found with the deprecated syntax.
>> > Please
>> > use the supported syntax.
>> > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.01 sec
>> > Running org.apache.myfaces.trinidad.validator.DateTimeRangeValidatorTest
>> > Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.071
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.resource.AggregatingResourceLoaderTest
>> > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.component.core.layout.CorePanelListTest
>> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.component.core.layout.CorePanelHeaderTest
>> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017
>> > sec
>> > Running org.apache.myfaces.trinidad.model.RowKeySetImplTest
>> > Tests run: 14, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.026
>> > sec
>> > Running org.apache.myfaces.trinidad.util.Base64OutputStreamTest
>> > Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.011
>> > sec
>> > Running org.apache.myfaces.trinidad.util.ArrayMapTest
>> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004
>> > sec
>> > Running org.apache.myfaces.trinidad.convert.JsfNumberConverterTest
>> > resource bundle javax.faces.Messages could not be found
>> > Tests run: 16, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.029
>> > sec
>> > Running
>> >
>> > org.apache.myfaces.trinidad.component.core.layout.CorePanelGroupLayoutTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.025
>> > sec
>> > Running org.apache.myfaces.trinidad.validator.ByteLengthValidatorTest
>> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014
>> > sec
>> > Running org.apache.myfaces.trinidad.component.core.nav.CoreTrainTest
>> > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.002
>> > sec
>> > Running org.apache.myfaces.trinidad.bean.TypeTest
>> > Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.003
>> > sec
>> > Running org.apache.myfaces.trinidad.util.ListFromCollectionTest
>> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004
>> > sec
>> > Running
>> >
>> > org.apache.myfaces.trinidad.component.core.data.CoreSelectRangeChoiceBarTest
>> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.022
>> > sec
>> > Running org.apache.myfaces.trinidad.component.core.output.CoreSpacerTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.224
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.component.core.layout.CorePanelAccordionTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018
>> > sec
>> > Running org.apache.myfaces.trinidad.component.FindComponentTest
>> > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.013
>> > sec
>> > Running org.apache.myfaces.trinidad.model.RowKeySetTreeImplTest
>> >
>> > descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> > Tests run: 13, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.039
>> > sec
>> > Running org.apache.myfaces.trinidad.model.SortableModelTest
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=name
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=name
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=name
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=name
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=name
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=object
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7ac113d1descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=name
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=name
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=name
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=name
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=name
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=name
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=name
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=name
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.064
>> > sec
>> > Running org.apache.myfaces.trinidad.validator.DoubleRangeValidatorTest
>> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016
>> > sec
>> > Running org.apache.myfaces.trinidad.component.UIXShowDetailTest
>> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016
>> > sec
>> > Running org.apache.myfaces.trinidad.component.UIXInputTest
>> > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.05 sec
>> > Running org.apache.myfaces.trinidad.convert.TrinidadNumberConverterTest
>> > Tests run: 18, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.034
>> > sec
>> > Running org.apache.myfaces.trinidad.convert.JsfDateTimeConverterTest
>> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.059
>> > sec
>> > Running
>> >
>> > org.apache.myfaces.trinidad.component.core.layout.CorePanelBorderLayoutTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.028
>> > sec
>> > Running org.apache.myfaces.trinidad.util.FindRelativeComponentTest
>> >  Found PropertyDescriptor java.beans.PropertyDescriptor@e6e3b8feFeb 6,
>> > 2010
>> > 1:04:41 PM org.apache.myfaces.trinidad.util.ComponentUtils
>> > _findRelativeComponentDeprecated
>> > WARNING: Could not find the component with scopedId :::commandButton1
>> > from
>> > UIXInput[UIXEditableFacesBeanImpl, id=input1] with the supported syntax.
>> > The
>> > component was found with the deprecated syntax. Please use the supported
>> > syntax.
>> > Feb 6, 2010 1:04:41 PM org.apache.myfaces.trinidad.util.ComponentUtils
>> > _findRelativeComponentDeprecated
>> > WARNING: Could not find the component with scopedId :::commandButton1
>> > from
>> > UIXInput[UIXEditableFacesBeanImpl, id=inputA] with the supported syntax.
>> > The
>> > component was found with the deprecated syntax. Please use the supported
>> > syntax.
>> > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.component.core.layout.CorePanelChoiceTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018
>> > sec
>> > Running org.apache.myfaces.trinidad.component.html.HtmlRowLayoutTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017
>> > sec
>> > Running org.apache.myfaces.trinidad.component.UIXTableTest
>> > Feb 6, 2010 1:04:41 PM org.apache.myfaces.trinidad.bean.PropertyKey
>> > saveValue
>> > WARNING: Unserializable
>> > value:SortableModel[javax.faces.model.ListDataModel@985fa2] for
>> > key:PropertyKey[value,11]
>> > Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.058
>> > sec
>> > Running org.apache.myfaces.trinidad.resource.CachingResourceLoaderTest
>> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.005
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.component.core.input.CoreInputHiddenTest
>> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.033
>> > sec
>> >
>> > Results :
>> >
>> > Tests run: 498, Failures: 0, Errors: 0, Skipped: 0
>> >
>> > [INFO] [jar:jar]
>> > [INFO] Building jar:
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT.jar
>> > [INFO] Preparing source:jar
>> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
>> > invocation.
>> > [INFO] [xrts:generate-sources {execution: default}]
>> > [INFO] Nothing to generate - all XRTS bundles are up to date
>> > [INFO] [faces:generate-components {execution: default}]
>> > [INFO] Generated 133 component(s)
>> > [INFO] [i18n:generate-locale-elements {execution: default}]
>> > [INFO] Generating LocaleElements
>> > [INFO] [source:jar {execution: attach-source}]
>> > [INFO] Building jar:
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-sources.jar
>> > [INFO] [jar:test-jar {execution: default}]
>> > [INFO] Building jar:
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-tests.jar
>> > [INFO] [install:install]
>> > [INFO] Installing
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT.jar
>> > to
>> >
>> > /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT.jar
>> > [INFO] Installing
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-sources.jar
>> > to
>> >
>> > /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-sources.jar
>> > [INFO] Installing
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-tests.jar
>> > to
>> >
>> > /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-tests.jar
>> > [INFO] Preparing source:jar
>> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
>> > invocation.
>> > [INFO] [xrts:generate-sources {execution: default}]
>> > [INFO] Nothing to generate - all XRTS bundles are up to date
>> > [INFO] [faces:generate-components {execution: default}]
>> > [INFO] Generated 133 component(s)
>> > [INFO] [i18n:generate-locale-elements {execution: default}]
>> > [INFO] Generating LocaleElements
>> > [INFO] [source:jar]
>> > [INFO] Building jar:
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-sources.jar
>> > [INFO] [xrts:generate-sources {execution: default}]
>> > [INFO] Nothing to generate - all XRTS bundles are up to date
>> > [INFO] [faces:generate-components {execution: default}]
>> > [INFO] Generated 133 component(s)
>> > [INFO] [i18n:generate-locale-elements {execution: default}]
>> > [INFO] Generating LocaleElements
>> > [INFO] [remote-resources:process {execution: default}]
>> > [INFO] [resources:resources]
>> > [INFO] Using default encoding to copy filtered resources.
>> > [INFO] [compiler:compile]
>> > [INFO] Compiling 133 source files to
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/classes
>> > [INFO] [xrts:generate-test-sources {execution: default}]
>> > [INFO] Nothing to generate - all XRTS bundles are up to date
>> > [INFO] [resources:testResources]
>> > [INFO] Using default encoding to copy filtered resources.
>> > [INFO] [compiler:testCompile]
>> > [INFO] Nothing to compile - all classes are up to date
>> > [INFO] [surefire:test]
>> > [INFO] Surefire report directory:
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/surefire-reports
>> >
>> > -------------------------------------------------------
>> > T E S T S
>> > -------------------------------------------------------
>> > Running org.apache.myfaces.trinidad.component.AddRemoveTest
>> > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.092
>> > sec
>> > Running org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest
>> >
>> > descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.148
>> > sec
>> > Running org.apache.myfaces.trinidad.util.ServiceTest
>> > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.005
>> > sec
>> > Running org.apache.myfaces.trinidad.component.UIXSelectManyTest
>> > Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.104
>> > sec
>> > Running
>> >
>> > org.apache.myfaces.trinidad.component.core.layout.CoreShowDetailHeaderTest
>> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.036
>> > sec
>> > Running org.apache.myfaces.trinidad.component.html.HtmlTableLayoutTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016
>> > sec
>> > Running org.apache.myfaces.trinidad.validator.LengthValidatorTest
>> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.026
>> > sec
>> > Running org.apache.myfaces.trinidad.bean.util.ValueMapTest
>> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.008
>> > sec
>> > Running org.apache.myfaces.trinidad.component.html.HtmlScriptTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014
>> > sec
>> > Running org.apache.myfaces.trinidad.component.core.CoreFormTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.019
>> > sec
>> > Running
>> >
>> > org.apache.myfaces.trinidad.component.core.input.CoreSelectBooleanCheckboxTest
>> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018
>> > sec
>> > Running org.apache.myfaces.trinidad.component.html.HtmlCellFormatTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016
>> > sec
>> > Running org.apache.myfaces.trinidad.validator.LongRangeValidatorTest
>> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.013
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.validator.DateRestrictionValidatorTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.025
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.component.core.layout.CorePanelRadioTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.02 sec
>> > Running org.apache.myfaces.trinidad.component.UIXTreeTest
>> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.012
>> > sec
>> > Running org.apache.myfaces.trinidad.component.UIXSwitcherTest
>> > Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.013
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.component.core.layout.CorePanelBoxTest
>> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016
>> > sec
>> > Running org.apache.myfaces.trinidad.convert.ColorConverterTest
>> > Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.component.core.nav.CoreBreadCrumbsTest
>> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.032
>> > sec
>> > Running org.apache.myfaces.trinidad.util.Base64InputStreamTest
>> > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.008
>> > sec
>> > Running org.apache.myfaces.trinidad.bean.PropertyKeyTest
>> > Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004
>> > sec
>> > Running org.apache.myfaces.trinidad.component.core.data.CoreColumnTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.023
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.component.core.output.CoreSeparatorTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.component.core.output.CoreOutputTextTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.023
>> > sec
>> > Running org.apache.myfaces.trinidad.component.html.HtmlFrameTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.076
>> > sec
>> > Running org.apache.myfaces.trinidad.util.FastMessageFormatTest
>> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001
>> > sec
>> > Running org.apache.myfaces.trinidad.validator.RegExpValidatorTest
>> > Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.012
>> > sec
>> > Running org.apache.myfaces.trinidad.bean.FacesBeanImplTest
>> > Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.032
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.component.core.layout.CoreShowDetailTest
>> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017
>> > sec
>> > Running org.apache.myfaces.trinidad.component.UIXProcessTest
>> > Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.component.core.layout.CorePanelSideBarTest
>> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.component.html.HtmlFrameBorderLayoutTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.019
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.convert.TrinidadDateTimeConverterTest
>> > Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.183
>> > sec
>> > Running org.apache.myfaces.trinidad.component.html.HtmlHtmlTest
>> > Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.01 sec
>> > Running org.apache.myfaces.trinidad.component.UIXSelectOrderTest
>> > Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015
>> > sec
>> >  Found PropertyDescriptor java.beans.PropertyDescriptor@7bf628e6Feb 6,
>> > 2010
>> > 1:05:21 PM org.apache.myfaces.trinidad.util.ComponentUtils
>> > _findRelativeComponentDeprecated
>> > WARNING: Could not find the component with scopedId :::button1 from
>> > UIXInput[UIXEditableFacesBeanImpl, id=input1] with the supported syntax.
>> > The
>> > component was found with the deprecated syntax. Please use the supported
>> > syntax.
>> > Feb 6, 2010 1:05:21 PM org.apache.myfaces.trinidad.render.RenderUtils
>> > getRelativeId
>> > WARNING: Could not find the component with scopedId commandButton1 from
>> > RenderUtilsTest$TestNamingContainer[UIXFacesBeanImpl, id=table1] with
>> > the
>> > supported syntax. The component was found with the deprecated syntax.
>> > Please
>> > use the supported syntax.
>> > Running org.apache.myfaces.trinidad.render.RenderUtilsTest
>> > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.007
>> > sec
>> > Running org.apache.myfaces.trinidad.validator.DateTimeRangeValidatorTest
>> > Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.958
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.resource.AggregatingResourceLoaderTest
>> > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.208
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.component.core.layout.CorePanelListTest
>> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.166
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.component.core.layout.CorePanelHeaderTest
>> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.163
>> > sec
>> > Running org.apache.myfaces.trinidad.model.RowKeySetImplTest
>> > Tests run: 14, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.581
>> > sec
>> > Running org.apache.myfaces.trinidad.util.Base64OutputStreamTest
>> > Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.171
>> > sec
>> > Running org.apache.myfaces.trinidad.util.ArrayMapTest
>> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.059
>> > sec
>> > Running org.apache.myfaces.trinidad.convert.JsfNumberConverterTest
>> > resource bundle javax.faces.Messages could not be found
>> > Tests run: 16, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.661
>> > sec
>> > Running
>> >
>> > org.apache.myfaces.trinidad.component.core.layout.CorePanelGroupLayoutTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.345
>> > sec
>> > Running org.apache.myfaces.trinidad.validator.ByteLengthValidatorTest
>> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.296
>> > sec
>> > Running org.apache.myfaces.trinidad.component.core.nav.CoreTrainTest
>> > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.055
>> > sec
>> > Running org.apache.myfaces.trinidad.bean.TypeTest
>> > Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.068
>> > sec
>> > Running org.apache.myfaces.trinidad.util.ListFromCollectionTest
>> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.095
>> > sec
>> > Running
>> >
>> > org.apache.myfaces.trinidad.component.core.data.CoreSelectRangeChoiceBarTest
>> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.117
>> > sec
>> > Running org.apache.myfaces.trinidad.component.core.output.CoreSpacerTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.055
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.component.core.layout.CorePanelAccordionTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015
>> > sec
>> > Running org.apache.myfaces.trinidad.component.FindComponentTest
>> > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.011
>> > sec
>> > Running org.apache.myfaces.trinidad.model.RowKeySetTreeImplTest
>> >
>> > descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> > Tests run: 13, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.029
>> > sec
>> > Running org.apache.myfaces.trinidad.model.SortableModelTest
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=name
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=name
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=name
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=name
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=name
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=object
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7ac113d1descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=name
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=name
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=name
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=name
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=name
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=name
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=name
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=name
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014
>> > sec
>> > Running org.apache.myfaces.trinidad.validator.DoubleRangeValidatorTest
>> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.01 sec
>> > Running org.apache.myfaces.trinidad.component.UIXShowDetailTest
>> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.013
>> > sec
>> > Running org.apache.myfaces.trinidad.component.UIXInputTest
>> > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.042
>> > sec
>> > Running org.apache.myfaces.trinidad.convert.TrinidadNumberConverterTest
>> > Tests run: 18, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.028
>> > sec
>> > Running org.apache.myfaces.trinidad.convert.JsfDateTimeConverterTest
>> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.006
>> > sec
>> > Running
>> >
>> > org.apache.myfaces.trinidad.component.core.layout.CorePanelBorderLayoutTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.02 sec
>> > Running org.apache.myfaces.trinidad.util.FindRelativeComponentTest
>> >  Found PropertyDescriptor java.beans.PropertyDescriptor@e6e3b8feFeb 6,
>> > 2010
>> > 1:05:26 PM org.apache.myfaces.trinidad.util.ComponentUtils
>> > _findRelativeComponentDeprecated
>> > WARNING: Could not find the component with scopedId :::commandButton1
>> > from
>> > UIXInput[UIXEditableFacesBeanImpl, id=input1] with the supported syntax.
>> > The
>> > component was found with the deprecated syntax. Please use the supported
>> > syntax.
>> > Feb 6, 2010 1:05:26 PM org.apache.myfaces.trinidad.util.ComponentUtils
>> > _findRelativeComponentDeprecated
>> > WARNING: Could not find the component with scopedId :::commandButton1
>> > from
>> > UIXInput[UIXEditableFacesBeanImpl, id=inputA] with the supported syntax.
>> > The
>> > component was found with the deprecated syntax. Please use the supported
>> > syntax.
>> > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.013
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.component.core.layout.CorePanelChoiceTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017
>> > sec
>> > Running org.apache.myfaces.trinidad.component.html.HtmlRowLayoutTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014
>> > sec
>> > Running org.apache.myfaces.trinidad.component.UIXTableTest
>> > Feb 6, 2010 1:05:26 PM org.apache.myfaces.trinidad.bean.PropertyKey
>> > saveValue
>> > WARNING: Unserializable
>> > value:SortableModel[javax.faces.model.ListDataModel@1112776] for
>> > key:PropertyKey[value,11]
>> > Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.112
>> > sec
>> > Running org.apache.myfaces.trinidad.resource.CachingResourceLoaderTest
>> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.component.core.input.CoreInputHiddenTest
>> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.012
>> > sec
>> >
>> > Results :
>> >
>> > Tests run: 498, Failures: 0, Errors: 0, Skipped: 0
>> >
>> > [INFO] [jar:jar]
>> > [INFO] Building jar:
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT.jar
>> > [INFO] Preparing source:jar
>> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
>> > invocation.
>> > [INFO] [xrts:generate-sources {execution: default}]
>> > [INFO] Nothing to generate - all XRTS bundles are up to date
>> > [INFO] [faces:generate-components {execution: default}]
>> > [INFO] Generated 133 component(s)
>> > [INFO] [i18n:generate-locale-elements {execution: default}]
>> > [INFO] Generating LocaleElements
>> > [INFO] [source:jar {execution: attach-source}]
>> > [INFO] Building jar:
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-sources.jar
>> > [INFO] [jar:test-jar {execution: default}]
>> > [INFO] Building jar:
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-tests.jar
>> > [INFO] [install:install]
>> > [INFO] Installing
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT.jar
>> > to
>> >
>> > /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT.jar
>> > [INFO] Installing
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-sources.jar
>> > to
>> >
>> > /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-sources.jar
>> > [INFO] Installing
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-tests.jar
>> > to
>> >
>> > /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-tests.jar
>> > [INFO] Installing
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-sources.jar
>> > to
>> >
>> > /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-sources.jar
>> > [INFO] Installing
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-sources.jar
>> > to
>> >
>> > /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-sources.jar
>> > [INFO] Installing
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-tests.jar
>> > to
>> >
>> > /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-tests.jar
>> > [INFO] [deploy:deploy]
>> > [INFO] Retrieving previous build number from apache-maven-snapshots
>> > Uploading:
>> >
>> > scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT.jar
>> > [INFO] Retrieving previous metadata from apache-maven-snapshots
>> > [INFO] Uploading repository metadata for: 'artifact
>> > org.apache.myfaces.trinidad:trinidad-api'
>> > [INFO] Uploading project information for trinidad-api 1.2.14-SNAPSHOT
>> > [INFO] Retrieving previous metadata from apache-maven-snapshots
>> > [INFO] Uploading repository metadata for: 'snapshot
>> > org.apache.myfaces.trinidad:trinidad-api:1.2.14-SNAPSHOT'
>> > [INFO] Retrieving previous build number from apache-maven-snapshots
>> > Uploading:
>> >
>> > scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-sources.jar
>> > [INFO] Retrieving previous build number from apache-maven-snapshots
>> > Uploading:
>> >
>> > scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-tests.jar
>> > [INFO] Retrieving previous build number from apache-maven-snapshots
>> > Uploading:
>> >
>> > scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-sources.jar
>> > [INFO] Retrieving previous build number from apache-maven-snapshots
>> > Uploading:
>> >
>> > scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-sources.jar
>> > [INFO] Retrieving previous build number from apache-maven-snapshots
>> > Uploading:
>> >
>> > scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-tests.jar
>> > [INFO]
>> > ------------------------------------------------------------------------
>> > [INFO] Building Apache MyFaces Trinidad Impl
>> > [INFO]    task-segment: [clean, install, source:jar, deploy]
>> > [INFO]
>> > ------------------------------------------------------------------------
>> > [INFO] [clean:clean]
>> > [INFO] Deleting directory
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target
>> > [INFO] [faces:generate-jsp-taglibs {execution: default}]
>> > [INFO] Generated 143 JSP tag(s)
>> > [INFO] [faces:generate-facelets-taglibs {execution: default}]
>> > [INFO] Generated META-INF/tr.taglib.xml
>> > [INFO] Generated META-INF/trh.taglib.xml
>> > [INFO] [faces:generate-renderer-map {execution: default}]
>> > [INFO] [i18n:generate-locale-elements {execution: default}]
>> > [INFO] Generating LocaleElements
>> > [INFO] [i18n:generate-javascript-locales {execution: default}]
>> > [INFO] Generating Javascript Locales
>> > [INFO] [javascript:reduce-javascript {execution: default}]
>> > [INFO] [xrts:generate-sources {execution: default}]
>> > [INFO] Generating 59 XRTS bundles to
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/maven-xrts-plugin/main/java
>> > [INFO] [faces:generate-faces-config {execution: default}]
>> > [INFO] Generated META-INF/faces-config.xml
>> > [INFO] [remote-resources:process {execution: default}]
>> > [INFO] [resources:resources]
>> > [INFO] Using default encoding to copy filtered resources.
>> > [INFO] [compiler:compile]
>> > [INFO] Compiling 1170 source files to
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/classes
>> > [INFO] [xrts:generate-test-sources {execution: default}]
>> > [INFO] [resources:testResources]
>> > [INFO] Using default encoding to copy filtered resources.
>> > [INFO] snapshot
>> > org.apache.myfaces.trinidad:trinidad-api:1.2.14-SNAPSHOT:
>> > checking for updates from java.net
>> > [INFO] snapshot
>> > org.apache.myfaces.trinidad:trinidad-api:1.2.14-SNAPSHOT:
>> > checking for updates from apache.snapshots
>> > [INFO] [compiler:testCompile]
>> > [INFO] Compiling 50 source files to
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/test-classes
>> > [INFO] [surefire:test]
>> > [INFO] Surefire report directory:
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/surefire-reports
>> > Feb 6, 2010 1:07:56 PM
>> > org.apache.myfaces.trinidadinternal.renderkit.FacesConfigInfo load
>> > INFO: PARSING
>> >
>> > file:/local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/classes/META-INF/faces-config.xml
>> > Feb 6, 2010 1:07:57 PM
>> > org.apache.myfaces.trinidadinternal.renderkit.FacesConfigInfo load
>> > INFO: PARSING
>> >
>> > jar:file:/export/home/mrmaven/.m2/repository/com/sun/facelets/jsf-facelets/1.1.14/jsf-facelets-1.1.14.jar!/META-INF/faces-config.xml
>> > Couldn't create renderer com.sun.facelets.component.RepeatRenderer
>> >
>> > -------------------------------------------------------
>> > T E S T S
>> > -------------------------------------------------------
>> > Running org.apache.myfaces.trinidadinternal.metadata.RegionMetadataTest
>> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.169
>> > sec
>> > Running
>> >
>> > org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.table.TableSelectOneRendererTest
>> > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.15 sec
>> > Running org.apache.myfaces.trinidadinternal.el.FormatterMapTest
>> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004
>> > sec
>> > Running org.apache.myfaces.trinidadinternal.util.TokenCacheTest
>> > Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.007
>> > sec
>> > Running
>> > org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.OutputUtilsTest
>> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.003
>> > sec
>> > Running org.apache.myfaces.trinidadinternal.context.PartialTriggersTest
>> > Feb 6, 2010 1:08:04 PM org.apache.myfaces.trinidad.util.ComponentUtils
>> > _findRelativeComponentDeprecated
>> > WARNING: Could not find the component with scopedId :::commandButton1
>> > from
>> > UIXInput[UIXEditableFacesBeanImpl, id=input1] with the supported syntax.
>> > The
>> > component was found with the deprecated syntax. Please use the supported
>> > syntax.
>> > Feb 6, 2010 1:08:04 PM org.apache.myfaces.trinidad.util.ComponentUtils
>> > _findRelativeComponentDeprecated
>> > WARNING: Could not find the component with scopedId :::commandButton1
>> > from
>> > UIXInput[UIXEditableFacesBeanImpl, id=inputA] with the supported syntax.
>> > The
>> > component was found with the deprecated syntax. Please use the supported
>> > syntax.
>> > Feb 6, 2010 1:08:04 PM
>> > org.apache.myfaces.trinidadinternal.context.RequestContextImpl
>> > addPartialTriggerListeners
>> > WARNING: Could not find partial trigger commandButton1 from
>> >
>> > UIXTable[org.apache.myfaces.trinidad.component.UIXTable$RowKeyFacesBeanWrapper@24d0d0,
>> > id=table1] with the supported partialTriggers syntax. The partial
>> > trigger
>> > was found with the deprecated syntax. Please use the supported syntax.
>> > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.05 sec
>> > Running org.apache.myfaces.trinidadinternal.FacesConfigTest
>> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001
>> > sec
>> > Feb 6, 2010 1:08:04 PM
>> > org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > _warnAbsenceOfBundleKeys
>> > WARNING: Keys missing in bundle:MessageBundle_ar are
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>> >
>> > Feb 6, 2010 1:08:04 PM
>> > org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > _warnAbsenceOfBundleKeys
>> > WARNING: Keys missing in bundle:MessageBundle_cs are
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>> >
>> > Feb 6, 2010 1:08:04 PM
>> > org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > _warnAbsenceOfBundleKeys
>> > WARNING: Keys missing in bundle:MessageBundle_da are
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>> >
>> > Feb 6, 2010 1:08:04 PM
>> > org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > _warnAbsenceOfBundleKeys
>> > WARNING: Keys missing in bundle:MessageBundle_de are
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>> >
>> > Feb 6, 2010 1:08:04 PM
>> > org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > _warnAbsenceOfBundleKeys
>> > WARNING: Keys missing in bundle:MessageBundle_el are
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>> >
>> > Running org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > Feb 6, 2010 1:08:04 PM
>> > org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > _warnAbsenceOfBundleKeys
>> > WARNING: Keys missing in bundle:MessageBundle_es are
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>> >
>> > Feb 6, 2010 1:08:04 PM
>> > org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > _warnAbsenceOfBundleKeys
>> > WARNING: Keys missing in bundle:MessageBundle_fi are
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>> >
>> > Feb 6, 2010 1:08:04 PM
>> > org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > _warnAbsenceOfBundleKeys
>> > WARNING: Keys missing in bundle:MessageBundle_fr are
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>> >
>> > Feb 6, 2010 1:08:04 PM
>> > org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > _warnAbsenceOfBundleKeys
>> > WARNING: Keys missing in bundle:MessageBundle_hu are
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>> >
>> > Feb 6, 2010 1:08:04 PM
>> > org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > _warnAbsenceOfBundleKeys
>> > WARNING: Keys missing in bundle:MessageBundle_it are
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>> >
>> > Feb 6, 2010 1:08:04 PM
>> > org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > _warnAbsenceOfBundleKeys
>> > WARNING: Keys missing in bundle:MessageBundle_iw are
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>> >
>> > Feb 6, 2010 1:08:04 PM
>> > org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > _warnAbsenceOfBundleKeys
>> > WARNING: Keys missing in bundle:MessageBundle_ja are
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>> >
>> > Feb 6, 2010 1:08:04 PM
>> > org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > _warnAbsenceOfBundleKeys
>> > WARNING: Keys missing in bundle:MessageBundle_ko are
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>> >
>> > Feb 6, 2010 1:08:04 PM
>> > org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > _warnAbsenceOfBundleKeys
>> > WARNING: Keys missing in bundle:MessageBundle_nl are
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>> >
>> > Feb 6, 2010 1:08:04 PM
>> > org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > _warnAbsenceOfBundleKeys
>> > WARNING: Keys missing in bundle:MessageBundle_no are
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>> >
>> > Feb 6, 2010 1:08:04 PM
>> > org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > _warnAbsenceOfBundleKeys
>> > WARNING: Keys missing in bundle:MessageBundle_pl are
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>> >
>> > Feb 6, 2010 1:08:04 PM
>> > org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > _warnAbsenceOfBundleKeys
>> > WARNING: Keys missing in bundle:MessageBundle_pt are
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>> >
>> > Feb 6, 2010 1:08:04 PM
>> > org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > _warnAbsenceOfBundleKeys
>> > WARNING: Keys missing in bundle:MessageBundle_pt_BR are
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>> >
>> > Feb 6, 2010 1:08:05 PM
>> > org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > _warnAbsenceOfBundleKeys
>> > WARNING: Keys missing in bundle:MessageBundle_ro are
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>> >
>> > Feb 6, 2010 1:08:05 PM
>> > org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > _warnAbsenceOfBundleKeys
>> > WARNING: Keys missing in bundle:MessageBundle_ru are
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>> >
>> > Feb 6, 2010 1:08:05 PM
>> > org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > _warnAbsenceOfBundleKeys
>> > WARNING: Keys missing in bundle:MessageBundle_sk are
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>> >
>> > Feb 6, 2010 1:08:05 PM
>> > org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > _warnAbsenceOfBundleKeys
>> > WARNING: Keys missing in bundle:MessageBundle_sv are
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>> >
>> > Feb 6, 2010 1:08:05 PM
>> > org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > _warnAbsenceOfBundleKeys
>> > WARNING: Keys missing in bundle:MessageBundle_th are
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>> >
>> > Feb 6, 2010 1:08:05 PM
>> > org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > _warnAbsenceOfBundleKeys
>> > WARNING: Keys missing in bundle:MessageBundle_tr are
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>> >
>> > Feb 6, 2010 1:08:05 PM
>> > org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > _warnAbsenceOfBundleKeys
>> > WARNING: Keys missing in bundle:MessageBundle_zh_CN are
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>> >
>> > Feb 6, 2010 1:08:05 PM
>> > org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > _warnAbsenceOfBundleKeys
>> > WARNING: Keys missing in bundle:MessageBundle_zh_TW are
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>> >
>> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.343
>> > sec
>> > Running
>> >
>> > org.apache.myfaces.trinidadinternal.style.xml.parse.StyleSheetNodeEqualsTest
>> > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.03 sec
>> > Running
>> > org.apache.myfaces.trinidadinternal.application.ViewHandlerImplTest
>> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014
>> > sec
>> > Running org.apache.myfaces.trinidadinternal.el.TokenizerTest
>> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.005
>> > sec
>> > Running org.apache.myfaces.trinidadinternal.util.SubKeyMapTest
>> > Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.01
>> > sec
>> > Running org.apache.myfaces.trinidadinternal.renderkit.CoreRenderKitTest
>> > Feb 6, 2010 1:08:06 PM
>> > org.apache.myfaces.trinidad.util.ExternalContextUtils
>> > <clinit>
>> > INFO: Portlet Environment Detected: 1.0
>> > Tests run: 775, Failures: 0, Errors: 7, Skipped: 0, Time elapsed: 43.477
>> > sec
>> > <<< FAILURE!
>> > Running org.apache.myfaces.trinidadinternal.context.RequestContextTest
>> > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.024
>> > sec
>> > Running
>> > org.apache.myfaces.trinidadinternal.ui.laf.base.xhtml.XhtmlLafUtilsTest
>> > Feb 6, 2010 1:08:48 PM
>> > org.apache.myfaces.trinidadinternal.renderkit.FacesConfigInfo load
>> > INFO: PARSING
>> >
>> > file:/local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/classes/META-INF/faces-config.xml
>> > Feb 6, 2010 1:08:48 PM
>> > org.apache.myfaces.trinidadinternal.renderkit.FacesConfigInfo load
>> > INFO: PARSING
>> >
>> > jar:file:/export/home/mrmaven/.m2/repository/com/sun/facelets/jsf-facelets/1.1.14/jsf-facelets-1.1.14.jar!/META-INF/faces-config.xml
>> > Couldn't create renderer com.sun.facelets.component.RepeatRenderer
>> > Feb 6, 2010 1:08:48 PM
>> > org.apache.myfaces.trinidadinternal.renderkit.FacesConfigInfo load
>> > INFO: PARSING
>> >
>> > file:/local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/classes/META-INF/faces-config.xml
>> > Feb 6, 2010 1:08:48 PM
>> > org.apache.myfaces.trinidadinternal.renderkit.FacesConfigInfo load
>> > INFO: PARSING
>> >
>> > jar:file:/export/home/mrmaven/.m2/repository/com/sun/facelets/jsf-facelets/1.1.14/jsf-facelets-1.1.14.jar!/META-INF/faces-config.xml
>> > Couldn't create renderer com.sun.facelets.component.RepeatRenderer
>> > Feb 6, 2010 1:08:48 PM
>> > org.apache.myfaces.trinidad.context.RenderingContext
>> > attach
>> > WARNING: Trying to attach RenderingContext to a thread that already had
>> > one.
>> > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.224
>> > sec
>> > Running
>> > org.apache.myfaces.trinidadinternal.validator.ByteLengthValidatorTest
>> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.087
>> > sec
>> > Running org.apache.myfaces.trinidadinternal.taglib.TLDTest
>> > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001
>> > sec
>> >
>> > Results :
>> >
>> > Tests in error:
>> >
>> >  singleStepButtonBar-minimal(org.apache.myfaces.trinidadinternal.renderkit.RenderKitTestCase$RendererTest)
>> >
>> >  singleStepButtonBar-minimalIE(org.apache.myfaces.trinidadinternal.renderkit.RenderKitTestCase$RendererTest)
>> >
>> >  singleStepButtonBar-minimalIERtl(org.apache.myfaces.trinidadinternal.renderkit.RenderKitTestCase$RendererTest)
>> >
>> >  singleStepButtonBar-minimalPPC(org.apache.myfaces.trinidadinternal.renderkit.RenderKitTestCase$RendererTest)
>> >
>> >  singleStepButtonBar-minimalSaf(org.apache.myfaces.trinidadinternal.renderkit.RenderKitTestCase$RendererTest)
>> >
>> >  singleStepButtonBar-minimalScrRdr(org.apache.myfaces.trinidadinternal.renderkit.RenderKitTestCase$RendererTest)
>> >
>> >  singleStepButtonBar-minimalInacc(org.apache.myfaces.trinidadinternal.renderkit.RenderKitTestCase$RendererTest)
>> >
>> > Tests run: 821, Failures: 0, Errors: 7, Skipped: 0
>> >
>> > [INFO]
>> > ------------------------------------------------------------------------
>> > [ERROR] BUILD FAILURE
>> > [INFO]
>> > ------------------------------------------------------------------------
>> > [INFO] There are test failures.
>> >
>> > Please refer to
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/surefire-reports
>> > for the individual test results.
>> > [INFO]
>> > ------------------------------------------------------------------------
>> > [INFO] For more information, run Maven with the -e switch
>> > [INFO]
>> > ------------------------------------------------------------------------
>> > [INFO] Total time: 7 minutes 7 seconds
>> > [INFO] Finished at: Sat Feb 06 13:08:49 UTC 2010
>> > [INFO] Final Memory: 45M/107M
>> > [INFO]
>> > ------------------------------------------------------------------------
>> >
>> >
>> > ****************************************************************************
>> >
>> >
>> >
>>
>>
>>
>> --
>> Matthias Wessendorf
>>
>> blog: http://matthiaswessendorf.wordpress.com/
>> sessions: http://www.slideshare.net/mwessendorf
>> twitter: http://twitter.com/mwessendorf
>
>



-- 
Matthias Wessendorf

blog: http://matthiaswessendorf.wordpress.com/
sessions: http://www.slideshare.net/mwessendorf
twitter: http://twitter.com/mwessendorf

Re: BUILD FAILURE: Apache MyFaces Trinidad 1.2

Posted by Leonardo Uribe <lu...@gmail.com>.
Hi

I think this is not related, but I cannot compile trinidad maven faces
plugin, because there is an error related to a Override annotation.

regards,

Leonardo Uribe

2010/2/6 Matthias Wessendorf <ma...@apache.org>

> Hello Matt,
>
> because of REV 904625.
> http://svn.apache.org/viewvc?view=revision&revision=904625
>
> the build is failing.
>
> Make sure you are using Java5 etc.
>
> Thanks!
> Matthias
>
> On Sat, Feb 6, 2010 at 2:09 PM, Continuum@myfaces.zones.apache.org
> <co...@myfaces.apache.org> wrote:
> > Online report :
> >
> http://myfaces.zones.apache.org:8080/continuum/buildResult.action?buildId=26039&projectId=48
> >
> > Build statistics:
> >  State: Failed
> >  Previous State: Ok
> >  Started at: Sat 6 Feb 2010 13:01:39 +0000
> >  Finished at: Sat 6 Feb 2010 13:08:50 +0000
> >  Total time: 7m 11s
> >  Build Trigger: Forced
> >  Build Number: 343
> >  Exit code: 1
> >  Building machine hostname: myfaces.zones.apache.org
> >  Operating system : SunOS(unknown)
> >  Java Home version :         java version "1.5.0_22"
> >         Java(TM) 2 Runtime Environment, Standard Edition (build
> > 1.5.0_22-b03)
> >         Java HotSpot(TM) Server VM (build 1.5.0_22-b03, mixed mode)
> >        Builder version :
> >         Maven version: 2.0.10
> >         Java version: 1.5.0_22
> >         OS name: "sunos" version: "5.10" arch: "x86" Family: "unix"
> >
> >
> ****************************************************************************
> > SCM Changes:
> >
> ****************************************************************************
> > Changed: mcooper @ Fri 29 Jan 2010 21:19:14 +0000
> > Comment: TRINIDAD-1696 acc (screen reader mode) layout tables should
> include
> > role="presentation"
> >
> > Thanks to Dave Robinson for the patch:
> >
> > When using trh:tableLayout in our page to layout some UI components, it
> > gives warning during Accessibility testing:
> > "WARNING - This layout Table could be confused for a data table by Screen
> > Readers"
> > From the html perspective, this warning can be fixed by setting
> > role="presentation" on the html table element.
> >
> > We can add role="presentation" to layout tables with the following
> addition
> > to
> >
> >
> org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.OutputTextUtils.renderLayoutTableAttributes():
> >
> >  if (CoreRenderer.isScreenReaderMode(arc))
> >  {
> >   ResponseWriter writer = context.getResponseWriter();
> >   writer.writeAttribute("datatable", "0", null);
> >
> > --> writer.writeAttribute("role", "presentation", null); <--
> >
> >  }
> > Files changed:
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/xhtml/OutputUtils.java
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/columnGroup-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/editableTable-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputColor-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputDate-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputFile-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputListOfValues-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputNumberSpinbox-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputText-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputText-rows-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/messages-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/messagesError-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/messagesFatal-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/messagesInfo-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/messagesWarn-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/navigationPaneBar-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/navigationPaneButtons-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/navigationPaneList-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/navigationPaneTabs-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelBorderLayout-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelBox-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelButtonBar-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelFormLayout-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelGroupLayout-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelHorizontalLayout-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelHorizontalLayout-separator-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelLabelAndMessage-facet-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelLabelAndMessage-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelList-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelPage-facets-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelPageHeader-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/rowLayout-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectBooleanCheckbox-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectBooleanRadio-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectManyCheckbox-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectManyListBox-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectManyShuttle-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectOneChoice-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectOneListbox-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectOneRadio-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectOrderShuttle-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectRangeChoiceBar-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectRangeChoiceBarBig-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/singleStepButtonBar-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/table-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/tableSelectMany-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/tableSelectOne-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/train-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/treeTable-minimalScrRdr-golden.xml
> > ( 904625 )
> >
> > Changed: matzew @ Sat 30 Jan 2010 11:17:15 +0000
> > Comment: added a jetty profile for the new awesome showcase
> > Files changed:
> >
>  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/pom.xml
> > ( 904764 )
> >
> > Changed: jwaldman @ Tue 2 Feb 2010 18:17:22 +0000
> > Comment: TRINIDAD-1702 performance: decrease memory of
> FileSystemStyleCache
> > by reusing CSSStyle objects.
> > Files changed:
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/style/cache/FileSystemStyleCache.java
> > ( 905740 )
> >
> > Changed: matzew @ Tue 2 Feb 2010 19:09:07 +0000
> > Comment: TRINIDAD-983 - Sortable model for localized text
> >
> >
> > ported patch from Toma havelka to trinidad/jsf 1.2
> > Files changed:
> >
>  /myfaces/trinidad/trunk/trinidad-api/src/main/java/org/apache/myfaces/trinidad/model/SortableModel.java
> > ( 905749 )
> >
> > Changed: ckormos @ Wed 3 Feb 2010 20:59:09 +0000
> > Comment: fixed [TRINIDAD-1706] - Trinidad components showcase demo app
> > doesn't include java sources in packaged war
> > Files changed:
> >
>  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/pom.xml
> > ( 906239 )
> >
> > Changed: ckormos @ Wed 3 Feb 2010 21:07:19 +0000
> > Comment: [trinidad components showcase] :
> >    -  removed usage of commons logging, replaced with logging with
> > java.util.
> >    - added arg to sitemap generator to be able to specify base URL on
> > execution.
> > Files changed:
> >
>  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/java/org/apache/myfaces/trinidaddemo/ComponentDemoRegistry.java
> > ( 906243 )
> >
>  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/java/org/apache/myfaces/trinidaddemo/NavigationHandlerPhaseListener.java
> > ( 906243 )
> >
>  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/java/org/apache/myfaces/trinidaddemo/support/PrettyUrlFilter.java
> > ( 906243 )
> >
>  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/java/org/apache/myfaces/trinidaddemo/support/impl/ComponentVariantDemoDescriptionProvider.java
> > ( 906243 )
> >
>  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/java/org/apache/myfaces/trinidaddemo/support/util/SitemapGenerator.java
> > ( 906243 )
> >
> > Changed: bsullivan @ Thu 4 Feb 2010 22:44:48 +0000
> > Comment: Make sure that the ID_KEY is present in the
> UIXFacesBeanImpl.java
> > key set when the UIXFacesBeanImpl is delegating the storageof the ID
> > property back to the UIXComponentBase.
> > Files changed:
> >
>  /myfaces/trinidad/trunk/trinidad-api/src/main/java/org/apache/myfaces/trinidad/bean/FacesBeanImpl.java
> > ( 906703 )
> >
>  /myfaces/trinidad/trunk/trinidad-api/src/main/java/org/apache/myfaces/trinidad/component/UIXFacesBeanImpl.java
> > ( 906703 )
> >
>  /myfaces/trinidad/trunk/trinidad-api/src/main/java/org/apache/myfaces/trinidad/util/CollectionUtils.java
> > ( 906703 )
> >
> > Changed: matzew @ Fri 5 Feb 2010 07:25:50 +0000
> > Comment: added getServerInfo() call
> > Files changed:
> >
>  /myfaces/trinidad/trunk/trinidad-api/src/main/java/org/apache/myfaces/trinidad/util/ExternalContextUtils.java
> > ( 906828 )
> >
> > Changed: matzew @ Sat 6 Feb 2010 12:05:38 +0000
> > Comment: updated scm url
> > Files changed:
> >  /myfaces/trinidad/trunk/pom.xml ( 907204 )
> >
> >
> ****************************************************************************
> > Dependencies Changes:
> >
> ****************************************************************************
> > No dependencies changed
> >
> >
> ****************************************************************************
> > Test Summary:
> >
> ****************************************************************************
> > Tests: 1319
> > Failures: 7
> > Total time: 52037
> >
> >
> ****************************************************************************
> > Output:
> >
> ****************************************************************************
> > [INFO] Scanning for projects...
> > [INFO] Reactor build order: [INFO]   Apache MyFaces Trinidad 1.2
> > [INFO]   Apache MyFaces Trinidad Build
> > [INFO]   Apache MyFaces Trinidad API
> > [INFO]   Apache MyFaces Trinidad Impl
> > [INFO]   Apache MyFaces Trinidad Examples
> > [INFO]   Apache MyFaces Trinidad Blank Demo
> > [INFO]   Apache MyFaces Trinidad Demo
> > [INFO]   Apache MyFaces Trinidad Components Showcase
> > [INFO] Searching repository for plugin with prefix: 'source'.
> > [INFO] org.apache.maven.plugins: checking for updates from
> apache.snapshots
> > [INFO] org.codehaus.mojo: checking for updates from apache.snapshots
> > [INFO]
> > ------------------------------------------------------------------------
> > [INFO] Building Apache MyFaces Trinidad 1.2
> > [INFO]    task-segment: [clean, install, source:jar, deploy]
> > [INFO]
> > ------------------------------------------------------------------------
> > [INFO] [clean:clean]
> > [INFO] Deleting directory
> > /local/continuum-1.1-beta-2/working-directory/48/target
> > [INFO] [xrts:generate-sources {execution: default}]
> > [INFO] Setting property: classpath.resource.loader.class =>
> > 'org.codehaus.plexus.velocity.ContextClassLoaderResourceLoader'.
> > [INFO] Setting property: velocimacro.messages.on => 'false'.
> > [INFO] Setting property: resource.loader => 'classpath'.
> > [INFO] Setting property: resource.manager.logwhenfound => 'false'.
> > [INFO] [remote-resources:process {execution: default}]
> > [INFO] [xrts:generate-test-sources {execution: default}]
> > [INFO] [site:attach-descriptor]
> > [INFO] Unable to load parent project from a relative path: Could not find
> > the model file
> > '/local/continuum-1.1-beta-2/working-directory/48/../pom.xml'. for
> project
> > unknown
> > [INFO] Parent project loaded from repository.
> > [INFO] Preparing source:jar
> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
> > invocation.
> > [INFO] [xrts:generate-sources {execution: default}]
> > [INFO] [source:jar {execution: attach-source}]
> > [INFO] [install:install]
> > [INFO] Installing
> /local/continuum-1.1-beta-2/working-directory/48/pom.xml
> > to
> >
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad/1.2.14-SNAPSHOT/trinidad-1.2.14-SNAPSHOT.pom
> > [INFO] Preparing source:jar
> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
> > invocation.
> > [INFO] [xrts:generate-sources {execution: default}]
> > [INFO] [source:jar]
> > [INFO] [xrts:generate-sources {execution: default}]
> > [INFO] [remote-resources:process {execution: default}]
> > [INFO] [xrts:generate-test-sources {execution: default}]
> > [INFO] [site:attach-descriptor]
> > [INFO] Unable to load parent project from a relative path: Could not find
> > the model file
> > '/local/continuum-1.1-beta-2/working-directory/48/../pom.xml'. for
> project
> > unknown
> > [INFO] Parent project loaded from repository.
> > [INFO] Preparing source:jar
> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
> > invocation.
> > [INFO] [xrts:generate-sources {execution: default}]
> > [INFO] [source:jar {execution: attach-source}]
> > [INFO] [install:install]
> > [INFO] Installing
> /local/continuum-1.1-beta-2/working-directory/48/pom.xml
> > to
> >
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad/1.2.14-SNAPSHOT/trinidad-1.2.14-SNAPSHOT.pom
> > [INFO] [deploy:deploy]
> > [INFO] Retrieving previous build number from apache-maven-snapshots
> > Uploading:
> > scpexe://
> minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad/1.2.14-SNAPSHOT/trinidad-1.2.14-SNAPSHOT.pom
> > [INFO] Retrieving previous metadata from apache-maven-snapshots
> > [INFO] Uploading repository metadata for: 'snapshot
> > org.apache.myfaces.trinidad:trinidad:1.2.14-SNAPSHOT'
> > [INFO] Uploading site descriptor for trinidad 1.2.14-SNAPSHOT site.xml
> > [INFO] Retrieving previous metadata from apache-maven-snapshots
> > [INFO] Uploading repository metadata for: 'artifact
> > org.apache.myfaces.trinidad:trinidad'
> > [INFO]
> > ------------------------------------------------------------------------
> > [INFO] Building Apache MyFaces Trinidad Build
> > [INFO]    task-segment: [clean, install, source:jar, deploy]
> > [INFO]
> > ------------------------------------------------------------------------
> > [INFO] [clean:clean]
> > [INFO] Deleting directory
> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target
> > [INFO] [xrts:generate-sources {execution: default}]
> > [INFO] [remote-resources:process {execution: default}]
> > [INFO] [faces:generate-master-faces-config {execution: default}]
> > [INFO] Generating META-INF/maven-faces-plugin/faces-config.xml
> > [INFO] [resources:resources]
> > [INFO] Using default encoding to copy filtered resources.
> > [INFO] [compiler:compile]
> > [INFO] No sources to compile
> > [INFO] [xrts:generate-test-sources {execution: default}]
> > [INFO] [resources:testResources]
> > [INFO] Using default encoding to copy filtered resources.
> > [INFO] [compiler:testCompile]
> > [INFO] No sources to compile
> > [INFO] [surefire:test]
> > [INFO] Surefire report directory:
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/surefire-reports
> >
> > -------------------------------------------------------
> > T E S T S
> > -------------------------------------------------------
> > There are no tests to run.
> >
> > Results :
> >
> > Tests run: 0, Failures: 0, Errors: 0, Skipped: 0
> >
> > [INFO] [jar:jar]
> > [INFO] Building jar:
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT.jar
> > [INFO] Preparing source:jar
> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
> > invocation.
> > [INFO] [xrts:generate-sources {execution: default}]
> > [INFO] [source:jar {execution: attach-source}]
> > [INFO] Building jar:
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> > [INFO] [install:install]
> > [INFO] Installing
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT.jar
> > to
> >
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT.jar
> > [INFO] Installing
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> > to
> >
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> > [INFO] Preparing source:jar
> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
> > invocation.
> > [INFO] [xrts:generate-sources {execution: default}]
> > [INFO] [source:jar]
> > [INFO] Building jar:
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> > [INFO] [xrts:generate-sources {execution: default}]
> > [INFO] [remote-resources:process {execution: default}]
> > [INFO] [faces:generate-master-faces-config {execution: default}]
> > [INFO] Generating META-INF/maven-faces-plugin/faces-config.xml
> > [INFO] [resources:resources]
> > [INFO] Using default encoding to copy filtered resources.
> > [INFO] [compiler:compile]
> > [INFO] No sources to compile
> > [INFO] [xrts:generate-test-sources {execution: default}]
> > [INFO] [resources:testResources]
> > [INFO] Using default encoding to copy filtered resources.
> > [INFO] [compiler:testCompile]
> > [INFO] No sources to compile
> > [INFO] [surefire:test]
> > [INFO] Surefire report directory:
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/surefire-reports
> >
> > -------------------------------------------------------
> > T E S T S
> > -------------------------------------------------------
> > There are no tests to run.
> >
> > Results :
> >
> > Tests run: 0, Failures: 0, Errors: 0, Skipped: 0
> >
> > [INFO] [jar:jar]
> > [INFO] Building jar:
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT.jar
> > [INFO] Preparing source:jar
> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
> > invocation.
> > [INFO] [xrts:generate-sources {execution: default}]
> > [INFO] [source:jar {execution: attach-source}]
> > [INFO] Building jar:
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> > [INFO] [install:install]
> > [INFO] Installing
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT.jar
> > to
> >
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT.jar
> > [INFO] Installing
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> > to
> >
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> > [INFO] Installing
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> > to
> >
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> > [INFO] Installing
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> > to
> >
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> > [INFO] [deploy:deploy]
> > [INFO] Retrieving previous build number from apache-maven-snapshots
> > Uploading:
> > scpexe://
> minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT.jar
> > [INFO] Retrieving previous metadata from apache-maven-snapshots
> > [INFO] Uploading repository metadata for: 'snapshot
> > org.apache.myfaces.trinidad:trinidad-build:1.2.14-SNAPSHOT'
> > [INFO] Retrieving previous metadata from apache-maven-snapshots
> > [INFO] Uploading repository metadata for: 'artifact
> > org.apache.myfaces.trinidad:trinidad-build'
> > [INFO] Uploading project information for trinidad-build 1.2.14-SNAPSHOT
> > [INFO] Retrieving previous build number from apache-maven-snapshots
> > Uploading:
> > scpexe://
> minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> > [INFO] Retrieving previous build number from apache-maven-snapshots
> > Uploading:
> > scpexe://
> minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> > [INFO] Retrieving previous build number from apache-maven-snapshots
> > Uploading:
> > scpexe://
> minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> > [INFO]
> > ------------------------------------------------------------------------
> > [INFO] Building Apache MyFaces Trinidad API
> > [INFO]    task-segment: [clean, install, source:jar, deploy]
> > [INFO]
> > ------------------------------------------------------------------------
> > [INFO] [clean:clean]
> > [INFO] Deleting directory
> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target
> > [INFO] [xrts:generate-sources {execution: default}]
> > [INFO] Generating 54 XRTS bundles to
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/maven-xrts-plugin/main/java
> > [INFO] [faces:generate-components {execution: default}]
> > [INFO] Generated 133 component(s)
> > [INFO] [i18n:generate-locale-elements {execution: default}]
> > [INFO] Generating LocaleElements
> > [INFO] [remote-resources:process {execution: default}]
> > [INFO] [resources:resources]
> > [INFO] Using default encoding to copy filtered resources.
> > [INFO] [compiler:compile]
> > [INFO] Compiling 405 source files to
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/classes
> > [INFO] [xrts:generate-test-sources {execution: default}]
> > [INFO] Generating 1 XRTS bundles to
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/maven-xrts-plugin/test/java
> > [INFO] [resources:testResources]
> > [INFO] Using default encoding to copy filtered resources.
> > [INFO] [compiler:testCompile]
> > [INFO] Compiling 93 source files to
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/test-classes
> > [INFO] [surefire:test]
> > [INFO] Surefire report directory:
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/surefire-reports
> >
> > -------------------------------------------------------
> > T E S T S
> > -------------------------------------------------------
> > Running org.apache.myfaces.trinidad.component.AddRemoveTest
> > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.081 sec
> > Running org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest
> >
> descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.159 sec
> > Running org.apache.myfaces.trinidad.util.ServiceTest
> > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.005 sec
> > Running org.apache.myfaces.trinidad.component.UIXSelectManyTest
> > Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.387
> sec
> > Running
> >
> org.apache.myfaces.trinidad.component.core.layout.CoreShowDetailHeaderTest
> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.044 sec
> > Running org.apache.myfaces.trinidad.component.html.HtmlTableLayoutTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018 sec
> > Running org.apache.myfaces.trinidad.validator.LengthValidatorTest
> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.028 sec
> > Running org.apache.myfaces.trinidad.bean.util.ValueMapTest
> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.01 sec
> > Running org.apache.myfaces.trinidad.component.html.HtmlScriptTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.201 sec
> > Running org.apache.myfaces.trinidad.component.core.CoreFormTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.022 sec
> > Running
> >
> org.apache.myfaces.trinidad.component.core.input.CoreSelectBooleanCheckboxTest
> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.019 sec
> > Running org.apache.myfaces.trinidad.component.html.HtmlCellFormatTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018 sec
> > Running org.apache.myfaces.trinidad.validator.LongRangeValidatorTest
> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec
> > Running
> org.apache.myfaces.trinidad.validator.DateRestrictionValidatorTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.022 sec
> > Running
> org.apache.myfaces.trinidad.component.core.layout.CorePanelRadioTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.022 sec
> > Running org.apache.myfaces.trinidad.component.UIXTreeTest
> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014 sec
> > Running org.apache.myfaces.trinidad.component.UIXSwitcherTest
> > Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014 sec
> > Running
> org.apache.myfaces.trinidad.component.core.layout.CorePanelBoxTest
> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018 sec
> > Running org.apache.myfaces.trinidad.convert.ColorConverterTest
> > Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.179
> sec
> > Running
> org.apache.myfaces.trinidad.component.core.nav.CoreBreadCrumbsTest
> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.039 sec
> > Running org.apache.myfaces.trinidad.util.Base64InputStreamTest
> > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.009 sec
> > Running org.apache.myfaces.trinidad.bean.PropertyKeyTest
> > Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.003 sec
> > Running org.apache.myfaces.trinidad.component.core.data.CoreColumnTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.026 sec
> > Running
> org.apache.myfaces.trinidad.component.core.output.CoreSeparatorTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018 sec
> > Running
> org.apache.myfaces.trinidad.component.core.output.CoreOutputTextTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.023 sec
> > Running org.apache.myfaces.trinidad.component.html.HtmlFrameTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017 sec
> > Running org.apache.myfaces.trinidad.util.FastMessageFormatTest
> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec
> > Running org.apache.myfaces.trinidad.validator.RegExpValidatorTest
> > Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015
> sec
> > Running org.apache.myfaces.trinidad.bean.FacesBeanImplTest
> > Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.13 sec
> > Running
> org.apache.myfaces.trinidad.component.core.layout.CoreShowDetailTest
> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018 sec
> > Running org.apache.myfaces.trinidad.component.UIXProcessTest
> > Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017 sec
> > Running
> > org.apache.myfaces.trinidad.component.core.layout.CorePanelSideBarTest
> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 sec
> > Running
> org.apache.myfaces.trinidad.component.html.HtmlFrameBorderLayoutTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.022 sec
> > Running org.apache.myfaces.trinidad.convert.TrinidadDateTimeConverterTest
> > Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.242
> sec
> > Running org.apache.myfaces.trinidad.component.html.HtmlHtmlTest
> > Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.012 sec
> > Running org.apache.myfaces.trinidad.component.UIXSelectOrderTest
> > Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016
> sec
> > Running org.apache.myfaces.trinidad.render.RenderUtilsTest
> >  Found PropertyDescriptor java.beans.PropertyDescriptor@7bf628e6Feb 6,
> 2010
> > 1:04:40 PM org.apache.myfaces.trinidad.util.ComponentUtils
> > _findRelativeComponentDeprecated
> > WARNING: Could not find the component with scopedId :::button1 from
> > UIXInput[UIXEditableFacesBeanImpl, id=input1] with the supported syntax.
> The
> > component was found with the deprecated syntax. Please use the supported
> > syntax.
> > Feb 6, 2010 1:04:40 PM org.apache.myfaces.trinidad.render.RenderUtils
> > getRelativeId
> > WARNING: Could not find the component with scopedId commandButton1 from
> > RenderUtilsTest$TestNamingContainer[UIXFacesBeanImpl, id=table1] with the
> > supported syntax. The component was found with the deprecated syntax.
> Please
> > use the supported syntax.
> > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.01 sec
> > Running org.apache.myfaces.trinidad.validator.DateTimeRangeValidatorTest
> > Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.071
> sec
> > Running
> org.apache.myfaces.trinidad.resource.AggregatingResourceLoaderTest
> > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014 sec
> > Running
> org.apache.myfaces.trinidad.component.core.layout.CorePanelListTest
> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018 sec
> > Running
> > org.apache.myfaces.trinidad.component.core.layout.CorePanelHeaderTest
> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017 sec
> > Running org.apache.myfaces.trinidad.model.RowKeySetImplTest
> > Tests run: 14, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.026
> sec
> > Running org.apache.myfaces.trinidad.util.Base64OutputStreamTest
> > Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.011 sec
> > Running org.apache.myfaces.trinidad.util.ArrayMapTest
> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004 sec
> > Running org.apache.myfaces.trinidad.convert.JsfNumberConverterTest
> > resource bundle javax.faces.Messages could not be found
> > Tests run: 16, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.029
> sec
> > Running
> >
> org.apache.myfaces.trinidad.component.core.layout.CorePanelGroupLayoutTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.025 sec
> > Running org.apache.myfaces.trinidad.validator.ByteLengthValidatorTest
> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014 sec
> > Running org.apache.myfaces.trinidad.component.core.nav.CoreTrainTest
> > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.002 sec
> > Running org.apache.myfaces.trinidad.bean.TypeTest
> > Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.003 sec
> > Running org.apache.myfaces.trinidad.util.ListFromCollectionTest
> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004 sec
> > Running
> >
> org.apache.myfaces.trinidad.component.core.data.CoreSelectRangeChoiceBarTest
> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.022 sec
> > Running org.apache.myfaces.trinidad.component.core.output.CoreSpacerTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.224 sec
> > Running
> > org.apache.myfaces.trinidad.component.core.layout.CorePanelAccordionTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018 sec
> > Running org.apache.myfaces.trinidad.component.FindComponentTest
> > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.013 sec
> > Running org.apache.myfaces.trinidad.model.RowKeySetTreeImplTest
> >
> descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> > Tests run: 13, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.039
> sec
> > Running org.apache.myfaces.trinidad.model.SortableModelTest
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=name
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=name
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=name
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=name
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=name
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=object
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7ac113d1descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=name
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=name
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=name
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=name
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=name
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=name
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=name
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=name
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.064 sec
> > Running org.apache.myfaces.trinidad.validator.DoubleRangeValidatorTest
> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 sec
> > Running org.apache.myfaces.trinidad.component.UIXShowDetailTest
> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 sec
> > Running org.apache.myfaces.trinidad.component.UIXInputTest
> > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.05 sec
> > Running org.apache.myfaces.trinidad.convert.TrinidadNumberConverterTest
> > Tests run: 18, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.034
> sec
> > Running org.apache.myfaces.trinidad.convert.JsfDateTimeConverterTest
> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.059 sec
> > Running
> >
> org.apache.myfaces.trinidad.component.core.layout.CorePanelBorderLayoutTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.028 sec
> > Running org.apache.myfaces.trinidad.util.FindRelativeComponentTest
> >  Found PropertyDescriptor java.beans.PropertyDescriptor@e6e3b8feFeb 6,
> 2010
> > 1:04:41 PM org.apache.myfaces.trinidad.util.ComponentUtils
> > _findRelativeComponentDeprecated
> > WARNING: Could not find the component with scopedId :::commandButton1
> from
> > UIXInput[UIXEditableFacesBeanImpl, id=input1] with the supported syntax.
> The
> > component was found with the deprecated syntax. Please use the supported
> > syntax.
> > Feb 6, 2010 1:04:41 PM org.apache.myfaces.trinidad.util.ComponentUtils
> > _findRelativeComponentDeprecated
> > WARNING: Could not find the component with scopedId :::commandButton1
> from
> > UIXInput[UIXEditableFacesBeanImpl, id=inputA] with the supported syntax.
> The
> > component was found with the deprecated syntax. Please use the supported
> > syntax.
> > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec
> > Running
> > org.apache.myfaces.trinidad.component.core.layout.CorePanelChoiceTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018 sec
> > Running org.apache.myfaces.trinidad.component.html.HtmlRowLayoutTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017 sec
> > Running org.apache.myfaces.trinidad.component.UIXTableTest
> > Feb 6, 2010 1:04:41 PM org.apache.myfaces.trinidad.bean.PropertyKey
> > saveValue
> > WARNING: Unserializable
> > value:SortableModel[javax.faces.model.ListDataModel@985fa2] for
> > key:PropertyKey[value,11]
> > Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.058
> sec
> > Running org.apache.myfaces.trinidad.resource.CachingResourceLoaderTest
> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.005 sec
> > Running
> org.apache.myfaces.trinidad.component.core.input.CoreInputHiddenTest
> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.033 sec
> >
> > Results :
> >
> > Tests run: 498, Failures: 0, Errors: 0, Skipped: 0
> >
> > [INFO] [jar:jar]
> > [INFO] Building jar:
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT.jar
> > [INFO] Preparing source:jar
> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
> > invocation.
> > [INFO] [xrts:generate-sources {execution: default}]
> > [INFO] Nothing to generate - all XRTS bundles are up to date
> > [INFO] [faces:generate-components {execution: default}]
> > [INFO] Generated 133 component(s)
> > [INFO] [i18n:generate-locale-elements {execution: default}]
> > [INFO] Generating LocaleElements
> > [INFO] [source:jar {execution: attach-source}]
> > [INFO] Building jar:
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> > [INFO] [jar:test-jar {execution: default}]
> > [INFO] Building jar:
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-tests.jar
> > [INFO] [install:install]
> > [INFO] Installing
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT.jar
> > to
> >
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT.jar
> > [INFO] Installing
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> > to
> >
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> > [INFO] Installing
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-tests.jar
> > to
> >
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-tests.jar
> > [INFO] Preparing source:jar
> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
> > invocation.
> > [INFO] [xrts:generate-sources {execution: default}]
> > [INFO] Nothing to generate - all XRTS bundles are up to date
> > [INFO] [faces:generate-components {execution: default}]
> > [INFO] Generated 133 component(s)
> > [INFO] [i18n:generate-locale-elements {execution: default}]
> > [INFO] Generating LocaleElements
> > [INFO] [source:jar]
> > [INFO] Building jar:
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> > [INFO] [xrts:generate-sources {execution: default}]
> > [INFO] Nothing to generate - all XRTS bundles are up to date
> > [INFO] [faces:generate-components {execution: default}]
> > [INFO] Generated 133 component(s)
> > [INFO] [i18n:generate-locale-elements {execution: default}]
> > [INFO] Generating LocaleElements
> > [INFO] [remote-resources:process {execution: default}]
> > [INFO] [resources:resources]
> > [INFO] Using default encoding to copy filtered resources.
> > [INFO] [compiler:compile]
> > [INFO] Compiling 133 source files to
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/classes
> > [INFO] [xrts:generate-test-sources {execution: default}]
> > [INFO] Nothing to generate - all XRTS bundles are up to date
> > [INFO] [resources:testResources]
> > [INFO] Using default encoding to copy filtered resources.
> > [INFO] [compiler:testCompile]
> > [INFO] Nothing to compile - all classes are up to date
> > [INFO] [surefire:test]
> > [INFO] Surefire report directory:
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/surefire-reports
> >
> > -------------------------------------------------------
> > T E S T S
> > -------------------------------------------------------
> > Running org.apache.myfaces.trinidad.component.AddRemoveTest
> > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.092 sec
> > Running org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest
> >
> descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.148 sec
> > Running org.apache.myfaces.trinidad.util.ServiceTest
> > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.005 sec
> > Running org.apache.myfaces.trinidad.component.UIXSelectManyTest
> > Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.104
> sec
> > Running
> >
> org.apache.myfaces.trinidad.component.core.layout.CoreShowDetailHeaderTest
> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.036 sec
> > Running org.apache.myfaces.trinidad.component.html.HtmlTableLayoutTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 sec
> > Running org.apache.myfaces.trinidad.validator.LengthValidatorTest
> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.026 sec
> > Running org.apache.myfaces.trinidad.bean.util.ValueMapTest
> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.008 sec
> > Running org.apache.myfaces.trinidad.component.html.HtmlScriptTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014 sec
> > Running org.apache.myfaces.trinidad.component.core.CoreFormTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.019 sec
> > Running
> >
> org.apache.myfaces.trinidad.component.core.input.CoreSelectBooleanCheckboxTest
> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018 sec
> > Running org.apache.myfaces.trinidad.component.html.HtmlCellFormatTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 sec
> > Running org.apache.myfaces.trinidad.validator.LongRangeValidatorTest
> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.013 sec
> > Running
> org.apache.myfaces.trinidad.validator.DateRestrictionValidatorTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.025 sec
> > Running
> org.apache.myfaces.trinidad.component.core.layout.CorePanelRadioTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.02 sec
> > Running org.apache.myfaces.trinidad.component.UIXTreeTest
> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.012 sec
> > Running org.apache.myfaces.trinidad.component.UIXSwitcherTest
> > Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.013 sec
> > Running
> org.apache.myfaces.trinidad.component.core.layout.CorePanelBoxTest
> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 sec
> > Running org.apache.myfaces.trinidad.convert.ColorConverterTest
> > Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017
> sec
> > Running
> org.apache.myfaces.trinidad.component.core.nav.CoreBreadCrumbsTest
> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.032 sec
> > Running org.apache.myfaces.trinidad.util.Base64InputStreamTest
> > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.008 sec
> > Running org.apache.myfaces.trinidad.bean.PropertyKeyTest
> > Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004 sec
> > Running org.apache.myfaces.trinidad.component.core.data.CoreColumnTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.023 sec
> > Running
> org.apache.myfaces.trinidad.component.core.output.CoreSeparatorTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 sec
> > Running
> org.apache.myfaces.trinidad.component.core.output.CoreOutputTextTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.023 sec
> > Running org.apache.myfaces.trinidad.component.html.HtmlFrameTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.076 sec
> > Running org.apache.myfaces.trinidad.util.FastMessageFormatTest
> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec
> > Running org.apache.myfaces.trinidad.validator.RegExpValidatorTest
> > Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.012
> sec
> > Running org.apache.myfaces.trinidad.bean.FacesBeanImplTest
> > Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.032
> sec
> > Running
> org.apache.myfaces.trinidad.component.core.layout.CoreShowDetailTest
> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017 sec
> > Running org.apache.myfaces.trinidad.component.UIXProcessTest
> > Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec
> > Running
> > org.apache.myfaces.trinidad.component.core.layout.CorePanelSideBarTest
> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec
> > Running
> org.apache.myfaces.trinidad.component.html.HtmlFrameBorderLayoutTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.019 sec
> > Running org.apache.myfaces.trinidad.convert.TrinidadDateTimeConverterTest
> > Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.183
> sec
> > Running org.apache.myfaces.trinidad.component.html.HtmlHtmlTest
> > Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.01 sec
> > Running org.apache.myfaces.trinidad.component.UIXSelectOrderTest
> > Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015
> sec
> >  Found PropertyDescriptor java.beans.PropertyDescriptor@7bf628e6Feb 6,
> 2010
> > 1:05:21 PM org.apache.myfaces.trinidad.util.ComponentUtils
> > _findRelativeComponentDeprecated
> > WARNING: Could not find the component with scopedId :::button1 from
> > UIXInput[UIXEditableFacesBeanImpl, id=input1] with the supported syntax.
> The
> > component was found with the deprecated syntax. Please use the supported
> > syntax.
> > Feb 6, 2010 1:05:21 PM org.apache.myfaces.trinidad.render.RenderUtils
> > getRelativeId
> > WARNING: Could not find the component with scopedId commandButton1 from
> > RenderUtilsTest$TestNamingContainer[UIXFacesBeanImpl, id=table1] with the
> > supported syntax. The component was found with the deprecated syntax.
> Please
> > use the supported syntax.
> > Running org.apache.myfaces.trinidad.render.RenderUtilsTest
> > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.007 sec
> > Running org.apache.myfaces.trinidad.validator.DateTimeRangeValidatorTest
> > Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.958
> sec
> > Running
> org.apache.myfaces.trinidad.resource.AggregatingResourceLoaderTest
> > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.208 sec
> > Running
> org.apache.myfaces.trinidad.component.core.layout.CorePanelListTest
> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.166 sec
> > Running
> > org.apache.myfaces.trinidad.component.core.layout.CorePanelHeaderTest
> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.163 sec
> > Running org.apache.myfaces.trinidad.model.RowKeySetImplTest
> > Tests run: 14, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.581
> sec
> > Running org.apache.myfaces.trinidad.util.Base64OutputStreamTest
> > Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.171 sec
> > Running org.apache.myfaces.trinidad.util.ArrayMapTest
> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.059 sec
> > Running org.apache.myfaces.trinidad.convert.JsfNumberConverterTest
> > resource bundle javax.faces.Messages could not be found
> > Tests run: 16, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.661
> sec
> > Running
> >
> org.apache.myfaces.trinidad.component.core.layout.CorePanelGroupLayoutTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.345 sec
> > Running org.apache.myfaces.trinidad.validator.ByteLengthValidatorTest
> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.296 sec
> > Running org.apache.myfaces.trinidad.component.core.nav.CoreTrainTest
> > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.055 sec
> > Running org.apache.myfaces.trinidad.bean.TypeTest
> > Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.068 sec
> > Running org.apache.myfaces.trinidad.util.ListFromCollectionTest
> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.095 sec
> > Running
> >
> org.apache.myfaces.trinidad.component.core.data.CoreSelectRangeChoiceBarTest
> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.117 sec
> > Running org.apache.myfaces.trinidad.component.core.output.CoreSpacerTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.055 sec
> > Running
> > org.apache.myfaces.trinidad.component.core.layout.CorePanelAccordionTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec
> > Running org.apache.myfaces.trinidad.component.FindComponentTest
> > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.011 sec
> > Running org.apache.myfaces.trinidad.model.RowKeySetTreeImplTest
> >
> descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> > Tests run: 13, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.029
> sec
> > Running org.apache.myfaces.trinidad.model.SortableModelTest
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=name
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=name
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=name
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=name
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=name
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=object
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7ac113d1descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=name
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=name
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=name
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=name
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=name
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=name
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=name
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=name
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014 sec
> > Running org.apache.myfaces.trinidad.validator.DoubleRangeValidatorTest
> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.01 sec
> > Running org.apache.myfaces.trinidad.component.UIXShowDetailTest
> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.013 sec
> > Running org.apache.myfaces.trinidad.component.UIXInputTest
> > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.042 sec
> > Running org.apache.myfaces.trinidad.convert.TrinidadNumberConverterTest
> > Tests run: 18, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.028
> sec
> > Running org.apache.myfaces.trinidad.convert.JsfDateTimeConverterTest
> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.006 sec
> > Running
> >
> org.apache.myfaces.trinidad.component.core.layout.CorePanelBorderLayoutTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.02 sec
> > Running org.apache.myfaces.trinidad.util.FindRelativeComponentTest
> >  Found PropertyDescriptor java.beans.PropertyDescriptor@e6e3b8feFeb 6,
> 2010
> > 1:05:26 PM org.apache.myfaces.trinidad.util.ComponentUtils
> > _findRelativeComponentDeprecated
> > WARNING: Could not find the component with scopedId :::commandButton1
> from
> > UIXInput[UIXEditableFacesBeanImpl, id=input1] with the supported syntax.
> The
> > component was found with the deprecated syntax. Please use the supported
> > syntax.
> > Feb 6, 2010 1:05:26 PM org.apache.myfaces.trinidad.util.ComponentUtils
> > _findRelativeComponentDeprecated
> > WARNING: Could not find the component with scopedId :::commandButton1
> from
> > UIXInput[UIXEditableFacesBeanImpl, id=inputA] with the supported syntax.
> The
> > component was found with the deprecated syntax. Please use the supported
> > syntax.
> > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.013 sec
> > Running
> > org.apache.myfaces.trinidad.component.core.layout.CorePanelChoiceTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017 sec
> > Running org.apache.myfaces.trinidad.component.html.HtmlRowLayoutTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014 sec
> > Running org.apache.myfaces.trinidad.component.UIXTableTest
> > Feb 6, 2010 1:05:26 PM org.apache.myfaces.trinidad.bean.PropertyKey
> > saveValue
> > WARNING: Unserializable
> > value:SortableModel[javax.faces.model.ListDataModel@1112776] for
> > key:PropertyKey[value,11]
> > Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.112
> sec
> > Running org.apache.myfaces.trinidad.resource.CachingResourceLoaderTest
> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004 sec
> > Running
> org.apache.myfaces.trinidad.component.core.input.CoreInputHiddenTest
> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.012 sec
> >
> > Results :
> >
> > Tests run: 498, Failures: 0, Errors: 0, Skipped: 0
> >
> > [INFO] [jar:jar]
> > [INFO] Building jar:
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT.jar
> > [INFO] Preparing source:jar
> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
> > invocation.
> > [INFO] [xrts:generate-sources {execution: default}]
> > [INFO] Nothing to generate - all XRTS bundles are up to date
> > [INFO] [faces:generate-components {execution: default}]
> > [INFO] Generated 133 component(s)
> > [INFO] [i18n:generate-locale-elements {execution: default}]
> > [INFO] Generating LocaleElements
> > [INFO] [source:jar {execution: attach-source}]
> > [INFO] Building jar:
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> > [INFO] [jar:test-jar {execution: default}]
> > [INFO] Building jar:
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-tests.jar
> > [INFO] [install:install]
> > [INFO] Installing
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT.jar
> > to
> >
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT.jar
> > [INFO] Installing
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> > to
> >
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> > [INFO] Installing
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-tests.jar
> > to
> >
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-tests.jar
> > [INFO] Installing
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> > to
> >
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> > [INFO] Installing
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> > to
> >
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> > [INFO] Installing
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-tests.jar
> > to
> >
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-tests.jar
> > [INFO] [deploy:deploy]
> > [INFO] Retrieving previous build number from apache-maven-snapshots
> > Uploading:
> > scpexe://
> minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT.jar
> > [INFO] Retrieving previous metadata from apache-maven-snapshots
> > [INFO] Uploading repository metadata for: 'artifact
> > org.apache.myfaces.trinidad:trinidad-api'
> > [INFO] Uploading project information for trinidad-api 1.2.14-SNAPSHOT
> > [INFO] Retrieving previous metadata from apache-maven-snapshots
> > [INFO] Uploading repository metadata for: 'snapshot
> > org.apache.myfaces.trinidad:trinidad-api:1.2.14-SNAPSHOT'
> > [INFO] Retrieving previous build number from apache-maven-snapshots
> > Uploading:
> > scpexe://
> minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> > [INFO] Retrieving previous build number from apache-maven-snapshots
> > Uploading:
> > scpexe://
> minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-tests.jar
> > [INFO] Retrieving previous build number from apache-maven-snapshots
> > Uploading:
> > scpexe://
> minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> > [INFO] Retrieving previous build number from apache-maven-snapshots
> > Uploading:
> > scpexe://
> minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> > [INFO] Retrieving previous build number from apache-maven-snapshots
> > Uploading:
> > scpexe://
> minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-tests.jar
> > [INFO]
> > ------------------------------------------------------------------------
> > [INFO] Building Apache MyFaces Trinidad Impl
> > [INFO]    task-segment: [clean, install, source:jar, deploy]
> > [INFO]
> > ------------------------------------------------------------------------
> > [INFO] [clean:clean]
> > [INFO] Deleting directory
> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target
> > [INFO] [faces:generate-jsp-taglibs {execution: default}]
> > [INFO] Generated 143 JSP tag(s)
> > [INFO] [faces:generate-facelets-taglibs {execution: default}]
> > [INFO] Generated META-INF/tr.taglib.xml
> > [INFO] Generated META-INF/trh.taglib.xml
> > [INFO] [faces:generate-renderer-map {execution: default}]
> > [INFO] [i18n:generate-locale-elements {execution: default}]
> > [INFO] Generating LocaleElements
> > [INFO] [i18n:generate-javascript-locales {execution: default}]
> > [INFO] Generating Javascript Locales
> > [INFO] [javascript:reduce-javascript {execution: default}]
> > [INFO] [xrts:generate-sources {execution: default}]
> > [INFO] Generating 59 XRTS bundles to
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/maven-xrts-plugin/main/java
> > [INFO] [faces:generate-faces-config {execution: default}]
> > [INFO] Generated META-INF/faces-config.xml
> > [INFO] [remote-resources:process {execution: default}]
> > [INFO] [resources:resources]
> > [INFO] Using default encoding to copy filtered resources.
> > [INFO] [compiler:compile]
> > [INFO] Compiling 1170 source files to
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/classes
> > [INFO] [xrts:generate-test-sources {execution: default}]
> > [INFO] [resources:testResources]
> > [INFO] Using default encoding to copy filtered resources.
> > [INFO] snapshot org.apache.myfaces.trinidad:trinidad-api:1.2.14-SNAPSHOT:
> > checking for updates from java.net
> > [INFO] snapshot org.apache.myfaces.trinidad:trinidad-api:1.2.14-SNAPSHOT:
> > checking for updates from apache.snapshots
> > [INFO] [compiler:testCompile]
> > [INFO] Compiling 50 source files to
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/test-classes
> > [INFO] [surefire:test]
> > [INFO] Surefire report directory:
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/surefire-reports
> > Feb 6, 2010 1:07:56 PM
> > org.apache.myfaces.trinidadinternal.renderkit.FacesConfigInfo load
> > INFO: PARSING
> >
> file:/local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/classes/META-INF/faces-config.xml
> > Feb 6, 2010 1:07:57 PM
> > org.apache.myfaces.trinidadinternal.renderkit.FacesConfigInfo load
> > INFO: PARSING
> >
> jar:file:/export/home/mrmaven/.m2/repository/com/sun/facelets/jsf-facelets/1.1.14/jsf-facelets-1.1.14.jar!/META-INF/faces-config.xml
> > Couldn't create renderer com.sun.facelets.component.RepeatRenderer
> >
> > -------------------------------------------------------
> > T E S T S
> > -------------------------------------------------------
> > Running org.apache.myfaces.trinidadinternal.metadata.RegionMetadataTest
> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.169 sec
> > Running
> >
> org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.table.TableSelectOneRendererTest
> > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.15 sec
> > Running org.apache.myfaces.trinidadinternal.el.FormatterMapTest
> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004 sec
> > Running org.apache.myfaces.trinidadinternal.util.TokenCacheTest
> > Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.007 sec
> > Running
> > org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.OutputUtilsTest
> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.003 sec
> > Running org.apache.myfaces.trinidadinternal.context.PartialTriggersTest
> > Feb 6, 2010 1:08:04 PM org.apache.myfaces.trinidad.util.ComponentUtils
> > _findRelativeComponentDeprecated
> > WARNING: Could not find the component with scopedId :::commandButton1
> from
> > UIXInput[UIXEditableFacesBeanImpl, id=input1] with the supported syntax.
> The
> > component was found with the deprecated syntax. Please use the supported
> > syntax.
> > Feb 6, 2010 1:08:04 PM org.apache.myfaces.trinidad.util.ComponentUtils
> > _findRelativeComponentDeprecated
> > WARNING: Could not find the component with scopedId :::commandButton1
> from
> > UIXInput[UIXEditableFacesBeanImpl, id=inputA] with the supported syntax.
> The
> > component was found with the deprecated syntax. Please use the supported
> > syntax.
> > Feb 6, 2010 1:08:04 PM
> > org.apache.myfaces.trinidadinternal.context.RequestContextImpl
> > addPartialTriggerListeners
> > WARNING: Could not find partial trigger commandButton1 from
> >
> UIXTable[org.apache.myfaces.trinidad.component.UIXTable$RowKeyFacesBeanWrapper@24d0d0
> ,
> > id=table1] with the supported partialTriggers syntax. The partial trigger
> > was found with the deprecated syntax. Please use the supported syntax.
> > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.05 sec
> > Running org.apache.myfaces.trinidadinternal.FacesConfigTest
> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec
> > Feb 6, 2010 1:08:04 PM
> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> > _warnAbsenceOfBundleKeys
> > WARNING: Keys missing in bundle:MessageBundle_ar are
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >
> > Feb 6, 2010 1:08:04 PM
> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> > _warnAbsenceOfBundleKeys
> > WARNING: Keys missing in bundle:MessageBundle_cs are
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >
> > Feb 6, 2010 1:08:04 PM
> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> > _warnAbsenceOfBundleKeys
> > WARNING: Keys missing in bundle:MessageBundle_da are
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >
> > Feb 6, 2010 1:08:04 PM
> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> > _warnAbsenceOfBundleKeys
> > WARNING: Keys missing in bundle:MessageBundle_de are
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >
> > Feb 6, 2010 1:08:04 PM
> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> > _warnAbsenceOfBundleKeys
> > WARNING: Keys missing in bundle:MessageBundle_el are
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >
> > Running org.apache.myfaces.trinidad.resource.MessageBundleTest
> > Feb 6, 2010 1:08:04 PM
> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> > _warnAbsenceOfBundleKeys
> > WARNING: Keys missing in bundle:MessageBundle_es are
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >
> > Feb 6, 2010 1:08:04 PM
> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> > _warnAbsenceOfBundleKeys
> > WARNING: Keys missing in bundle:MessageBundle_fi are
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >
> > Feb 6, 2010 1:08:04 PM
> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> > _warnAbsenceOfBundleKeys
> > WARNING: Keys missing in bundle:MessageBundle_fr are
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >
> > Feb 6, 2010 1:08:04 PM
> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> > _warnAbsenceOfBundleKeys
> > WARNING: Keys missing in bundle:MessageBundle_hu are
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >
> > Feb 6, 2010 1:08:04 PM
> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> > _warnAbsenceOfBundleKeys
> > WARNING: Keys missing in bundle:MessageBundle_it are
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >
> > Feb 6, 2010 1:08:04 PM
> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> > _warnAbsenceOfBundleKeys
> > WARNING: Keys missing in bundle:MessageBundle_iw are
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >
> > Feb 6, 2010 1:08:04 PM
> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> > _warnAbsenceOfBundleKeys
> > WARNING: Keys missing in bundle:MessageBundle_ja are
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >
> > Feb 6, 2010 1:08:04 PM
> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> > _warnAbsenceOfBundleKeys
> > WARNING: Keys missing in bundle:MessageBundle_ko are
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >
> > Feb 6, 2010 1:08:04 PM
> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> > _warnAbsenceOfBundleKeys
> > WARNING: Keys missing in bundle:MessageBundle_nl are
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >
> > Feb 6, 2010 1:08:04 PM
> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> > _warnAbsenceOfBundleKeys
> > WARNING: Keys missing in bundle:MessageBundle_no are
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >
> > Feb 6, 2010 1:08:04 PM
> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> > _warnAbsenceOfBundleKeys
> > WARNING: Keys missing in bundle:MessageBundle_pl are
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >
> > Feb 6, 2010 1:08:04 PM
> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> > _warnAbsenceOfBundleKeys
> > WARNING: Keys missing in bundle:MessageBundle_pt are
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >
> > Feb 6, 2010 1:08:04 PM
> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> > _warnAbsenceOfBundleKeys
> > WARNING: Keys missing in bundle:MessageBundle_pt_BR are
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >
> > Feb 6, 2010 1:08:05 PM
> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> > _warnAbsenceOfBundleKeys
> > WARNING: Keys missing in bundle:MessageBundle_ro are
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >
> > Feb 6, 2010 1:08:05 PM
> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> > _warnAbsenceOfBundleKeys
> > WARNING: Keys missing in bundle:MessageBundle_ru are
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >
> > Feb 6, 2010 1:08:05 PM
> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> > _warnAbsenceOfBundleKeys
> > WARNING: Keys missing in bundle:MessageBundle_sk are
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >
> > Feb 6, 2010 1:08:05 PM
> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> > _warnAbsenceOfBundleKeys
> > WARNING: Keys missing in bundle:MessageBundle_sv are
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >
> > Feb 6, 2010 1:08:05 PM
> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> > _warnAbsenceOfBundleKeys
> > WARNING: Keys missing in bundle:MessageBundle_th are
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >
> > Feb 6, 2010 1:08:05 PM
> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> > _warnAbsenceOfBundleKeys
> > WARNING: Keys missing in bundle:MessageBundle_tr are
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >
> > Feb 6, 2010 1:08:05 PM
> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> > _warnAbsenceOfBundleKeys
> > WARNING: Keys missing in bundle:MessageBundle_zh_CN are
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >
> > Feb 6, 2010 1:08:05 PM
> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> > _warnAbsenceOfBundleKeys
> > WARNING: Keys missing in bundle:MessageBundle_zh_TW are
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >
> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.343 sec
> > Running
> >
> org.apache.myfaces.trinidadinternal.style.xml.parse.StyleSheetNodeEqualsTest
> > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.03 sec
> > Running
> org.apache.myfaces.trinidadinternal.application.ViewHandlerImplTest
> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014 sec
> > Running org.apache.myfaces.trinidadinternal.el.TokenizerTest
> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.005 sec
> > Running org.apache.myfaces.trinidadinternal.util.SubKeyMapTest
> > Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.01 sec
> > Running org.apache.myfaces.trinidadinternal.renderkit.CoreRenderKitTest
> > Feb 6, 2010 1:08:06 PM
> org.apache.myfaces.trinidad.util.ExternalContextUtils
> > <clinit>
> > INFO: Portlet Environment Detected: 1.0
> > Tests run: 775, Failures: 0, Errors: 7, Skipped: 0, Time elapsed: 43.477
> sec
> > <<< FAILURE!
> > Running org.apache.myfaces.trinidadinternal.context.RequestContextTest
> > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.024 sec
> > Running
> > org.apache.myfaces.trinidadinternal.ui.laf.base.xhtml.XhtmlLafUtilsTest
> > Feb 6, 2010 1:08:48 PM
> > org.apache.myfaces.trinidadinternal.renderkit.FacesConfigInfo load
> > INFO: PARSING
> >
> file:/local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/classes/META-INF/faces-config.xml
> > Feb 6, 2010 1:08:48 PM
> > org.apache.myfaces.trinidadinternal.renderkit.FacesConfigInfo load
> > INFO: PARSING
> >
> jar:file:/export/home/mrmaven/.m2/repository/com/sun/facelets/jsf-facelets/1.1.14/jsf-facelets-1.1.14.jar!/META-INF/faces-config.xml
> > Couldn't create renderer com.sun.facelets.component.RepeatRenderer
> > Feb 6, 2010 1:08:48 PM
> > org.apache.myfaces.trinidadinternal.renderkit.FacesConfigInfo load
> > INFO: PARSING
> >
> file:/local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/classes/META-INF/faces-config.xml
> > Feb 6, 2010 1:08:48 PM
> > org.apache.myfaces.trinidadinternal.renderkit.FacesConfigInfo load
> > INFO: PARSING
> >
> jar:file:/export/home/mrmaven/.m2/repository/com/sun/facelets/jsf-facelets/1.1.14/jsf-facelets-1.1.14.jar!/META-INF/faces-config.xml
> > Couldn't create renderer com.sun.facelets.component.RepeatRenderer
> > Feb 6, 2010 1:08:48 PM
> org.apache.myfaces.trinidad.context.RenderingContext
> > attach
> > WARNING: Trying to attach RenderingContext to a thread that already had
> one.
> > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.224 sec
> > Running
> > org.apache.myfaces.trinidadinternal.validator.ByteLengthValidatorTest
> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.087 sec
> > Running org.apache.myfaces.trinidadinternal.taglib.TLDTest
> > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec
> >
> > Results :
> >
> > Tests in error:
> >
>  singleStepButtonBar-minimal(org.apache.myfaces.trinidadinternal.renderkit.RenderKitTestCase$RendererTest)
> >
>  singleStepButtonBar-minimalIE(org.apache.myfaces.trinidadinternal.renderkit.RenderKitTestCase$RendererTest)
> >
>  singleStepButtonBar-minimalIERtl(org.apache.myfaces.trinidadinternal.renderkit.RenderKitTestCase$RendererTest)
> >
>  singleStepButtonBar-minimalPPC(org.apache.myfaces.trinidadinternal.renderkit.RenderKitTestCase$RendererTest)
> >
>  singleStepButtonBar-minimalSaf(org.apache.myfaces.trinidadinternal.renderkit.RenderKitTestCase$RendererTest)
> >
>  singleStepButtonBar-minimalScrRdr(org.apache.myfaces.trinidadinternal.renderkit.RenderKitTestCase$RendererTest)
> >
>  singleStepButtonBar-minimalInacc(org.apache.myfaces.trinidadinternal.renderkit.RenderKitTestCase$RendererTest)
> >
> > Tests run: 821, Failures: 0, Errors: 7, Skipped: 0
> >
> > [INFO]
> > ------------------------------------------------------------------------
> > [ERROR] BUILD FAILURE
> > [INFO]
> > ------------------------------------------------------------------------
> > [INFO] There are test failures.
> >
> > Please refer to
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/surefire-reports
> > for the individual test results.
> > [INFO]
> > ------------------------------------------------------------------------
> > [INFO] For more information, run Maven with the -e switch
> > [INFO]
> > ------------------------------------------------------------------------
> > [INFO] Total time: 7 minutes 7 seconds
> > [INFO] Finished at: Sat Feb 06 13:08:49 UTC 2010
> > [INFO] Final Memory: 45M/107M
> > [INFO]
> > ------------------------------------------------------------------------
> >
> >
> ****************************************************************************
> >
> >
> >
>
>
>
> --
> Matthias Wessendorf
>
> blog: http://matthiaswessendorf.wordpress.com/
> sessions: http://www.slideshare.net/mwessendorf
> twitter: http://twitter.com/mwessendorf
>

Re: BUILD FAILURE: Apache MyFaces Trinidad 1.2

Posted by Matthias Wessendorf <ma...@apache.org>.
Hello Jeanne,

this all runs fine when I launch the embedded Jetty. Not sure if your config for
JDEV/WLS is correct

On Tue, Feb 9, 2010 at 2:11 AM, Jeanne Waldman
<je...@oracle.com> wrote:
> The 1.2.12.2 build works for me, but when I run, I get this error.
> Breadcrumbs.jspx runs, but index doesn't. panelPageSkinDemo doesn't, etc.
> ]] Root cause of ServletException.
> java.lang.ClassCastException:
> org.apache.myfaces.trinidadinternal.uinode.UIComponentUINode cannot be cast
> to org.apache.myfaces.trinidadinternal.uinode.UIXComponentUINode
>     at
> org.apache.myfaces.trinidadinternal.uinode.UIXComponentUINode.__getAdapter(UIXComponentUINode.java:439)
>     at
> org.apache.myfaces.trinidadinternal.uinode.UINodeRendererBase.encodeEnd(UINodeRendererBase.java:65)
>     at
> org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:794)
>     at
> org.apache.myfaces.trinidad.render.RenderUtils.encodeRecursive(RenderUtils.java:70)
>     at
> org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:410)
>     at
> org.apache.myfaces.trinidad.render.CoreRenderer.encodeAllChildren(CoreRenderer.java:432)
>     at
> org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.PanelPartialRootRenderer.renderContent(PanelPartialRootRenderer.java:69)
>     at
> org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.BodyRenderer.renderContent(BodyRenderer.java:142)
>     at
> org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.PanelPartialRootRenderer.encodeAll(PanelPartialRootRenderer.java:151)
>     at
> org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.BodyRenderer.encodeAll(BodyRenderer.java:78)
>     at
> org.apache.myfaces.trinidad.render.CoreRenderer.delegateRenderer(CoreRenderer.java:446)
>     at
> org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.DocumentRenderer.encodeAll(DocumentRenderer.java:80)
>     at
> org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:335)
>     at
> org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:794)
>     at
> org.apache.myfaces.trinidad.component.UIXComponentBase.__encodeRecursive(UIXComponentBase.java:1544)
>     at
> org.apache.myfaces.trinidad.component.UIXComponentBase.encodeAll(UIXComponentBase.java:814)
>     at javax.faces.component.UIComponent.encodeAll(UIComponent.java:942)
>     at
> com.sun.faces.application.ViewHandlerImpl.doRenderView(ViewHandlerImpl.java:271)
>     at
> com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:202)
>     at
> javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:189)
>     at
> org.apache.myfaces.portlet.faces.application.PortletViewHandlerImpl.renderView(PortletViewHandlerImpl.java:200)
>     at
> javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:189)
>     at
> org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:193)
>     at
> com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:109)
>     at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:100)
>     at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139)
>     at javax.faces.webapp.FacesServlet.service(FacesServlet.java:266)
>     at
> weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
>     at
> weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
>     at
> weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
>     at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
>     at
> weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
>     at
> org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:247)
>     at
> org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:157)
>     at
> org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
>     at
> weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
>     at
> org.apache.myfaces.trinidaddemo.webapp.RedirectFilter.doFilter(RedirectFilter.java:97)
>     at
> weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
>     at
> oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:146)
>     at
> weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
>     at
> weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
>     at
> weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
>     at
> weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3668)
>     at
> weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
>     at
> weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
>     at
> weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2263)
>     at
> weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2169)
>     at
> weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1445)
>     at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
>     at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
>
>
> Matthias Wessendorf wrote, On 2/8/2010 1:16 PM PT:
>
> same here...
>
> Maybe the continuum  needs to be rebooted ?
>
> -Matthias
>
> On Mon, Feb 8, 2010 at 8:46 PM, Dave Robinson <dr...@gmail.com> wrote:
>
>
> I grabbed latest and did a clean build and it built fine for me...
>
> On Sat, Feb 6, 2010 at 7:27 AM, Matthias Wessendorf <ma...@apache.org>
> wrote:
>
>
> Hello Matt,
>
> because of REV 904625.
> http://svn.apache.org/viewvc?view=revision&revision=904625
>
> the build is failing.
>
> Make sure you are using Java5 etc.
>
> Thanks!
> Matthias
>
> On Sat, Feb 6, 2010 at 2:09 PM, Continuum@myfaces.zones.apache.org
> <co...@myfaces.apache.org> wrote:
>
>
> Online report :
>
> http://myfaces.zones.apache.org:8080/continuum/buildResult.action?buildId=26039&projectId=48
>
> Build statistics:
>  State: Failed
>  Previous State: Ok
>  Started at: Sat 6 Feb 2010 13:01:39 +0000
>  Finished at: Sat 6 Feb 2010 13:08:50 +0000
>  Total time: 7m 11s
>  Build Trigger: Forced
>  Build Number: 343
>  Exit code: 1
>  Building machine hostname: myfaces.zones.apache.org
>  Operating system : SunOS(unknown)
>  Java Home version :         java version "1.5.0_22"
>         Java(TM) 2 Runtime Environment, Standard Edition (build
> 1.5.0_22-b03)
>         Java HotSpot(TM) Server VM (build 1.5.0_22-b03, mixed mode)
>        Builder version :
>         Maven version: 2.0.10
>         Java version: 1.5.0_22
>         OS name: "sunos" version: "5.10" arch: "x86" Family: "unix"
>
>
> ****************************************************************************
> SCM Changes:
>
> ****************************************************************************
> Changed: mcooper @ Fri 29 Jan 2010 21:19:14 +0000
> Comment: TRINIDAD-1696 acc (screen reader mode) layout tables should
> include
> role="presentation"
>
> Thanks to Dave Robinson for the patch:
>
> When using trh:tableLayout in our page to layout some UI components, it
> gives warning during Accessibility testing:
> "WARNING - This layout Table could be confused for a data table by
> Screen
> Readers"
> From the html perspective, this warning can be fixed by setting
> role="presentation" on the html table element.
>
> We can add role="presentation" to layout tables with the following
> addition
> to
>
>
> org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.OutputTextUtils.renderLayoutTableAttributes():
>
>  if (CoreRenderer.isScreenReaderMode(arc))
>  {
>   ResponseWriter writer = context.getResponseWriter();
>   writer.writeAttribute("datatable", "0", null);
>
> --> writer.writeAttribute("role", "presentation", null); <--
>
>  }
> Files changed:
>
>  /myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/xhtml/OutputUtils.java
> ( 904625 )
>
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/columnGroup-minimalScrRdr-golden.xml
> ( 904625 )
>
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/editableTable-minimalScrRdr-golden.xml
> ( 904625 )
>
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputColor-minimalScrRdr-golden.xml
> ( 904625 )
>
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputDate-minimalScrRdr-golden.xml
> ( 904625 )
>
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputFile-minimalScrRdr-golden.xml
> ( 904625 )
>
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputListOfValues-minimalScrRdr-golden.xml
> ( 904625 )
>
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputNumberSpinbox-minimalScrRdr-golden.xml
> ( 904625 )
>
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputText-minimalScrRdr-golden.xml
> ( 904625 )
>
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputText-rows-minimalScrRdr-golden.xml
> ( 904625 )
>
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/messages-minimalScrRdr-golden.xml
> ( 904625 )
>
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/messagesError-minimalScrRdr-golden.xml
> ( 904625 )
>
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/messagesFatal-minimalScrRdr-golden.xml
> ( 904625 )
>
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/messagesInfo-minimalScrRdr-golden.xml
> ( 904625 )
>
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/messagesWarn-minimalScrRdr-golden.xml
> ( 904625 )
>
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/navigationPaneBar-minimalScrRdr-golden.xml
> ( 904625 )
>
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/navigationPaneButtons-minimalScrRdr-golden.xml
> ( 904625 )
>
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/navigationPaneList-minimalScrRdr-golden.xml
> ( 904625 )
>
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/navigationPaneTabs-minimalScrRdr-golden.xml
> ( 904625 )
>
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelBorderLayout-minimalScrRdr-golden.xml
> ( 904625 )
>
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelBox-minimalScrRdr-golden.xml
> ( 904625 )
>
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelButtonBar-minimalScrRdr-golden.xml
> ( 904625 )
>
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelFormLayout-minimalScrRdr-golden.xml
> ( 904625 )
>
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelGroupLayout-minimalScrRdr-golden.xml
> ( 904625 )
>
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelHorizontalLayout-minimalScrRdr-golden.xml
> ( 904625 )
>
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelHorizontalLayout-separator-minimalScrRdr-golden.xml
> ( 904625 )
>
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelLabelAndMessage-facet-minimalScrRdr-golden.xml
> ( 904625 )
>
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelLabelAndMessage-minimalScrRdr-golden.xml
> ( 904625 )
>
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelList-minimalScrRdr-golden.xml
> ( 904625 )
>
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelPage-facets-minimalScrRdr-golden.xml
> ( 904625 )
>
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelPageHeader-minimalScrRdr-golden.xml
> ( 904625 )
>
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/rowLayout-minimalScrRdr-golden.xml
> ( 904625 )
>
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectBooleanCheckbox-minimalScrRdr-golden.xml
> ( 904625 )
>
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectBooleanRadio-minimalScrRdr-golden.xml
> ( 904625 )
>
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectManyCheckbox-minimalScrRdr-golden.xml
> ( 904625 )
>
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectManyListBox-minimalScrRdr-golden.xml
> ( 904625 )
>
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectManyShuttle-minimalScrRdr-golden.xml
> ( 904625 )
>
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectOneChoice-minimalScrRdr-golden.xml
> ( 904625 )
>
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectOneListbox-minimalScrRdr-golden.xml
> ( 904625 )
>
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectOneRadio-minimalScrRdr-golden.xml
> ( 904625 )
>
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectOrderShuttle-minimalScrRdr-golden.xml
> ( 904625 )
>
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectRangeChoiceBar-minimalScrRdr-golden.xml
> ( 904625 )
>
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectRangeChoiceBarBig-minimalScrRdr-golden.xml
> ( 904625 )
>
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/singleStepButtonBar-minimalScrRdr-golden.xml
> ( 904625 )
>
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/table-minimalScrRdr-golden.xml
> ( 904625 )
>
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/tableSelectMany-minimalScrRdr-golden.xml
> ( 904625 )
>
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/tableSelectOne-minimalScrRdr-golden.xml
> ( 904625 )
>
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/train-minimalScrRdr-golden.xml
> ( 904625 )
>
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/treeTable-minimalScrRdr-golden.xml
> ( 904625 )
>
> Changed: matzew @ Sat 30 Jan 2010 11:17:15 +0000
> Comment: added a jetty profile for the new awesome showcase
> Files changed:
>
>  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/pom.xml
> ( 904764 )
>
> Changed: jwaldman @ Tue 2 Feb 2010 18:17:22 +0000
> Comment: TRINIDAD-1702 performance: decrease memory of
> FileSystemStyleCache
> by reusing CSSStyle objects.
> Files changed:
>
>  /myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/style/cache/FileSystemStyleCache.java
> ( 905740 )
>
> Changed: matzew @ Tue 2 Feb 2010 19:09:07 +0000
> Comment: TRINIDAD-983 - Sortable model for localized text
>
>
> ported patch from Toma havelka to trinidad/jsf 1.2
> Files changed:
>
>  /myfaces/trinidad/trunk/trinidad-api/src/main/java/org/apache/myfaces/trinidad/model/SortableModel.java
> ( 905749 )
>
> Changed: ckormos @ Wed 3 Feb 2010 20:59:09 +0000
> Comment: fixed [TRINIDAD-1706] - Trinidad components showcase demo app
> doesn't include java sources in packaged war
> Files changed:
>
>  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/pom.xml
> ( 906239 )
>
> Changed: ckormos @ Wed 3 Feb 2010 21:07:19 +0000
> Comment: [trinidad components showcase] :
>    -  removed usage of commons logging, replaced with logging with
> java.util.
>    - added arg to sitemap generator to be able to specify base URL on
> execution.
> Files changed:
>
>  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/java/org/apache/myfaces/trinidaddemo/ComponentDemoRegistry.java
> ( 906243 )
>
>  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/java/org/apache/myfaces/trinidaddemo/NavigationHandlerPhaseListener.java
> ( 906243 )
>
>  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/java/org/apache/myfaces/trinidaddemo/support/PrettyUrlFilter.java
> ( 906243 )
>
>  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/java/org/apache/myfaces/trinidaddemo/support/impl/ComponentVariantDemoDescriptionProvider.java
> ( 906243 )
>
>  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/java/org/apache/myfaces/trinidaddemo/support/util/SitemapGenerator.java
> ( 906243 )
>
> Changed: bsullivan @ Thu 4 Feb 2010 22:44:48 +0000
> Comment: Make sure that the ID_KEY is present in the
> UIXFacesBeanImpl.java
> key set when the UIXFacesBeanImpl is delegating the storageof the ID
> property back to the UIXComponentBase.
> Files changed:
>
>  /myfaces/trinidad/trunk/trinidad-api/src/main/java/org/apache/myfaces/trinidad/bean/FacesBeanImpl.java
> ( 906703 )
>
>  /myfaces/trinidad/trunk/trinidad-api/src/main/java/org/apache/myfaces/trinidad/component/UIXFacesBeanImpl.java
> ( 906703 )
>
>  /myfaces/trinidad/trunk/trinidad-api/src/main/java/org/apache/myfaces/trinidad/util/CollectionUtils.java
> ( 906703 )
>
> Changed: matzew @ Fri 5 Feb 2010 07:25:50 +0000
> Comment: added getServerInfo() call
> Files changed:
>
>  /myfaces/trinidad/trunk/trinidad-api/src/main/java/org/apache/myfaces/trinidad/util/ExternalContextUtils.java
> ( 906828 )
>
> Changed: matzew @ Sat 6 Feb 2010 12:05:38 +0000
> Comment: updated scm url
> Files changed:
>  /myfaces/trinidad/trunk/pom.xml ( 907204 )
>
>
> ****************************************************************************
> Dependencies Changes:
>
> ****************************************************************************
> No dependencies changed
>
>
> ****************************************************************************
> Test Summary:
>
> ****************************************************************************
> Tests: 1319
> Failures: 7
> Total time: 52037
>
>
> ****************************************************************************
> Output:
>
> ****************************************************************************
> [INFO] Scanning for projects...
> [INFO] Reactor build order: [INFO]   Apache MyFaces Trinidad 1.2
> [INFO]   Apache MyFaces Trinidad Build
> [INFO]   Apache MyFaces Trinidad API
> [INFO]   Apache MyFaces Trinidad Impl
> [INFO]   Apache MyFaces Trinidad Examples
> [INFO]   Apache MyFaces Trinidad Blank Demo
> [INFO]   Apache MyFaces Trinidad Demo
> [INFO]   Apache MyFaces Trinidad Components Showcase
> [INFO] Searching repository for plugin with prefix: 'source'.
> [INFO] org.apache.maven.plugins: checking for updates from
> apache.snapshots
> [INFO] org.codehaus.mojo: checking for updates from apache.snapshots
> [INFO]
> ------------------------------------------------------------------------
> [INFO] Building Apache MyFaces Trinidad 1.2
> [INFO]    task-segment: [clean, install, source:jar, deploy]
> [INFO]
> ------------------------------------------------------------------------
> [INFO] [clean:clean]
> [INFO] Deleting directory
> /local/continuum-1.1-beta-2/working-directory/48/target
> [INFO] [xrts:generate-sources {execution: default}]
> [INFO] Setting property: classpath.resource.loader.class =>
> 'org.codehaus.plexus.velocity.ContextClassLoaderResourceLoader'.
> [INFO] Setting property: velocimacro.messages.on => 'false'.
> [INFO] Setting property: resource.loader => 'classpath'.
> [INFO] Setting property: resource.manager.logwhenfound => 'false'.
> [INFO] [remote-resources:process {execution: default}]
> [INFO] [xrts:generate-test-sources {execution: default}]
> [INFO] [site:attach-descriptor]
> [INFO] Unable to load parent project from a relative path: Could not
> find
> the model file
> '/local/continuum-1.1-beta-2/working-directory/48/../pom.xml'. for
> project
> unknown
> [INFO] Parent project loaded from repository.
> [INFO] Preparing source:jar
> [WARNING] Removing: jar from forked lifecycle, to prevent recursive
> invocation.
> [INFO] [xrts:generate-sources {execution: default}]
> [INFO] [source:jar {execution: attach-source}]
> [INFO] [install:install]
> [INFO] Installing
> /local/continuum-1.1-beta-2/working-directory/48/pom.xml
> to
>
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad/1.2.14-SNAPSHOT/trinidad-1.2.14-SNAPSHOT.pom
> [INFO] Preparing source:jar
> [WARNING] Removing: jar from forked lifecycle, to prevent recursive
> invocation.
> [INFO] [xrts:generate-sources {execution: default}]
> [INFO] [source:jar]
> [INFO] [xrts:generate-sources {execution: default}]
> [INFO] [remote-resources:process {execution: default}]
> [INFO] [xrts:generate-test-sources {execution: default}]
> [INFO] [site:attach-descriptor]
> [INFO] Unable to load parent project from a relative path: Could not
> find
> the model file
> '/local/continuum-1.1-beta-2/working-directory/48/../pom.xml'. for
> project
> unknown
> [INFO] Parent project loaded from repository.
> [INFO] Preparing source:jar
> [WARNING] Removing: jar from forked lifecycle, to prevent recursive
> invocation.
> [INFO] [xrts:generate-sources {execution: default}]
> [INFO] [source:jar {execution: attach-source}]
> [INFO] [install:install]
> [INFO] Installing
> /local/continuum-1.1-beta-2/working-directory/48/pom.xml
> to
>
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad/1.2.14-SNAPSHOT/trinidad-1.2.14-SNAPSHOT.pom
> [INFO] [deploy:deploy]
> [INFO] Retrieving previous build number from apache-maven-snapshots
> Uploading:
>
> scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad/1.2.14-SNAPSHOT/trinidad-1.2.14-SNAPSHOT.pom
> [INFO] Retrieving previous metadata from apache-maven-snapshots
> [INFO] Uploading repository metadata for: 'snapshot
> org.apache.myfaces.trinidad:trinidad:1.2.14-SNAPSHOT'
> [INFO] Uploading site descriptor for trinidad 1.2.14-SNAPSHOT site.xml
> [INFO] Retrieving previous metadata from apache-maven-snapshots
> [INFO] Uploading repository metadata for: 'artifact
> org.apache.myfaces.trinidad:trinidad'
> [INFO]
> ------------------------------------------------------------------------
> [INFO] Building Apache MyFaces Trinidad Build
> [INFO]    task-segment: [clean, install, source:jar, deploy]
> [INFO]
> ------------------------------------------------------------------------
> [INFO] [clean:clean]
> [INFO] Deleting directory
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target
> [INFO] [xrts:generate-sources {execution: default}]
> [INFO] [remote-resources:process {execution: default}]
> [INFO] [faces:generate-master-faces-config {execution: default}]
> [INFO] Generating META-INF/maven-faces-plugin/faces-config.xml
> [INFO] [resources:resources]
> [INFO] Using default encoding to copy filtered resources.
> [INFO] [compiler:compile]
> [INFO] No sources to compile
> [INFO] [xrts:generate-test-sources {execution: default}]
> [INFO] [resources:testResources]
> [INFO] Using default encoding to copy filtered resources.
> [INFO] [compiler:testCompile]
> [INFO] No sources to compile
> [INFO] [surefire:test]
> [INFO] Surefire report directory:
>
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/surefire-reports
>
> -------------------------------------------------------
> T E S T S
> -------------------------------------------------------
> There are no tests to run.
>
> Results :
>
> Tests run: 0, Failures: 0, Errors: 0, Skipped: 0
>
> [INFO] [jar:jar]
> [INFO] Building jar:
>
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT.jar
> [INFO] Preparing source:jar
> [WARNING] Removing: jar from forked lifecycle, to prevent recursive
> invocation.
> [INFO] [xrts:generate-sources {execution: default}]
> [INFO] [source:jar {execution: attach-source}]
> [INFO] Building jar:
>
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> [INFO] [install:install]
> [INFO] Installing
>
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT.jar
> to
>
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT.jar
> [INFO] Installing
>
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> to
>
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> [INFO] Preparing source:jar
> [WARNING] Removing: jar from forked lifecycle, to prevent recursive
> invocation.
> [INFO] [xrts:generate-sources {execution: default}]
> [INFO] [source:jar]
> [INFO] Building jar:
>
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> [INFO] [xrts:generate-sources {execution: default}]
> [INFO] [remote-resources:process {execution: default}]
> [INFO] [faces:generate-master-faces-config {execution: default}]
> [INFO] Generating META-INF/maven-faces-plugin/faces-config.xml
> [INFO] [resources:resources]
> [INFO] Using default encoding to copy filtered resources.
> [INFO] [compiler:compile]
> [INFO] No sources to compile
> [INFO] [xrts:generate-test-sources {execution: default}]
> [INFO] [resources:testResources]
> [INFO] Using default encoding to copy filtered resources.
> [INFO] [compiler:testCompile]
> [INFO] No sources to compile
> [INFO] [surefire:test]
> [INFO] Surefire report directory:
>
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/surefire-reports
>
> -------------------------------------------------------
> T E S T S
> -------------------------------------------------------
> There are no tests to run.
>
> Results :
>
> Tests run: 0, Failures: 0, Errors: 0, Skipped: 0
>
> [INFO] [jar:jar]
> [INFO] Building jar:
>
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT.jar
> [INFO] Preparing source:jar
> [WARNING] Removing: jar from forked lifecycle, to prevent recursive
> invocation.
> [INFO] [xrts:generate-sources {execution: default}]
> [INFO] [source:jar {execution: attach-source}]
> [INFO] Building jar:
>
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> [INFO] [install:install]
> [INFO] Installing
>
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT.jar
> to
>
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT.jar
> [INFO] Installing
>
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> to
>
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> [INFO] Installing
>
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> to
>
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> [INFO] Installing
>
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> to
>
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> [INFO] [deploy:deploy]
> [INFO] Retrieving previous build number from apache-maven-snapshots
> Uploading:
>
> scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT.jar
> [INFO] Retrieving previous metadata from apache-maven-snapshots
> [INFO] Uploading repository metadata for: 'snapshot
> org.apache.myfaces.trinidad:trinidad-build:1.2.14-SNAPSHOT'
> [INFO] Retrieving previous metadata from apache-maven-snapshots
> [INFO] Uploading repository metadata for: 'artifact
> org.apache.myfaces.trinidad:trinidad-build'
> [INFO] Uploading project information for trinidad-build 1.2.14-SNAPSHOT
> [INFO] Retrieving previous build number from apache-maven-snapshots
> Uploading:
>
> scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> [INFO] Retrieving previous build number from apache-maven-snapshots
> Uploading:
>
> scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> [INFO] Retrieving previous build number from apache-maven-snapshots
> Uploading:
>
> scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> [INFO]
> ------------------------------------------------------------------------
> [INFO] Building Apache MyFaces Trinidad API
> [INFO]    task-segment: [clean, install, source:jar, deploy]
> [INFO]
> ------------------------------------------------------------------------
> [INFO] [clean:clean]
> [INFO] Deleting directory
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target
> [INFO] [xrts:generate-sources {execution: default}]
> [INFO] Generating 54 XRTS bundles to
>
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/maven-xrts-plugin/main/java
> [INFO] [faces:generate-components {execution: default}]
> [INFO] Generated 133 component(s)
> [INFO] [i18n:generate-locale-elements {execution: default}]
> [INFO] Generating LocaleElements
> [INFO] [remote-resources:process {execution: default}]
> [INFO] [resources:resources]
> [INFO] Using default encoding to copy filtered resources.
> [INFO] [compiler:compile]
> [INFO] Compiling 405 source files to
>
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/classes
> [INFO] [xrts:generate-test-sources {execution: default}]
> [INFO] Generating 1 XRTS bundles to
>
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/maven-xrts-plugin/test/java
> [INFO] [resources:testResources]
> [INFO] Using default encoding to copy filtered resources.
> [INFO] [compiler:testCompile]
> [INFO] Compiling 93 source files to
>
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/test-classes
> [INFO] [surefire:test]
> [INFO] Surefire report directory:
>
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/surefire-reports
>
> -------------------------------------------------------
> T E S T S
> -------------------------------------------------------
> Running org.apache.myfaces.trinidad.component.AddRemoveTest
> Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.081
> sec
> Running org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest
>
> descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.159
> sec
> Running org.apache.myfaces.trinidad.util.ServiceTest
> Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.005
> sec
> Running org.apache.myfaces.trinidad.component.UIXSelectManyTest
> Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.387
> sec
> Running
>
> org.apache.myfaces.trinidad.component.core.layout.CoreShowDetailHeaderTest
> Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.044
> sec
> Running org.apache.myfaces.trinidad.component.html.HtmlTableLayoutTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018
> sec
> Running org.apache.myfaces.trinidad.validator.LengthValidatorTest
> Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.028
> sec
> Running org.apache.myfaces.trinidad.bean.util.ValueMapTest
> Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.01 sec
> Running org.apache.myfaces.trinidad.component.html.HtmlScriptTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.201
> sec
> Running org.apache.myfaces.trinidad.component.core.CoreFormTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.022
> sec
> Running
>
> org.apache.myfaces.trinidad.component.core.input.CoreSelectBooleanCheckboxTest
> Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.019
> sec
> Running org.apache.myfaces.trinidad.component.html.HtmlCellFormatTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018
> sec
> Running org.apache.myfaces.trinidad.validator.LongRangeValidatorTest
> Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015
> sec
> Running
> org.apache.myfaces.trinidad.validator.DateRestrictionValidatorTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.022
> sec
> Running
> org.apache.myfaces.trinidad.component.core.layout.CorePanelRadioTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.022
> sec
> Running org.apache.myfaces.trinidad.component.UIXTreeTest
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014
> sec
> Running org.apache.myfaces.trinidad.component.UIXSwitcherTest
> Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014
> sec
> Running
> org.apache.myfaces.trinidad.component.core.layout.CorePanelBoxTest
> Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018
> sec
> Running org.apache.myfaces.trinidad.convert.ColorConverterTest
> Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.179
> sec
> Running
> org.apache.myfaces.trinidad.component.core.nav.CoreBreadCrumbsTest
> Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.039
> sec
> Running org.apache.myfaces.trinidad.util.Base64InputStreamTest
> Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.009
> sec
> Running org.apache.myfaces.trinidad.bean.PropertyKeyTest
> Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.003
> sec
> Running org.apache.myfaces.trinidad.component.core.data.CoreColumnTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.026
> sec
> Running
> org.apache.myfaces.trinidad.component.core.output.CoreSeparatorTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018
> sec
> Running
> org.apache.myfaces.trinidad.component.core.output.CoreOutputTextTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.023
> sec
> Running org.apache.myfaces.trinidad.component.html.HtmlFrameTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017
> sec
> Running org.apache.myfaces.trinidad.util.FastMessageFormatTest
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec
> Running org.apache.myfaces.trinidad.validator.RegExpValidatorTest
> Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015
> sec
> Running org.apache.myfaces.trinidad.bean.FacesBeanImplTest
> Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.13
> sec
> Running
> org.apache.myfaces.trinidad.component.core.layout.CoreShowDetailTest
> Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018
> sec
> Running org.apache.myfaces.trinidad.component.UIXProcessTest
> Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017
> sec
> Running
> org.apache.myfaces.trinidad.component.core.layout.CorePanelSideBarTest
> Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016
> sec
> Running
> org.apache.myfaces.trinidad.component.html.HtmlFrameBorderLayoutTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.022
> sec
> Running
> org.apache.myfaces.trinidad.convert.TrinidadDateTimeConverterTest
> Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.242
> sec
> Running org.apache.myfaces.trinidad.component.html.HtmlHtmlTest
> Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.012
> sec
> Running org.apache.myfaces.trinidad.component.UIXSelectOrderTest
> Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016
> sec
> Running org.apache.myfaces.trinidad.render.RenderUtilsTest
>  Found PropertyDescriptor java.beans.PropertyDescriptor@7bf628e6Feb 6,
> 2010
> 1:04:40 PM org.apache.myfaces.trinidad.util.ComponentUtils
> _findRelativeComponentDeprecated
> WARNING: Could not find the component with scopedId :::button1 from
> UIXInput[UIXEditableFacesBeanImpl, id=input1] with the supported syntax.
> The
> component was found with the deprecated syntax. Please use the supported
> syntax.
> Feb 6, 2010 1:04:40 PM org.apache.myfaces.trinidad.render.RenderUtils
> getRelativeId
> WARNING: Could not find the component with scopedId commandButton1 from
> RenderUtilsTest$TestNamingContainer[UIXFacesBeanImpl, id=table1] with
> the
> supported syntax. The component was found with the deprecated syntax.
> Please
> use the supported syntax.
> Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.01 sec
> Running org.apache.myfaces.trinidad.validator.DateTimeRangeValidatorTest
> Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.071
> sec
> Running
> org.apache.myfaces.trinidad.resource.AggregatingResourceLoaderTest
> Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014
> sec
> Running
> org.apache.myfaces.trinidad.component.core.layout.CorePanelListTest
> Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018
> sec
> Running
> org.apache.myfaces.trinidad.component.core.layout.CorePanelHeaderTest
> Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017
> sec
> Running org.apache.myfaces.trinidad.model.RowKeySetImplTest
> Tests run: 14, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.026
> sec
> Running org.apache.myfaces.trinidad.util.Base64OutputStreamTest
> Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.011
> sec
> Running org.apache.myfaces.trinidad.util.ArrayMapTest
> Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004
> sec
> Running org.apache.myfaces.trinidad.convert.JsfNumberConverterTest
> resource bundle javax.faces.Messages could not be found
> Tests run: 16, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.029
> sec
> Running
>
> org.apache.myfaces.trinidad.component.core.layout.CorePanelGroupLayoutTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.025
> sec
> Running org.apache.myfaces.trinidad.validator.ByteLengthValidatorTest
> Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014
> sec
> Running org.apache.myfaces.trinidad.component.core.nav.CoreTrainTest
> Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.002
> sec
> Running org.apache.myfaces.trinidad.bean.TypeTest
> Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.003
> sec
> Running org.apache.myfaces.trinidad.util.ListFromCollectionTest
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004
> sec
> Running
>
> org.apache.myfaces.trinidad.component.core.data.CoreSelectRangeChoiceBarTest
> Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.022
> sec
> Running org.apache.myfaces.trinidad.component.core.output.CoreSpacerTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.224
> sec
> Running
> org.apache.myfaces.trinidad.component.core.layout.CorePanelAccordionTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018
> sec
> Running org.apache.myfaces.trinidad.component.FindComponentTest
> Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.013
> sec
> Running org.apache.myfaces.trinidad.model.RowKeySetTreeImplTest
>
> descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> Tests run: 13, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.039
> sec
> Running org.apache.myfaces.trinidad.model.SortableModelTest
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=name
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=name
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=name
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=name
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=name
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=object
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7ac113d1descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=name
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=name
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=name
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=name
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=name
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=name
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=name
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=name
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.064
> sec
> Running org.apache.myfaces.trinidad.validator.DoubleRangeValidatorTest
> Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016
> sec
> Running org.apache.myfaces.trinidad.component.UIXShowDetailTest
> Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016
> sec
> Running org.apache.myfaces.trinidad.component.UIXInputTest
> Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.05 sec
> Running org.apache.myfaces.trinidad.convert.TrinidadNumberConverterTest
> Tests run: 18, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.034
> sec
> Running org.apache.myfaces.trinidad.convert.JsfDateTimeConverterTest
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.059
> sec
> Running
>
> org.apache.myfaces.trinidad.component.core.layout.CorePanelBorderLayoutTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.028
> sec
> Running org.apache.myfaces.trinidad.util.FindRelativeComponentTest
>  Found PropertyDescriptor java.beans.PropertyDescriptor@e6e3b8feFeb 6,
> 2010
> 1:04:41 PM org.apache.myfaces.trinidad.util.ComponentUtils
> _findRelativeComponentDeprecated
> WARNING: Could not find the component with scopedId :::commandButton1
> from
> UIXInput[UIXEditableFacesBeanImpl, id=input1] with the supported syntax.
> The
> component was found with the deprecated syntax. Please use the supported
> syntax.
> Feb 6, 2010 1:04:41 PM org.apache.myfaces.trinidad.util.ComponentUtils
> _findRelativeComponentDeprecated
> WARNING: Could not find the component with scopedId :::commandButton1
> from
> UIXInput[UIXEditableFacesBeanImpl, id=inputA] with the supported syntax.
> The
> component was found with the deprecated syntax. Please use the supported
> syntax.
> Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015
> sec
> Running
> org.apache.myfaces.trinidad.component.core.layout.CorePanelChoiceTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018
> sec
> Running org.apache.myfaces.trinidad.component.html.HtmlRowLayoutTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017
> sec
> Running org.apache.myfaces.trinidad.component.UIXTableTest
> Feb 6, 2010 1:04:41 PM org.apache.myfaces.trinidad.bean.PropertyKey
> saveValue
> WARNING: Unserializable
> value:SortableModel[javax.faces.model.ListDataModel@985fa2] for
> key:PropertyKey[value,11]
> Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.058
> sec
> Running org.apache.myfaces.trinidad.resource.CachingResourceLoaderTest
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.005
> sec
> Running
> org.apache.myfaces.trinidad.component.core.input.CoreInputHiddenTest
> Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.033
> sec
>
> Results :
>
> Tests run: 498, Failures: 0, Errors: 0, Skipped: 0
>
> [INFO] [jar:jar]
> [INFO] Building jar:
>
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT.jar
> [INFO] Preparing source:jar
> [WARNING] Removing: jar from forked lifecycle, to prevent recursive
> invocation.
> [INFO] [xrts:generate-sources {execution: default}]
> [INFO] Nothing to generate - all XRTS bundles are up to date
> [INFO] [faces:generate-components {execution: default}]
> [INFO] Generated 133 component(s)
> [INFO] [i18n:generate-locale-elements {execution: default}]
> [INFO] Generating LocaleElements
> [INFO] [source:jar {execution: attach-source}]
> [INFO] Building jar:
>
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> [INFO] [jar:test-jar {execution: default}]
> [INFO] Building jar:
>
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-tests.jar
> [INFO] [install:install]
> [INFO] Installing
>
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT.jar
> to
>
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT.jar
> [INFO] Installing
>
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> to
>
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> [INFO] Installing
>
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-tests.jar
> to
>
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-tests.jar
> [INFO] Preparing source:jar
> [WARNING] Removing: jar from forked lifecycle, to prevent recursive
> invocation.
> [INFO] [xrts:generate-sources {execution: default}]
> [INFO] Nothing to generate - all XRTS bundles are up to date
> [INFO] [faces:generate-components {execution: default}]
> [INFO] Generated 133 component(s)
> [INFO] [i18n:generate-locale-elements {execution: default}]
> [INFO] Generating LocaleElements
> [INFO] [source:jar]
> [INFO] Building jar:
>
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> [INFO] [xrts:generate-sources {execution: default}]
> [INFO] Nothing to generate - all XRTS bundles are up to date
> [INFO] [faces:generate-components {execution: default}]
> [INFO] Generated 133 component(s)
> [INFO] [i18n:generate-locale-elements {execution: default}]
> [INFO] Generating LocaleElements
> [INFO] [remote-resources:process {execution: default}]
> [INFO] [resources:resources]
> [INFO] Using default encoding to copy filtered resources.
> [INFO] [compiler:compile]
> [INFO] Compiling 133 source files to
>
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/classes
> [INFO] [xrts:generate-test-sources {execution: default}]
> [INFO] Nothing to generate - all XRTS bundles are up to date
> [INFO] [resources:testResources]
> [INFO] Using default encoding to copy filtered resources.
> [INFO] [compiler:testCompile]
> [INFO] Nothing to compile - all classes are up to date
> [INFO] [surefire:test]
> [INFO] Surefire report directory:
>
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/surefire-reports
>
> -------------------------------------------------------
> T E S T S
> -------------------------------------------------------
> Running org.apache.myfaces.trinidad.component.AddRemoveTest
> Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.092
> sec
> Running org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest
>
> descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
> Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.148
> sec
> Running org.apache.myfaces.trinidad.util.ServiceTest
> Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.005
> sec
> Running org.apache.myfaces.trinidad.component.UIXSelectManyTest
> Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.104
> sec
> Running
>
> org.apache.myfaces.trinidad.component.core.layout.CoreShowDetailHeaderTest
> Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.036
> sec
> Running org.apache.myfaces.trinidad.component.html.HtmlTableLayoutTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016
> sec
> Running org.apache.myfaces.trinidad.validator.LengthValidatorTest
> Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.026
> sec
> Running org.apache.myfaces.trinidad.bean.util.ValueMapTest
> Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.008
> sec
> Running org.apache.myfaces.trinidad.component.html.HtmlScriptTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014
> sec
> Running org.apache.myfaces.trinidad.component.core.CoreFormTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.019
> sec
> Running
>
> org.apache.myfaces.trinidad.component.core.input.CoreSelectBooleanCheckboxTest
> Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018
> sec
> Running org.apache.myfaces.trinidad.component.html.HtmlCellFormatTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016
> sec
> Running org.apache.myfaces.trinidad.validator.LongRangeValidatorTest
> Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.013
> sec
> Running
> org.apache.myfaces.trinidad.validator.DateRestrictionValidatorTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.025
> sec
> Running
> org.apache.myfaces.trinidad.component.core.layout.CorePanelRadioTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.02 sec
> Running org.apache.myfaces.trinidad.component.UIXTreeTest
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.012
> sec
> Running org.apache.myfaces.trinidad.component.UIXSwitcherTest
> Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.013
> sec
> Running
> org.apache.myfaces.trinidad.component.core.layout.CorePanelBoxTest
> Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016
> sec
> Running org.apache.myfaces.trinidad.convert.ColorConverterTest
> Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017
> sec
> Running
> org.apache.myfaces.trinidad.component.core.nav.CoreBreadCrumbsTest
> Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.032
> sec
> Running org.apache.myfaces.trinidad.util.Base64InputStreamTest
> Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.008
> sec
> Running org.apache.myfaces.trinidad.bean.PropertyKeyTest
> Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004
> sec
> Running org.apache.myfaces.trinidad.component.core.data.CoreColumnTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.023
> sec
> Running
> org.apache.myfaces.trinidad.component.core.output.CoreSeparatorTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016
> sec
> Running
> org.apache.myfaces.trinidad.component.core.output.CoreOutputTextTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.023
> sec
> Running org.apache.myfaces.trinidad.component.html.HtmlFrameTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.076
> sec
> Running org.apache.myfaces.trinidad.util.FastMessageFormatTest
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001
> sec
> Running org.apache.myfaces.trinidad.validator.RegExpValidatorTest
> Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.012
> sec
> Running org.apache.myfaces.trinidad.bean.FacesBeanImplTest
> Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.032
> sec
> Running
> org.apache.myfaces.trinidad.component.core.layout.CoreShowDetailTest
> Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017
> sec
> Running org.apache.myfaces.trinidad.component.UIXProcessTest
> Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015
> sec
> Running
> org.apache.myfaces.trinidad.component.core.layout.CorePanelSideBarTest
> Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015
> sec
> Running
> org.apache.myfaces.trinidad.component.html.HtmlFrameBorderLayoutTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.019
> sec
> Running
> org.apache.myfaces.trinidad.convert.TrinidadDateTimeConverterTest
> Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.183
> sec
> Running org.apache.myfaces.trinidad.component.html.HtmlHtmlTest
> Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.01 sec
> Running org.apache.myfaces.trinidad.component.UIXSelectOrderTest
> Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015
> sec
>  Found PropertyDescriptor java.beans.PropertyDescriptor@7bf628e6Feb 6,
> 2010
> 1:05:21 PM org.apache.myfaces.trinidad.util.ComponentUtils
> _findRelativeComponentDeprecated
> WARNING: Could not find the component with scopedId :::button1 from
> UIXInput[UIXEditableFacesBeanImpl, id=input1] with the supported syntax.
> The
> component was found with the deprecated syntax. Please use the supported
> syntax.
> Feb 6, 2010 1:05:21 PM org.apache.myfaces.trinidad.render.RenderUtils
> getRelativeId
> WARNING: Could not find the component with scopedId commandButton1 from
> RenderUtilsTest$TestNamingContainer[UIXFacesBeanImpl, id=table1] with
> the
> supported syntax. The component was found with the deprecated syntax.
> Please
> use the supported syntax.
> Running org.apache.myfaces.trinidad.render.RenderUtilsTest
> Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.007
> sec
> Running org.apache.myfaces.trinidad.validator.DateTimeRangeValidatorTest
> Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.958
> sec
> Running
> org.apache.myfaces.trinidad.resource.AggregatingResourceLoaderTest
> Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.208
> sec
> Running
> org.apache.myfaces.trinidad.component.core.layout.CorePanelListTest
> Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.166
> sec
> Running
> org.apache.myfaces.trinidad.component.core.layout.CorePanelHeaderTest
> Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.163
> sec
> Running org.apache.myfaces.trinidad.model.RowKeySetImplTest
> Tests run: 14, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.581
> sec
> Running org.apache.myfaces.trinidad.util.Base64OutputStreamTest
> Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.171
> sec
> Running org.apache.myfaces.trinidad.util.ArrayMapTest
> Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.059
> sec
> Running org.apache.myfaces.trinidad.convert.JsfNumberConverterTest
> resource bundle javax.faces.Messages could not be found
> Tests run: 16, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.661
> sec
> Running
>
> org.apache.myfaces.trinidad.component.core.layout.CorePanelGroupLayoutTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.345
> sec
> Running org.apache.myfaces.trinidad.validator.ByteLengthValidatorTest
> Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.296
> sec
> Running org.apache.myfaces.trinidad.component.core.nav.CoreTrainTest
> Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.055
> sec
> Running org.apache.myfaces.trinidad.bean.TypeTest
> Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.068
> sec
> Running org.apache.myfaces.trinidad.util.ListFromCollectionTest
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.095
> sec
> Running
>
> org.apache.myfaces.trinidad.component.core.data.CoreSelectRangeChoiceBarTest
> Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.117
> sec
> Running org.apache.myfaces.trinidad.component.core.output.CoreSpacerTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.055
> sec
> Running
> org.apache.myfaces.trinidad.component.core.layout.CorePanelAccordionTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015
> sec
> Running org.apache.myfaces.trinidad.component.FindComponentTest
> Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.011
> sec
> Running org.apache.myfaces.trinidad.model.RowKeySetTreeImplTest
>
> descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> name=kids
>  Found BeanInfo java.beans.GenericBeanInfo@87c801
> Tests run: 13, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.029
> sec
> Running org.apache.myfaces.trinidad.model.SortableModelTest
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=name
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=name
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=name
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=name
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=name
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=object
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@7ac113d1descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=name
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=name
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=name
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=name
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=name
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=name
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=name
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=name
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>  Found PropertyDescriptor
>
> java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> name=age
>  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014
> sec
> Running org.apache.myfaces.trinidad.validator.DoubleRangeValidatorTest
> Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.01 sec
> Running org.apache.myfaces.trinidad.component.UIXShowDetailTest
> Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.013
> sec
> Running org.apache.myfaces.trinidad.component.UIXInputTest
> Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.042
> sec
> Running org.apache.myfaces.trinidad.convert.TrinidadNumberConverterTest
> Tests run: 18, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.028
> sec
> Running org.apache.myfaces.trinidad.convert.JsfDateTimeConverterTest
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.006
> sec
> Running
>
> org.apache.myfaces.trinidad.component.core.layout.CorePanelBorderLayoutTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.02 sec
> Running org.apache.myfaces.trinidad.util.FindRelativeComponentTest
>  Found PropertyDescriptor java.beans.PropertyDescriptor@e6e3b8feFeb 6,
> 2010
> 1:05:26 PM org.apache.myfaces.trinidad.util.ComponentUtils
> _findRelativeComponentDeprecated
> WARNING: Could not find the component with scopedId :::commandButton1
> from
> UIXInput[UIXEditableFacesBeanImpl, id=input1] with the supported syntax.
> The
> component was found with the deprecated syntax. Please use the supported
> syntax.
> Feb 6, 2010 1:05:26 PM org.apache.myfaces.trinidad.util.ComponentUtils
> _findRelativeComponentDeprecated
> WARNING: Could not find the component with scopedId :::commandButton1
> from
> UIXInput[UIXEditableFacesBeanImpl, id=inputA] with the supported syntax.
> The
> component was found with the deprecated syntax. Please use the supported
> syntax.
> Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.013
> sec
> Running
> org.apache.myfaces.trinidad.component.core.layout.CorePanelChoiceTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017
> sec
> Running org.apache.myfaces.trinidad.component.html.HtmlRowLayoutTest
> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014
> sec
> Running org.apache.myfaces.trinidad.component.UIXTableTest
> Feb 6, 2010 1:05:26 PM org.apache.myfaces.trinidad.bean.PropertyKey
> saveValue
> WARNING: Unserializable
> value:SortableModel[javax.faces.model.ListDataModel@1112776] for
> key:PropertyKey[value,11]
> Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.112
> sec
> Running org.apache.myfaces.trinidad.resource.CachingResourceLoaderTest
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004
> sec
> Running
> org.apache.myfaces.trinidad.component.core.input.CoreInputHiddenTest
> Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.012
> sec
>
> Results :
>
> Tests run: 498, Failures: 0, Errors: 0, Skipped: 0
>
> [INFO] [jar:jar]
> [INFO] Building jar:
>
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT.jar
> [INFO] Preparing source:jar
> [WARNING] Removing: jar from forked lifecycle, to prevent recursive
> invocation.
> [INFO] [xrts:generate-sources {execution: default}]
> [INFO] Nothing to generate - all XRTS bundles are up to date
> [INFO] [faces:generate-components {execution: default}]
> [INFO] Generated 133 component(s)
> [INFO] [i18n:generate-locale-elements {execution: default}]
> [INFO] Generating LocaleElements
> [INFO] [source:jar {execution: attach-source}]
> [INFO] Building jar:
>
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> [INFO] [jar:test-jar {execution: default}]
> [INFO] Building jar:
>
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-tests.jar
> [INFO] [install:install]
> [INFO] Installing
>
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT.jar
> to
>
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT.jar
> [INFO] Installing
>
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> to
>
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> [INFO] Installing
>
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-tests.jar
> to
>
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-tests.jar
> [INFO] Installing
>
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> to
>
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> [INFO] Installing
>
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> to
>
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> [INFO] Installing
>
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-tests.jar
> to
>
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-tests.jar
> [INFO] [deploy:deploy]
> [INFO] Retrieving previous build number from apache-maven-snapshots
> Uploading:
>
> scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT.jar
> [INFO] Retrieving previous metadata from apache-maven-snapshots
> [INFO] Uploading repository metadata for: 'artifact
> org.apache.myfaces.trinidad:trinidad-api'
> [INFO] Uploading project information for trinidad-api 1.2.14-SNAPSHOT
> [INFO] Retrieving previous metadata from apache-maven-snapshots
> [INFO] Uploading repository metadata for: 'snapshot
> org.apache.myfaces.trinidad:trinidad-api:1.2.14-SNAPSHOT'
> [INFO] Retrieving previous build number from apache-maven-snapshots
> Uploading:
>
> scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> [INFO] Retrieving previous build number from apache-maven-snapshots
> Uploading:
>
> scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-tests.jar
> [INFO] Retrieving previous build number from apache-maven-snapshots
> Uploading:
>
> scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> [INFO] Retrieving previous build number from apache-maven-snapshots
> Uploading:
>
> scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> [INFO] Retrieving previous build number from apache-maven-snapshots
> Uploading:
>
> scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-tests.jar
> [INFO]
> ------------------------------------------------------------------------
> [INFO] Building Apache MyFaces Trinidad Impl
> [INFO]    task-segment: [clean, install, source:jar, deploy]
> [INFO]
> ------------------------------------------------------------------------
> [INFO] [clean:clean]
> [INFO] Deleting directory
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target
> [INFO] [faces:generate-jsp-taglibs {execution: default}]
> [INFO] Generated 143 JSP tag(s)
> [INFO] [faces:generate-facelets-taglibs {execution: default}]
> [INFO] Generated META-INF/tr.taglib.xml
> [INFO] Generated META-INF/trh.taglib.xml
> [INFO] [faces:generate-renderer-map {execution: default}]
> [INFO] [i18n:generate-locale-elements {execution: default}]
> [INFO] Generating LocaleElements
> [INFO] [i18n:generate-javascript-locales {execution: default}]
> [INFO] Generating Javascript Locales
> [INFO] [javascript:reduce-javascript {execution: default}]
> [INFO] [xrts:generate-sources {execution: default}]
> [INFO] Generating 59 XRTS bundles to
>
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/maven-xrts-plugin/main/java
> [INFO] [faces:generate-faces-config {execution: default}]
> [INFO] Generated META-INF/faces-config.xml
> [INFO] [remote-resources:process {execution: default}]
> [INFO] [resources:resources]
> [INFO] Using default encoding to copy filtered resources.
> [INFO] [compiler:compile]
> [INFO] Compiling 1170 source files to
>
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/classes
> [INFO] [xrts:generate-test-sources {execution: default}]
> [INFO] [resources:testResources]
> [INFO] Using default encoding to copy filtered resources.
> [INFO] snapshot
> org.apache.myfaces.trinidad:trinidad-api:1.2.14-SNAPSHOT:
> checking for updates from java.net
> [INFO] snapshot
> org.apache.myfaces.trinidad:trinidad-api:1.2.14-SNAPSHOT:
> checking for updates from apache.snapshots
> [INFO] [compiler:testCompile]
> [INFO] Compiling 50 source files to
>
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/test-classes
> [INFO] [surefire:test]
> [INFO] Surefire report directory:
>
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/surefire-reports
> Feb 6, 2010 1:07:56 PM
> org.apache.myfaces.trinidadinternal.renderkit.FacesConfigInfo load
> INFO: PARSING
>
> file:/local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/classes/META-INF/faces-config.xml
> Feb 6, 2010 1:07:57 PM
> org.apache.myfaces.trinidadinternal.renderkit.FacesConfigInfo load
> INFO: PARSING
>
> jar:file:/export/home/mrmaven/.m2/repository/com/sun/facelets/jsf-facelets/1.1.14/jsf-facelets-1.1.14.jar!/META-INF/faces-config.xml
> Couldn't create renderer com.sun.facelets.component.RepeatRenderer
>
> -------------------------------------------------------
> T E S T S
> -------------------------------------------------------
> Running org.apache.myfaces.trinidadinternal.metadata.RegionMetadataTest
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.169
> sec
> Running
>
> org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.table.TableSelectOneRendererTest
> Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.15 sec
> Running org.apache.myfaces.trinidadinternal.el.FormatterMapTest
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004
> sec
> Running org.apache.myfaces.trinidadinternal.util.TokenCacheTest
> Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.007
> sec
> Running
> org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.OutputUtilsTest
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.003
> sec
> Running org.apache.myfaces.trinidadinternal.context.PartialTriggersTest
> Feb 6, 2010 1:08:04 PM org.apache.myfaces.trinidad.util.ComponentUtils
> _findRelativeComponentDeprecated
> WARNING: Could not find the component with scopedId :::commandButton1
> from
> UIXInput[UIXEditableFacesBeanImpl, id=input1] with the supported syntax.
> The
> component was found with the deprecated syntax. Please use the supported
> syntax.
> Feb 6, 2010 1:08:04 PM org.apache.myfaces.trinidad.util.ComponentUtils
> _findRelativeComponentDeprecated
> WARNING: Could not find the component with scopedId :::commandButton1
> from
> UIXInput[UIXEditableFacesBeanImpl, id=inputA] with the supported syntax.
> The
> component was found with the deprecated syntax. Please use the supported
> syntax.
> Feb 6, 2010 1:08:04 PM
> org.apache.myfaces.trinidadinternal.context.RequestContextImpl
> addPartialTriggerListeners
> WARNING: Could not find partial trigger commandButton1 from
>
> UIXTable[org.apache.myfaces.trinidad.component.UIXTable$RowKeyFacesBeanWrapper@24d0d0,
> id=table1] with the supported partialTriggers syntax. The partial
> trigger
> was found with the deprecated syntax. Please use the supported syntax.
> Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.05 sec
> Running org.apache.myfaces.trinidadinternal.FacesConfigTest
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001
> sec
> Feb 6, 2010 1:08:04 PM
> org.apache.myfaces.trinidad.resource.MessageBundleTest
> _warnAbsenceOfBundleKeys
> WARNING: Keys missing in bundle:MessageBundle_ar are
>
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>
> Feb 6, 2010 1:08:04 PM
> org.apache.myfaces.trinidad.resource.MessageBundleTest
> _warnAbsenceOfBundleKeys
> WARNING: Keys missing in bundle:MessageBundle_cs are
>
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>
> Feb 6, 2010 1:08:04 PM
> org.apache.myfaces.trinidad.resource.MessageBundleTest
> _warnAbsenceOfBundleKeys
> WARNING: Keys missing in bundle:MessageBundle_da are
>
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>
> Feb 6, 2010 1:08:04 PM
> org.apache.myfaces.trinidad.resource.MessageBundleTest
> _warnAbsenceOfBundleKeys
> WARNING: Keys missing in bundle:MessageBundle_de are
>
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>
> Feb 6, 2010 1:08:04 PM
> org.apache.myfaces.trinidad.resource.MessageBundleTest
> _warnAbsenceOfBundleKeys
> WARNING: Keys missing in bundle:MessageBundle_el are
>
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>
> Running org.apache.myfaces.trinidad.resource.MessageBundleTest
> Feb 6, 2010 1:08:04 PM
> org.apache.myfaces.trinidad.resource.MessageBundleTest
> _warnAbsenceOfBundleKeys
> WARNING: Keys missing in bundle:MessageBundle_es are
>
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>
> Feb 6, 2010 1:08:04 PM
> org.apache.myfaces.trinidad.resource.MessageBundleTest
> _warnAbsenceOfBundleKeys
> WARNING: Keys missing in bundle:MessageBundle_fi are
>
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>
> Feb 6, 2010 1:08:04 PM
> org.apache.myfaces.trinidad.resource.MessageBundleTest
> _warnAbsenceOfBundleKeys
> WARNING: Keys missing in bundle:MessageBundle_fr are
>
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>
> Feb 6, 2010 1:08:04 PM
> org.apache.myfaces.trinidad.resource.MessageBundleTest
> _warnAbsenceOfBundleKeys
> WARNING: Keys missing in bundle:MessageBundle_hu are
>
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>
> Feb 6, 2010 1:08:04 PM
> org.apache.myfaces.trinidad.resource.MessageBundleTest
> _warnAbsenceOfBundleKeys
> WARNING: Keys missing in bundle:MessageBundle_it are
>
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>
> Feb 6, 2010 1:08:04 PM
> org.apache.myfaces.trinidad.resource.MessageBundleTest
> _warnAbsenceOfBundleKeys
> WARNING: Keys missing in bundle:MessageBundle_iw are
>
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>
> Feb 6, 2010 1:08:04 PM
> org.apache.myfaces.trinidad.resource.MessageBundleTest
> _warnAbsenceOfBundleKeys
> WARNING: Keys missing in bundle:MessageBundle_ja are
>
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>
> Feb 6, 2010 1:08:04 PM
> org.apache.myfaces.trinidad.resource.MessageBundleTest
> _warnAbsenceOfBundleKeys
> WARNING: Keys missing in bundle:MessageBundle_ko are
>
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>
> Feb 6, 2010 1:08:04 PM
> org.apache.myfaces.trinidad.resource.MessageBundleTest
> _warnAbsenceOfBundleKeys
> WARNING: Keys missing in bundle:MessageBundle_nl are
>
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>
> Feb 6, 2010 1:08:04 PM
> org.apache.myfaces.trinidad.resource.MessageBundleTest
> _warnAbsenceOfBundleKeys
> WARNING: Keys missing in bundle:MessageBundle_no are
>
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>
> Feb 6, 2010 1:08:04 PM
> org.apache.myfaces.trinidad.resource.MessageBundleTest
> _warnAbsenceOfBundleKeys
> WARNING: Keys missing in bundle:MessageBundle_pl are
>
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>
> Feb 6, 2010 1:08:04 PM
> org.apache.myfaces.trinidad.resource.MessageBundleTest
> _warnAbsenceOfBundleKeys
> WARNING: Keys missing in bundle:MessageBundle_pt are
>
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>
> Feb 6, 2010 1:08:04 PM
> org.apache.myfaces.trinidad.resource.MessageBundleTest
> _warnAbsenceOfBundleKeys
> WARNING: Keys missing in bundle:MessageBundle_pt_BR are
>
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>
> Feb 6, 2010 1:08:05 PM
> org.apache.myfaces.trinidad.resource.MessageBundleTest
> _warnAbsenceOfBundleKeys
> WARNING: Keys missing in bundle:MessageBundle_ro are
>
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>
> Feb 6, 2010 1:08:05 PM
> org.apache.myfaces.trinidad.resource.MessageBundleTest
> _warnAbsenceOfBundleKeys
> WARNING: Keys missing in bundle:MessageBundle_ru are
>
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>
> Feb 6, 2010 1:08:05 PM
> org.apache.myfaces.trinidad.resource.MessageBundleTest
> _warnAbsenceOfBundleKeys
> WARNING: Keys missing in bundle:MessageBundle_sk are
>
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>
> Feb 6, 2010 1:08:05 PM
> org.apache.myfaces.trinidad.resource.MessageBundleTest
> _warnAbsenceOfBundleKeys
> WARNING: Keys missing in bundle:MessageBundle_sv are
>
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>
> Feb 6, 2010 1:08:05 PM
> org.apache.myfaces.trinidad.resource.MessageBundleTest
> _warnAbsenceOfBundleKeys
> WARNING: Keys missing in bundle:MessageBundle_th are
>
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>
> Feb 6, 2010 1:08:05 PM
> org.apache.myfaces.trinidad.resource.MessageBundleTest
> _warnAbsenceOfBundleKeys
> WARNING: Keys missing in bundle:MessageBundle_tr are
>
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>
> Feb 6, 2010 1:08:05 PM
> org.apache.myfaces.trinidad.resource.MessageBundleTest
> _warnAbsenceOfBundleKeys
> WARNING: Keys missing in bundle:MessageBundle_zh_CN are
>
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>
> Feb 6, 2010 1:08:05 PM
> org.apache.myfaces.trinidad.resource.MessageBundleTest
> _warnAbsenceOfBundleKeys
> WARNING: Keys missing in bundle:MessageBundle_zh_TW are
>
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.343
> sec
> Running
>
> org.apache.myfaces.trinidadinternal.style.xml.parse.StyleSheetNodeEqualsTest
> Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.03 sec
> Running
> org.apache.myfaces.trinidadinternal.application.ViewHandlerImplTest
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014
> sec
> Running org.apache.myfaces.trinidadinternal.el.TokenizerTest
> Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.005
> sec
> Running org.apache.myfaces.trinidadinternal.util.SubKeyMapTest
> Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.01
> sec
> Running org.apache.myfaces.trinidadinternal.renderkit.CoreRenderKitTest
> Feb 6, 2010 1:08:06 PM
> org.apache.myfaces.trinidad.util.ExternalContextUtils
> <clinit>
> INFO: Portlet Environment Detected: 1.0
> Tests run: 775, Failures: 0, Errors: 7, Skipped: 0, Time elapsed: 43.477
> sec
> <<< FAILURE!
> Running org.apache.myfaces.trinidadinternal.context.RequestContextTest
> Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.024
> sec
> Running
> org.apache.myfaces.trinidadinternal.ui.laf.base.xhtml.XhtmlLafUtilsTest
> Feb 6, 2010 1:08:48 PM
> org.apache.myfaces.trinidadinternal.renderkit.FacesConfigInfo load
> INFO: PARSING
>
> file:/local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/classes/META-INF/faces-config.xml
> Feb 6, 2010 1:08:48 PM
> org.apache.myfaces.trinidadinternal.renderkit.FacesConfigInfo load
> INFO: PARSING
>
> jar:file:/export/home/mrmaven/.m2/repository/com/sun/facelets/jsf-facelets/1.1.14/jsf-facelets-1.1.14.jar!/META-INF/faces-config.xml
> Couldn't create renderer com.sun.facelets.component.RepeatRenderer
> Feb 6, 2010 1:08:48 PM
> org.apache.myfaces.trinidadinternal.renderkit.FacesConfigInfo load
> INFO: PARSING
>
> file:/local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/classes/META-INF/faces-config.xml
> Feb 6, 2010 1:08:48 PM
> org.apache.myfaces.trinidadinternal.renderkit.FacesConfigInfo load
> INFO: PARSING
>
> jar:file:/export/home/mrmaven/.m2/repository/com/sun/facelets/jsf-facelets/1.1.14/jsf-facelets-1.1.14.jar!/META-INF/faces-config.xml
> Couldn't create renderer com.sun.facelets.component.RepeatRenderer
> Feb 6, 2010 1:08:48 PM
> org.apache.myfaces.trinidad.context.RenderingContext
> attach
> WARNING: Trying to attach RenderingContext to a thread that already had
> one.
> Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.224
> sec
> Running
> org.apache.myfaces.trinidadinternal.validator.ByteLengthValidatorTest
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.087
> sec
> Running org.apache.myfaces.trinidadinternal.taglib.TLDTest
> Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001
> sec
>
> Results :
>
> Tests in error:
>
>  singleStepButtonBar-minimal(org.apache.myfaces.trinidadinternal.renderkit.RenderKitTestCase$RendererTest)
>
>  singleStepButtonBar-minimalIE(org.apache.myfaces.trinidadinternal.renderkit.RenderKitTestCase$RendererTest)
>
>  singleStepButtonBar-minimalIERtl(org.apache.myfaces.trinidadinternal.renderkit.RenderKitTestCase$RendererTest)
>
>  singleStepButtonBar-minimalPPC(org.apache.myfaces.trinidadinternal.renderkit.RenderKitTestCase$RendererTest)
>
>  singleStepButtonBar-minimalSaf(org.apache.myfaces.trinidadinternal.renderkit.RenderKitTestCase$RendererTest)
>
>  singleStepButtonBar-minimalScrRdr(org.apache.myfaces.trinidadinternal.renderkit.RenderKitTestCase$RendererTest)
>
>  singleStepButtonBar-minimalInacc(org.apache.myfaces.trinidadinternal.renderkit.RenderKitTestCase$RendererTest)
>
> Tests run: 821, Failures: 0, Errors: 7, Skipped: 0
>
> [INFO]
> ------------------------------------------------------------------------
> [ERROR] BUILD FAILURE
> [INFO]
> ------------------------------------------------------------------------
> [INFO] There are test failures.
>
> Please refer to
>
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/surefire-reports
> for the individual test results.
> [INFO]
> ------------------------------------------------------------------------
> [INFO] For more information, run Maven with the -e switch
> [INFO]
> ------------------------------------------------------------------------
> [INFO] Total time: 7 minutes 7 seconds
> [INFO] Finished at: Sat Feb 06 13:08:49 UTC 2010
> [INFO] Final Memory: 45M/107M
> [INFO]
> ------------------------------------------------------------------------
>
>
> ****************************************************************************
>
>
>
>
>
> --
> Matthias Wessendorf
>
> blog: http://matthiaswessendorf.wordpress.com/
> sessions: http://www.slideshare.net/mwessendorf
> twitter: http://twitter.com/mwessendorf
>
>
>
>
>



-- 
Matthias Wessendorf

blog: http://matthiaswessendorf.wordpress.com/
sessions: http://www.slideshare.net/mwessendorf
twitter: http://twitter.com/mwessendorf

Re: BUILD FAILURE: Apache MyFaces Trinidad 1.2

Posted by Matthias Wessendorf <ma...@apache.org>.
same here...

Maybe the continuum  needs to be rebooted ?

-Matthias

On Mon, Feb 8, 2010 at 8:46 PM, Dave Robinson <dr...@gmail.com> wrote:
> I grabbed latest and did a clean build and it built fine for me...
>
> On Sat, Feb 6, 2010 at 7:27 AM, Matthias Wessendorf <ma...@apache.org>
> wrote:
>>
>> Hello Matt,
>>
>> because of REV 904625.
>> http://svn.apache.org/viewvc?view=revision&revision=904625
>>
>> the build is failing.
>>
>> Make sure you are using Java5 etc.
>>
>> Thanks!
>> Matthias
>>
>> On Sat, Feb 6, 2010 at 2:09 PM, Continuum@myfaces.zones.apache.org
>> <co...@myfaces.apache.org> wrote:
>> > Online report :
>> >
>> > http://myfaces.zones.apache.org:8080/continuum/buildResult.action?buildId=26039&projectId=48
>> >
>> > Build statistics:
>> >  State: Failed
>> >  Previous State: Ok
>> >  Started at: Sat 6 Feb 2010 13:01:39 +0000
>> >  Finished at: Sat 6 Feb 2010 13:08:50 +0000
>> >  Total time: 7m 11s
>> >  Build Trigger: Forced
>> >  Build Number: 343
>> >  Exit code: 1
>> >  Building machine hostname: myfaces.zones.apache.org
>> >  Operating system : SunOS(unknown)
>> >  Java Home version :         java version "1.5.0_22"
>> >         Java(TM) 2 Runtime Environment, Standard Edition (build
>> > 1.5.0_22-b03)
>> >         Java HotSpot(TM) Server VM (build 1.5.0_22-b03, mixed mode)
>> >        Builder version :
>> >         Maven version: 2.0.10
>> >         Java version: 1.5.0_22
>> >         OS name: "sunos" version: "5.10" arch: "x86" Family: "unix"
>> >
>> >
>> > ****************************************************************************
>> > SCM Changes:
>> >
>> > ****************************************************************************
>> > Changed: mcooper @ Fri 29 Jan 2010 21:19:14 +0000
>> > Comment: TRINIDAD-1696 acc (screen reader mode) layout tables should
>> > include
>> > role="presentation"
>> >
>> > Thanks to Dave Robinson for the patch:
>> >
>> > When using trh:tableLayout in our page to layout some UI components, it
>> > gives warning during Accessibility testing:
>> > "WARNING - This layout Table could be confused for a data table by
>> > Screen
>> > Readers"
>> > From the html perspective, this warning can be fixed by setting
>> > role="presentation" on the html table element.
>> >
>> > We can add role="presentation" to layout tables with the following
>> > addition
>> > to
>> >
>> >
>> > org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.OutputTextUtils.renderLayoutTableAttributes():
>> >
>> >  if (CoreRenderer.isScreenReaderMode(arc))
>> >  {
>> >   ResponseWriter writer = context.getResponseWriter();
>> >   writer.writeAttribute("datatable", "0", null);
>> >
>> > --> writer.writeAttribute("role", "presentation", null); <--
>> >
>> >  }
>> > Files changed:
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/xhtml/OutputUtils.java
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/columnGroup-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/editableTable-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputColor-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputDate-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputFile-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputListOfValues-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputNumberSpinbox-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputText-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputText-rows-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/messages-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/messagesError-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/messagesFatal-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/messagesInfo-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/messagesWarn-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/navigationPaneBar-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/navigationPaneButtons-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/navigationPaneList-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/navigationPaneTabs-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelBorderLayout-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelBox-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelButtonBar-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelFormLayout-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelGroupLayout-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelHorizontalLayout-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelHorizontalLayout-separator-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelLabelAndMessage-facet-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelLabelAndMessage-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelList-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelPage-facets-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelPageHeader-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/rowLayout-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectBooleanCheckbox-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectBooleanRadio-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectManyCheckbox-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectManyListBox-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectManyShuttle-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectOneChoice-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectOneListbox-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectOneRadio-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectOrderShuttle-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectRangeChoiceBar-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectRangeChoiceBarBig-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/singleStepButtonBar-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/table-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/tableSelectMany-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/tableSelectOne-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/train-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/treeTable-minimalScrRdr-golden.xml
>> > ( 904625 )
>> >
>> > Changed: matzew @ Sat 30 Jan 2010 11:17:15 +0000
>> > Comment: added a jetty profile for the new awesome showcase
>> > Files changed:
>> >
>> >  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/pom.xml
>> > ( 904764 )
>> >
>> > Changed: jwaldman @ Tue 2 Feb 2010 18:17:22 +0000
>> > Comment: TRINIDAD-1702 performance: decrease memory of
>> > FileSystemStyleCache
>> > by reusing CSSStyle objects.
>> > Files changed:
>> >
>> >  /myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/style/cache/FileSystemStyleCache.java
>> > ( 905740 )
>> >
>> > Changed: matzew @ Tue 2 Feb 2010 19:09:07 +0000
>> > Comment: TRINIDAD-983 - Sortable model for localized text
>> >
>> >
>> > ported patch from Toma havelka to trinidad/jsf 1.2
>> > Files changed:
>> >
>> >  /myfaces/trinidad/trunk/trinidad-api/src/main/java/org/apache/myfaces/trinidad/model/SortableModel.java
>> > ( 905749 )
>> >
>> > Changed: ckormos @ Wed 3 Feb 2010 20:59:09 +0000
>> > Comment: fixed [TRINIDAD-1706] - Trinidad components showcase demo app
>> > doesn't include java sources in packaged war
>> > Files changed:
>> >
>> >  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/pom.xml
>> > ( 906239 )
>> >
>> > Changed: ckormos @ Wed 3 Feb 2010 21:07:19 +0000
>> > Comment: [trinidad components showcase] :
>> >    -  removed usage of commons logging, replaced with logging with
>> > java.util.
>> >    - added arg to sitemap generator to be able to specify base URL on
>> > execution.
>> > Files changed:
>> >
>> >  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/java/org/apache/myfaces/trinidaddemo/ComponentDemoRegistry.java
>> > ( 906243 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/java/org/apache/myfaces/trinidaddemo/NavigationHandlerPhaseListener.java
>> > ( 906243 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/java/org/apache/myfaces/trinidaddemo/support/PrettyUrlFilter.java
>> > ( 906243 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/java/org/apache/myfaces/trinidaddemo/support/impl/ComponentVariantDemoDescriptionProvider.java
>> > ( 906243 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/java/org/apache/myfaces/trinidaddemo/support/util/SitemapGenerator.java
>> > ( 906243 )
>> >
>> > Changed: bsullivan @ Thu 4 Feb 2010 22:44:48 +0000
>> > Comment: Make sure that the ID_KEY is present in the
>> > UIXFacesBeanImpl.java
>> > key set when the UIXFacesBeanImpl is delegating the storageof the ID
>> > property back to the UIXComponentBase.
>> > Files changed:
>> >
>> >  /myfaces/trinidad/trunk/trinidad-api/src/main/java/org/apache/myfaces/trinidad/bean/FacesBeanImpl.java
>> > ( 906703 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-api/src/main/java/org/apache/myfaces/trinidad/component/UIXFacesBeanImpl.java
>> > ( 906703 )
>> >
>> >  /myfaces/trinidad/trunk/trinidad-api/src/main/java/org/apache/myfaces/trinidad/util/CollectionUtils.java
>> > ( 906703 )
>> >
>> > Changed: matzew @ Fri 5 Feb 2010 07:25:50 +0000
>> > Comment: added getServerInfo() call
>> > Files changed:
>> >
>> >  /myfaces/trinidad/trunk/trinidad-api/src/main/java/org/apache/myfaces/trinidad/util/ExternalContextUtils.java
>> > ( 906828 )
>> >
>> > Changed: matzew @ Sat 6 Feb 2010 12:05:38 +0000
>> > Comment: updated scm url
>> > Files changed:
>> >  /myfaces/trinidad/trunk/pom.xml ( 907204 )
>> >
>> >
>> > ****************************************************************************
>> > Dependencies Changes:
>> >
>> > ****************************************************************************
>> > No dependencies changed
>> >
>> >
>> > ****************************************************************************
>> > Test Summary:
>> >
>> > ****************************************************************************
>> > Tests: 1319
>> > Failures: 7
>> > Total time: 52037
>> >
>> >
>> > ****************************************************************************
>> > Output:
>> >
>> > ****************************************************************************
>> > [INFO] Scanning for projects...
>> > [INFO] Reactor build order: [INFO]   Apache MyFaces Trinidad 1.2
>> > [INFO]   Apache MyFaces Trinidad Build
>> > [INFO]   Apache MyFaces Trinidad API
>> > [INFO]   Apache MyFaces Trinidad Impl
>> > [INFO]   Apache MyFaces Trinidad Examples
>> > [INFO]   Apache MyFaces Trinidad Blank Demo
>> > [INFO]   Apache MyFaces Trinidad Demo
>> > [INFO]   Apache MyFaces Trinidad Components Showcase
>> > [INFO] Searching repository for plugin with prefix: 'source'.
>> > [INFO] org.apache.maven.plugins: checking for updates from
>> > apache.snapshots
>> > [INFO] org.codehaus.mojo: checking for updates from apache.snapshots
>> > [INFO]
>> > ------------------------------------------------------------------------
>> > [INFO] Building Apache MyFaces Trinidad 1.2
>> > [INFO]    task-segment: [clean, install, source:jar, deploy]
>> > [INFO]
>> > ------------------------------------------------------------------------
>> > [INFO] [clean:clean]
>> > [INFO] Deleting directory
>> > /local/continuum-1.1-beta-2/working-directory/48/target
>> > [INFO] [xrts:generate-sources {execution: default}]
>> > [INFO] Setting property: classpath.resource.loader.class =>
>> > 'org.codehaus.plexus.velocity.ContextClassLoaderResourceLoader'.
>> > [INFO] Setting property: velocimacro.messages.on => 'false'.
>> > [INFO] Setting property: resource.loader => 'classpath'.
>> > [INFO] Setting property: resource.manager.logwhenfound => 'false'.
>> > [INFO] [remote-resources:process {execution: default}]
>> > [INFO] [xrts:generate-test-sources {execution: default}]
>> > [INFO] [site:attach-descriptor]
>> > [INFO] Unable to load parent project from a relative path: Could not
>> > find
>> > the model file
>> > '/local/continuum-1.1-beta-2/working-directory/48/../pom.xml'. for
>> > project
>> > unknown
>> > [INFO] Parent project loaded from repository.
>> > [INFO] Preparing source:jar
>> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
>> > invocation.
>> > [INFO] [xrts:generate-sources {execution: default}]
>> > [INFO] [source:jar {execution: attach-source}]
>> > [INFO] [install:install]
>> > [INFO] Installing
>> > /local/continuum-1.1-beta-2/working-directory/48/pom.xml
>> > to
>> >
>> > /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad/1.2.14-SNAPSHOT/trinidad-1.2.14-SNAPSHOT.pom
>> > [INFO] Preparing source:jar
>> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
>> > invocation.
>> > [INFO] [xrts:generate-sources {execution: default}]
>> > [INFO] [source:jar]
>> > [INFO] [xrts:generate-sources {execution: default}]
>> > [INFO] [remote-resources:process {execution: default}]
>> > [INFO] [xrts:generate-test-sources {execution: default}]
>> > [INFO] [site:attach-descriptor]
>> > [INFO] Unable to load parent project from a relative path: Could not
>> > find
>> > the model file
>> > '/local/continuum-1.1-beta-2/working-directory/48/../pom.xml'. for
>> > project
>> > unknown
>> > [INFO] Parent project loaded from repository.
>> > [INFO] Preparing source:jar
>> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
>> > invocation.
>> > [INFO] [xrts:generate-sources {execution: default}]
>> > [INFO] [source:jar {execution: attach-source}]
>> > [INFO] [install:install]
>> > [INFO] Installing
>> > /local/continuum-1.1-beta-2/working-directory/48/pom.xml
>> > to
>> >
>> > /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad/1.2.14-SNAPSHOT/trinidad-1.2.14-SNAPSHOT.pom
>> > [INFO] [deploy:deploy]
>> > [INFO] Retrieving previous build number from apache-maven-snapshots
>> > Uploading:
>> >
>> > scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad/1.2.14-SNAPSHOT/trinidad-1.2.14-SNAPSHOT.pom
>> > [INFO] Retrieving previous metadata from apache-maven-snapshots
>> > [INFO] Uploading repository metadata for: 'snapshot
>> > org.apache.myfaces.trinidad:trinidad:1.2.14-SNAPSHOT'
>> > [INFO] Uploading site descriptor for trinidad 1.2.14-SNAPSHOT site.xml
>> > [INFO] Retrieving previous metadata from apache-maven-snapshots
>> > [INFO] Uploading repository metadata for: 'artifact
>> > org.apache.myfaces.trinidad:trinidad'
>> > [INFO]
>> > ------------------------------------------------------------------------
>> > [INFO] Building Apache MyFaces Trinidad Build
>> > [INFO]    task-segment: [clean, install, source:jar, deploy]
>> > [INFO]
>> > ------------------------------------------------------------------------
>> > [INFO] [clean:clean]
>> > [INFO] Deleting directory
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target
>> > [INFO] [xrts:generate-sources {execution: default}]
>> > [INFO] [remote-resources:process {execution: default}]
>> > [INFO] [faces:generate-master-faces-config {execution: default}]
>> > [INFO] Generating META-INF/maven-faces-plugin/faces-config.xml
>> > [INFO] [resources:resources]
>> > [INFO] Using default encoding to copy filtered resources.
>> > [INFO] [compiler:compile]
>> > [INFO] No sources to compile
>> > [INFO] [xrts:generate-test-sources {execution: default}]
>> > [INFO] [resources:testResources]
>> > [INFO] Using default encoding to copy filtered resources.
>> > [INFO] [compiler:testCompile]
>> > [INFO] No sources to compile
>> > [INFO] [surefire:test]
>> > [INFO] Surefire report directory:
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/surefire-reports
>> >
>> > -------------------------------------------------------
>> > T E S T S
>> > -------------------------------------------------------
>> > There are no tests to run.
>> >
>> > Results :
>> >
>> > Tests run: 0, Failures: 0, Errors: 0, Skipped: 0
>> >
>> > [INFO] [jar:jar]
>> > [INFO] Building jar:
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT.jar
>> > [INFO] Preparing source:jar
>> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
>> > invocation.
>> > [INFO] [xrts:generate-sources {execution: default}]
>> > [INFO] [source:jar {execution: attach-source}]
>> > [INFO] Building jar:
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>> > [INFO] [install:install]
>> > [INFO] Installing
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT.jar
>> > to
>> >
>> > /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT.jar
>> > [INFO] Installing
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>> > to
>> >
>> > /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>> > [INFO] Preparing source:jar
>> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
>> > invocation.
>> > [INFO] [xrts:generate-sources {execution: default}]
>> > [INFO] [source:jar]
>> > [INFO] Building jar:
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>> > [INFO] [xrts:generate-sources {execution: default}]
>> > [INFO] [remote-resources:process {execution: default}]
>> > [INFO] [faces:generate-master-faces-config {execution: default}]
>> > [INFO] Generating META-INF/maven-faces-plugin/faces-config.xml
>> > [INFO] [resources:resources]
>> > [INFO] Using default encoding to copy filtered resources.
>> > [INFO] [compiler:compile]
>> > [INFO] No sources to compile
>> > [INFO] [xrts:generate-test-sources {execution: default}]
>> > [INFO] [resources:testResources]
>> > [INFO] Using default encoding to copy filtered resources.
>> > [INFO] [compiler:testCompile]
>> > [INFO] No sources to compile
>> > [INFO] [surefire:test]
>> > [INFO] Surefire report directory:
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/surefire-reports
>> >
>> > -------------------------------------------------------
>> > T E S T S
>> > -------------------------------------------------------
>> > There are no tests to run.
>> >
>> > Results :
>> >
>> > Tests run: 0, Failures: 0, Errors: 0, Skipped: 0
>> >
>> > [INFO] [jar:jar]
>> > [INFO] Building jar:
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT.jar
>> > [INFO] Preparing source:jar
>> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
>> > invocation.
>> > [INFO] [xrts:generate-sources {execution: default}]
>> > [INFO] [source:jar {execution: attach-source}]
>> > [INFO] Building jar:
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>> > [INFO] [install:install]
>> > [INFO] Installing
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT.jar
>> > to
>> >
>> > /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT.jar
>> > [INFO] Installing
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>> > to
>> >
>> > /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>> > [INFO] Installing
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>> > to
>> >
>> > /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>> > [INFO] Installing
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>> > to
>> >
>> > /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>> > [INFO] [deploy:deploy]
>> > [INFO] Retrieving previous build number from apache-maven-snapshots
>> > Uploading:
>> >
>> > scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT.jar
>> > [INFO] Retrieving previous metadata from apache-maven-snapshots
>> > [INFO] Uploading repository metadata for: 'snapshot
>> > org.apache.myfaces.trinidad:trinidad-build:1.2.14-SNAPSHOT'
>> > [INFO] Retrieving previous metadata from apache-maven-snapshots
>> > [INFO] Uploading repository metadata for: 'artifact
>> > org.apache.myfaces.trinidad:trinidad-build'
>> > [INFO] Uploading project information for trinidad-build 1.2.14-SNAPSHOT
>> > [INFO] Retrieving previous build number from apache-maven-snapshots
>> > Uploading:
>> >
>> > scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>> > [INFO] Retrieving previous build number from apache-maven-snapshots
>> > Uploading:
>> >
>> > scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>> > [INFO] Retrieving previous build number from apache-maven-snapshots
>> > Uploading:
>> >
>> > scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
>> > [INFO]
>> > ------------------------------------------------------------------------
>> > [INFO] Building Apache MyFaces Trinidad API
>> > [INFO]    task-segment: [clean, install, source:jar, deploy]
>> > [INFO]
>> > ------------------------------------------------------------------------
>> > [INFO] [clean:clean]
>> > [INFO] Deleting directory
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target
>> > [INFO] [xrts:generate-sources {execution: default}]
>> > [INFO] Generating 54 XRTS bundles to
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/maven-xrts-plugin/main/java
>> > [INFO] [faces:generate-components {execution: default}]
>> > [INFO] Generated 133 component(s)
>> > [INFO] [i18n:generate-locale-elements {execution: default}]
>> > [INFO] Generating LocaleElements
>> > [INFO] [remote-resources:process {execution: default}]
>> > [INFO] [resources:resources]
>> > [INFO] Using default encoding to copy filtered resources.
>> > [INFO] [compiler:compile]
>> > [INFO] Compiling 405 source files to
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/classes
>> > [INFO] [xrts:generate-test-sources {execution: default}]
>> > [INFO] Generating 1 XRTS bundles to
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/maven-xrts-plugin/test/java
>> > [INFO] [resources:testResources]
>> > [INFO] Using default encoding to copy filtered resources.
>> > [INFO] [compiler:testCompile]
>> > [INFO] Compiling 93 source files to
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/test-classes
>> > [INFO] [surefire:test]
>> > [INFO] Surefire report directory:
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/surefire-reports
>> >
>> > -------------------------------------------------------
>> > T E S T S
>> > -------------------------------------------------------
>> > Running org.apache.myfaces.trinidad.component.AddRemoveTest
>> > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.081
>> > sec
>> > Running org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest
>> >
>> > descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.159
>> > sec
>> > Running org.apache.myfaces.trinidad.util.ServiceTest
>> > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.005
>> > sec
>> > Running org.apache.myfaces.trinidad.component.UIXSelectManyTest
>> > Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.387
>> > sec
>> > Running
>> >
>> > org.apache.myfaces.trinidad.component.core.layout.CoreShowDetailHeaderTest
>> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.044
>> > sec
>> > Running org.apache.myfaces.trinidad.component.html.HtmlTableLayoutTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018
>> > sec
>> > Running org.apache.myfaces.trinidad.validator.LengthValidatorTest
>> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.028
>> > sec
>> > Running org.apache.myfaces.trinidad.bean.util.ValueMapTest
>> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.01 sec
>> > Running org.apache.myfaces.trinidad.component.html.HtmlScriptTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.201
>> > sec
>> > Running org.apache.myfaces.trinidad.component.core.CoreFormTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.022
>> > sec
>> > Running
>> >
>> > org.apache.myfaces.trinidad.component.core.input.CoreSelectBooleanCheckboxTest
>> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.019
>> > sec
>> > Running org.apache.myfaces.trinidad.component.html.HtmlCellFormatTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018
>> > sec
>> > Running org.apache.myfaces.trinidad.validator.LongRangeValidatorTest
>> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.validator.DateRestrictionValidatorTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.022
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.component.core.layout.CorePanelRadioTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.022
>> > sec
>> > Running org.apache.myfaces.trinidad.component.UIXTreeTest
>> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014
>> > sec
>> > Running org.apache.myfaces.trinidad.component.UIXSwitcherTest
>> > Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.component.core.layout.CorePanelBoxTest
>> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018
>> > sec
>> > Running org.apache.myfaces.trinidad.convert.ColorConverterTest
>> > Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.179
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.component.core.nav.CoreBreadCrumbsTest
>> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.039
>> > sec
>> > Running org.apache.myfaces.trinidad.util.Base64InputStreamTest
>> > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.009
>> > sec
>> > Running org.apache.myfaces.trinidad.bean.PropertyKeyTest
>> > Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.003
>> > sec
>> > Running org.apache.myfaces.trinidad.component.core.data.CoreColumnTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.026
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.component.core.output.CoreSeparatorTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.component.core.output.CoreOutputTextTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.023
>> > sec
>> > Running org.apache.myfaces.trinidad.component.html.HtmlFrameTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017
>> > sec
>> > Running org.apache.myfaces.trinidad.util.FastMessageFormatTest
>> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec
>> > Running org.apache.myfaces.trinidad.validator.RegExpValidatorTest
>> > Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015
>> > sec
>> > Running org.apache.myfaces.trinidad.bean.FacesBeanImplTest
>> > Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.13
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.component.core.layout.CoreShowDetailTest
>> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018
>> > sec
>> > Running org.apache.myfaces.trinidad.component.UIXProcessTest
>> > Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.component.core.layout.CorePanelSideBarTest
>> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.component.html.HtmlFrameBorderLayoutTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.022
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.convert.TrinidadDateTimeConverterTest
>> > Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.242
>> > sec
>> > Running org.apache.myfaces.trinidad.component.html.HtmlHtmlTest
>> > Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.012
>> > sec
>> > Running org.apache.myfaces.trinidad.component.UIXSelectOrderTest
>> > Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016
>> > sec
>> > Running org.apache.myfaces.trinidad.render.RenderUtilsTest
>> >  Found PropertyDescriptor java.beans.PropertyDescriptor@7bf628e6Feb 6,
>> > 2010
>> > 1:04:40 PM org.apache.myfaces.trinidad.util.ComponentUtils
>> > _findRelativeComponentDeprecated
>> > WARNING: Could not find the component with scopedId :::button1 from
>> > UIXInput[UIXEditableFacesBeanImpl, id=input1] with the supported syntax.
>> > The
>> > component was found with the deprecated syntax. Please use the supported
>> > syntax.
>> > Feb 6, 2010 1:04:40 PM org.apache.myfaces.trinidad.render.RenderUtils
>> > getRelativeId
>> > WARNING: Could not find the component with scopedId commandButton1 from
>> > RenderUtilsTest$TestNamingContainer[UIXFacesBeanImpl, id=table1] with
>> > the
>> > supported syntax. The component was found with the deprecated syntax.
>> > Please
>> > use the supported syntax.
>> > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.01 sec
>> > Running org.apache.myfaces.trinidad.validator.DateTimeRangeValidatorTest
>> > Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.071
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.resource.AggregatingResourceLoaderTest
>> > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.component.core.layout.CorePanelListTest
>> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.component.core.layout.CorePanelHeaderTest
>> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017
>> > sec
>> > Running org.apache.myfaces.trinidad.model.RowKeySetImplTest
>> > Tests run: 14, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.026
>> > sec
>> > Running org.apache.myfaces.trinidad.util.Base64OutputStreamTest
>> > Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.011
>> > sec
>> > Running org.apache.myfaces.trinidad.util.ArrayMapTest
>> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004
>> > sec
>> > Running org.apache.myfaces.trinidad.convert.JsfNumberConverterTest
>> > resource bundle javax.faces.Messages could not be found
>> > Tests run: 16, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.029
>> > sec
>> > Running
>> >
>> > org.apache.myfaces.trinidad.component.core.layout.CorePanelGroupLayoutTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.025
>> > sec
>> > Running org.apache.myfaces.trinidad.validator.ByteLengthValidatorTest
>> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014
>> > sec
>> > Running org.apache.myfaces.trinidad.component.core.nav.CoreTrainTest
>> > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.002
>> > sec
>> > Running org.apache.myfaces.trinidad.bean.TypeTest
>> > Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.003
>> > sec
>> > Running org.apache.myfaces.trinidad.util.ListFromCollectionTest
>> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004
>> > sec
>> > Running
>> >
>> > org.apache.myfaces.trinidad.component.core.data.CoreSelectRangeChoiceBarTest
>> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.022
>> > sec
>> > Running org.apache.myfaces.trinidad.component.core.output.CoreSpacerTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.224
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.component.core.layout.CorePanelAccordionTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018
>> > sec
>> > Running org.apache.myfaces.trinidad.component.FindComponentTest
>> > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.013
>> > sec
>> > Running org.apache.myfaces.trinidad.model.RowKeySetTreeImplTest
>> >
>> > descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
>> > Tests run: 13, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.039
>> > sec
>> > Running org.apache.myfaces.trinidad.model.SortableModelTest
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=name
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=name
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=name
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=name
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=name
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=object
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7ac113d1descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=name
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=name
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=name
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=name
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=name
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=name
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=name
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=name
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
>> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.064
>> > sec
>> > Running org.apache.myfaces.trinidad.validator.DoubleRangeValidatorTest
>> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016
>> > sec
>> > Running org.apache.myfaces.trinidad.component.UIXShowDetailTest
>> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016
>> > sec
>> > Running org.apache.myfaces.trinidad.component.UIXInputTest
>> > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.05 sec
>> > Running org.apache.myfaces.trinidad.convert.TrinidadNumberConverterTest
>> > Tests run: 18, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.034
>> > sec
>> > Running org.apache.myfaces.trinidad.convert.JsfDateTimeConverterTest
>> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.059
>> > sec
>> > Running
>> >
>> > org.apache.myfaces.trinidad.component.core.layout.CorePanelBorderLayoutTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.028
>> > sec
>> > Running org.apache.myfaces.trinidad.util.FindRelativeComponentTest
>> >  Found PropertyDescriptor java.beans.PropertyDescriptor@e6e3b8feFeb 6,
>> > 2010
>> > 1:04:41 PM org.apache.myfaces.trinidad.util.ComponentUtils
>> > _findRelativeComponentDeprecated
>> > WARNING: Could not find the component with scopedId :::commandButton1
>> > from
>> > UIXInput[UIXEditableFacesBeanImpl, id=input1] with the supported syntax.
>> > The
>> > component was found with the deprecated syntax. Please use the supported
>> > syntax.
>> > Feb 6, 2010 1:04:41 PM org.apache.myfaces.trinidad.util.ComponentUtils
>> > _findRelativeComponentDeprecated
>> > WARNING: Could not find the component with scopedId :::commandButton1
>> > from
>> > UIXInput[UIXEditableFacesBeanImpl, id=inputA] with the supported syntax.
>> > The
>> > component was found with the deprecated syntax. Please use the supported
>> > syntax.
>> > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.component.core.layout.CorePanelChoiceTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018
>> > sec
>> > Running org.apache.myfaces.trinidad.component.html.HtmlRowLayoutTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017
>> > sec
>> > Running org.apache.myfaces.trinidad.component.UIXTableTest
>> > Feb 6, 2010 1:04:41 PM org.apache.myfaces.trinidad.bean.PropertyKey
>> > saveValue
>> > WARNING: Unserializable
>> > value:SortableModel[javax.faces.model.ListDataModel@985fa2] for
>> > key:PropertyKey[value,11]
>> > Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.058
>> > sec
>> > Running org.apache.myfaces.trinidad.resource.CachingResourceLoaderTest
>> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.005
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.component.core.input.CoreInputHiddenTest
>> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.033
>> > sec
>> >
>> > Results :
>> >
>> > Tests run: 498, Failures: 0, Errors: 0, Skipped: 0
>> >
>> > [INFO] [jar:jar]
>> > [INFO] Building jar:
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT.jar
>> > [INFO] Preparing source:jar
>> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
>> > invocation.
>> > [INFO] [xrts:generate-sources {execution: default}]
>> > [INFO] Nothing to generate - all XRTS bundles are up to date
>> > [INFO] [faces:generate-components {execution: default}]
>> > [INFO] Generated 133 component(s)
>> > [INFO] [i18n:generate-locale-elements {execution: default}]
>> > [INFO] Generating LocaleElements
>> > [INFO] [source:jar {execution: attach-source}]
>> > [INFO] Building jar:
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-sources.jar
>> > [INFO] [jar:test-jar {execution: default}]
>> > [INFO] Building jar:
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-tests.jar
>> > [INFO] [install:install]
>> > [INFO] Installing
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT.jar
>> > to
>> >
>> > /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT.jar
>> > [INFO] Installing
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-sources.jar
>> > to
>> >
>> > /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-sources.jar
>> > [INFO] Installing
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-tests.jar
>> > to
>> >
>> > /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-tests.jar
>> > [INFO] Preparing source:jar
>> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
>> > invocation.
>> > [INFO] [xrts:generate-sources {execution: default}]
>> > [INFO] Nothing to generate - all XRTS bundles are up to date
>> > [INFO] [faces:generate-components {execution: default}]
>> > [INFO] Generated 133 component(s)
>> > [INFO] [i18n:generate-locale-elements {execution: default}]
>> > [INFO] Generating LocaleElements
>> > [INFO] [source:jar]
>> > [INFO] Building jar:
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-sources.jar
>> > [INFO] [xrts:generate-sources {execution: default}]
>> > [INFO] Nothing to generate - all XRTS bundles are up to date
>> > [INFO] [faces:generate-components {execution: default}]
>> > [INFO] Generated 133 component(s)
>> > [INFO] [i18n:generate-locale-elements {execution: default}]
>> > [INFO] Generating LocaleElements
>> > [INFO] [remote-resources:process {execution: default}]
>> > [INFO] [resources:resources]
>> > [INFO] Using default encoding to copy filtered resources.
>> > [INFO] [compiler:compile]
>> > [INFO] Compiling 133 source files to
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/classes
>> > [INFO] [xrts:generate-test-sources {execution: default}]
>> > [INFO] Nothing to generate - all XRTS bundles are up to date
>> > [INFO] [resources:testResources]
>> > [INFO] Using default encoding to copy filtered resources.
>> > [INFO] [compiler:testCompile]
>> > [INFO] Nothing to compile - all classes are up to date
>> > [INFO] [surefire:test]
>> > [INFO] Surefire report directory:
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/surefire-reports
>> >
>> > -------------------------------------------------------
>> > T E S T S
>> > -------------------------------------------------------
>> > Running org.apache.myfaces.trinidad.component.AddRemoveTest
>> > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.092
>> > sec
>> > Running org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest
>> >
>> > descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.148
>> > sec
>> > Running org.apache.myfaces.trinidad.util.ServiceTest
>> > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.005
>> > sec
>> > Running org.apache.myfaces.trinidad.component.UIXSelectManyTest
>> > Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.104
>> > sec
>> > Running
>> >
>> > org.apache.myfaces.trinidad.component.core.layout.CoreShowDetailHeaderTest
>> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.036
>> > sec
>> > Running org.apache.myfaces.trinidad.component.html.HtmlTableLayoutTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016
>> > sec
>> > Running org.apache.myfaces.trinidad.validator.LengthValidatorTest
>> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.026
>> > sec
>> > Running org.apache.myfaces.trinidad.bean.util.ValueMapTest
>> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.008
>> > sec
>> > Running org.apache.myfaces.trinidad.component.html.HtmlScriptTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014
>> > sec
>> > Running org.apache.myfaces.trinidad.component.core.CoreFormTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.019
>> > sec
>> > Running
>> >
>> > org.apache.myfaces.trinidad.component.core.input.CoreSelectBooleanCheckboxTest
>> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018
>> > sec
>> > Running org.apache.myfaces.trinidad.component.html.HtmlCellFormatTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016
>> > sec
>> > Running org.apache.myfaces.trinidad.validator.LongRangeValidatorTest
>> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.013
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.validator.DateRestrictionValidatorTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.025
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.component.core.layout.CorePanelRadioTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.02 sec
>> > Running org.apache.myfaces.trinidad.component.UIXTreeTest
>> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.012
>> > sec
>> > Running org.apache.myfaces.trinidad.component.UIXSwitcherTest
>> > Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.013
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.component.core.layout.CorePanelBoxTest
>> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016
>> > sec
>> > Running org.apache.myfaces.trinidad.convert.ColorConverterTest
>> > Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.component.core.nav.CoreBreadCrumbsTest
>> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.032
>> > sec
>> > Running org.apache.myfaces.trinidad.util.Base64InputStreamTest
>> > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.008
>> > sec
>> > Running org.apache.myfaces.trinidad.bean.PropertyKeyTest
>> > Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004
>> > sec
>> > Running org.apache.myfaces.trinidad.component.core.data.CoreColumnTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.023
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.component.core.output.CoreSeparatorTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.component.core.output.CoreOutputTextTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.023
>> > sec
>> > Running org.apache.myfaces.trinidad.component.html.HtmlFrameTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.076
>> > sec
>> > Running org.apache.myfaces.trinidad.util.FastMessageFormatTest
>> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001
>> > sec
>> > Running org.apache.myfaces.trinidad.validator.RegExpValidatorTest
>> > Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.012
>> > sec
>> > Running org.apache.myfaces.trinidad.bean.FacesBeanImplTest
>> > Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.032
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.component.core.layout.CoreShowDetailTest
>> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017
>> > sec
>> > Running org.apache.myfaces.trinidad.component.UIXProcessTest
>> > Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.component.core.layout.CorePanelSideBarTest
>> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.component.html.HtmlFrameBorderLayoutTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.019
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.convert.TrinidadDateTimeConverterTest
>> > Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.183
>> > sec
>> > Running org.apache.myfaces.trinidad.component.html.HtmlHtmlTest
>> > Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.01 sec
>> > Running org.apache.myfaces.trinidad.component.UIXSelectOrderTest
>> > Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015
>> > sec
>> >  Found PropertyDescriptor java.beans.PropertyDescriptor@7bf628e6Feb 6,
>> > 2010
>> > 1:05:21 PM org.apache.myfaces.trinidad.util.ComponentUtils
>> > _findRelativeComponentDeprecated
>> > WARNING: Could not find the component with scopedId :::button1 from
>> > UIXInput[UIXEditableFacesBeanImpl, id=input1] with the supported syntax.
>> > The
>> > component was found with the deprecated syntax. Please use the supported
>> > syntax.
>> > Feb 6, 2010 1:05:21 PM org.apache.myfaces.trinidad.render.RenderUtils
>> > getRelativeId
>> > WARNING: Could not find the component with scopedId commandButton1 from
>> > RenderUtilsTest$TestNamingContainer[UIXFacesBeanImpl, id=table1] with
>> > the
>> > supported syntax. The component was found with the deprecated syntax.
>> > Please
>> > use the supported syntax.
>> > Running org.apache.myfaces.trinidad.render.RenderUtilsTest
>> > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.007
>> > sec
>> > Running org.apache.myfaces.trinidad.validator.DateTimeRangeValidatorTest
>> > Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.958
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.resource.AggregatingResourceLoaderTest
>> > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.208
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.component.core.layout.CorePanelListTest
>> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.166
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.component.core.layout.CorePanelHeaderTest
>> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.163
>> > sec
>> > Running org.apache.myfaces.trinidad.model.RowKeySetImplTest
>> > Tests run: 14, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.581
>> > sec
>> > Running org.apache.myfaces.trinidad.util.Base64OutputStreamTest
>> > Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.171
>> > sec
>> > Running org.apache.myfaces.trinidad.util.ArrayMapTest
>> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.059
>> > sec
>> > Running org.apache.myfaces.trinidad.convert.JsfNumberConverterTest
>> > resource bundle javax.faces.Messages could not be found
>> > Tests run: 16, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.661
>> > sec
>> > Running
>> >
>> > org.apache.myfaces.trinidad.component.core.layout.CorePanelGroupLayoutTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.345
>> > sec
>> > Running org.apache.myfaces.trinidad.validator.ByteLengthValidatorTest
>> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.296
>> > sec
>> > Running org.apache.myfaces.trinidad.component.core.nav.CoreTrainTest
>> > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.055
>> > sec
>> > Running org.apache.myfaces.trinidad.bean.TypeTest
>> > Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.068
>> > sec
>> > Running org.apache.myfaces.trinidad.util.ListFromCollectionTest
>> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.095
>> > sec
>> > Running
>> >
>> > org.apache.myfaces.trinidad.component.core.data.CoreSelectRangeChoiceBarTest
>> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.117
>> > sec
>> > Running org.apache.myfaces.trinidad.component.core.output.CoreSpacerTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.055
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.component.core.layout.CorePanelAccordionTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015
>> > sec
>> > Running org.apache.myfaces.trinidad.component.FindComponentTest
>> > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.011
>> > sec
>> > Running org.apache.myfaces.trinidad.model.RowKeySetTreeImplTest
>> >
>> > descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
>> > name=kids
>> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
>> > Tests run: 13, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.029
>> > sec
>> > Running org.apache.myfaces.trinidad.model.SortableModelTest
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7bf628e6descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=name
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=name
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=name
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=name
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=name
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=object
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@7ac113d1descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=name
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=name
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=name
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=name
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=name
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=name
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=name
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=name
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@28fa8194descriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> >  Found PropertyDescriptor
>> >
>> > java.beans.PropertyDescriptor@e6e3b8fedescriptor(class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
>> > name=age
>> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
>> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014
>> > sec
>> > Running org.apache.myfaces.trinidad.validator.DoubleRangeValidatorTest
>> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.01 sec
>> > Running org.apache.myfaces.trinidad.component.UIXShowDetailTest
>> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.013
>> > sec
>> > Running org.apache.myfaces.trinidad.component.UIXInputTest
>> > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.042
>> > sec
>> > Running org.apache.myfaces.trinidad.convert.TrinidadNumberConverterTest
>> > Tests run: 18, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.028
>> > sec
>> > Running org.apache.myfaces.trinidad.convert.JsfDateTimeConverterTest
>> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.006
>> > sec
>> > Running
>> >
>> > org.apache.myfaces.trinidad.component.core.layout.CorePanelBorderLayoutTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.02 sec
>> > Running org.apache.myfaces.trinidad.util.FindRelativeComponentTest
>> >  Found PropertyDescriptor java.beans.PropertyDescriptor@e6e3b8feFeb 6,
>> > 2010
>> > 1:05:26 PM org.apache.myfaces.trinidad.util.ComponentUtils
>> > _findRelativeComponentDeprecated
>> > WARNING: Could not find the component with scopedId :::commandButton1
>> > from
>> > UIXInput[UIXEditableFacesBeanImpl, id=input1] with the supported syntax.
>> > The
>> > component was found with the deprecated syntax. Please use the supported
>> > syntax.
>> > Feb 6, 2010 1:05:26 PM org.apache.myfaces.trinidad.util.ComponentUtils
>> > _findRelativeComponentDeprecated
>> > WARNING: Could not find the component with scopedId :::commandButton1
>> > from
>> > UIXInput[UIXEditableFacesBeanImpl, id=inputA] with the supported syntax.
>> > The
>> > component was found with the deprecated syntax. Please use the supported
>> > syntax.
>> > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.013
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.component.core.layout.CorePanelChoiceTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017
>> > sec
>> > Running org.apache.myfaces.trinidad.component.html.HtmlRowLayoutTest
>> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014
>> > sec
>> > Running org.apache.myfaces.trinidad.component.UIXTableTest
>> > Feb 6, 2010 1:05:26 PM org.apache.myfaces.trinidad.bean.PropertyKey
>> > saveValue
>> > WARNING: Unserializable
>> > value:SortableModel[javax.faces.model.ListDataModel@1112776] for
>> > key:PropertyKey[value,11]
>> > Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.112
>> > sec
>> > Running org.apache.myfaces.trinidad.resource.CachingResourceLoaderTest
>> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004
>> > sec
>> > Running
>> > org.apache.myfaces.trinidad.component.core.input.CoreInputHiddenTest
>> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.012
>> > sec
>> >
>> > Results :
>> >
>> > Tests run: 498, Failures: 0, Errors: 0, Skipped: 0
>> >
>> > [INFO] [jar:jar]
>> > [INFO] Building jar:
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT.jar
>> > [INFO] Preparing source:jar
>> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
>> > invocation.
>> > [INFO] [xrts:generate-sources {execution: default}]
>> > [INFO] Nothing to generate - all XRTS bundles are up to date
>> > [INFO] [faces:generate-components {execution: default}]
>> > [INFO] Generated 133 component(s)
>> > [INFO] [i18n:generate-locale-elements {execution: default}]
>> > [INFO] Generating LocaleElements
>> > [INFO] [source:jar {execution: attach-source}]
>> > [INFO] Building jar:
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-sources.jar
>> > [INFO] [jar:test-jar {execution: default}]
>> > [INFO] Building jar:
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-tests.jar
>> > [INFO] [install:install]
>> > [INFO] Installing
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT.jar
>> > to
>> >
>> > /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT.jar
>> > [INFO] Installing
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-sources.jar
>> > to
>> >
>> > /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-sources.jar
>> > [INFO] Installing
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-tests.jar
>> > to
>> >
>> > /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-tests.jar
>> > [INFO] Installing
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-sources.jar
>> > to
>> >
>> > /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-sources.jar
>> > [INFO] Installing
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-sources.jar
>> > to
>> >
>> > /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-sources.jar
>> > [INFO] Installing
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-tests.jar
>> > to
>> >
>> > /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-tests.jar
>> > [INFO] [deploy:deploy]
>> > [INFO] Retrieving previous build number from apache-maven-snapshots
>> > Uploading:
>> >
>> > scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT.jar
>> > [INFO] Retrieving previous metadata from apache-maven-snapshots
>> > [INFO] Uploading repository metadata for: 'artifact
>> > org.apache.myfaces.trinidad:trinidad-api'
>> > [INFO] Uploading project information for trinidad-api 1.2.14-SNAPSHOT
>> > [INFO] Retrieving previous metadata from apache-maven-snapshots
>> > [INFO] Uploading repository metadata for: 'snapshot
>> > org.apache.myfaces.trinidad:trinidad-api:1.2.14-SNAPSHOT'
>> > [INFO] Retrieving previous build number from apache-maven-snapshots
>> > Uploading:
>> >
>> > scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-sources.jar
>> > [INFO] Retrieving previous build number from apache-maven-snapshots
>> > Uploading:
>> >
>> > scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-tests.jar
>> > [INFO] Retrieving previous build number from apache-maven-snapshots
>> > Uploading:
>> >
>> > scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-sources.jar
>> > [INFO] Retrieving previous build number from apache-maven-snapshots
>> > Uploading:
>> >
>> > scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-sources.jar
>> > [INFO] Retrieving previous build number from apache-maven-snapshots
>> > Uploading:
>> >
>> > scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-tests.jar
>> > [INFO]
>> > ------------------------------------------------------------------------
>> > [INFO] Building Apache MyFaces Trinidad Impl
>> > [INFO]    task-segment: [clean, install, source:jar, deploy]
>> > [INFO]
>> > ------------------------------------------------------------------------
>> > [INFO] [clean:clean]
>> > [INFO] Deleting directory
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target
>> > [INFO] [faces:generate-jsp-taglibs {execution: default}]
>> > [INFO] Generated 143 JSP tag(s)
>> > [INFO] [faces:generate-facelets-taglibs {execution: default}]
>> > [INFO] Generated META-INF/tr.taglib.xml
>> > [INFO] Generated META-INF/trh.taglib.xml
>> > [INFO] [faces:generate-renderer-map {execution: default}]
>> > [INFO] [i18n:generate-locale-elements {execution: default}]
>> > [INFO] Generating LocaleElements
>> > [INFO] [i18n:generate-javascript-locales {execution: default}]
>> > [INFO] Generating Javascript Locales
>> > [INFO] [javascript:reduce-javascript {execution: default}]
>> > [INFO] [xrts:generate-sources {execution: default}]
>> > [INFO] Generating 59 XRTS bundles to
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/maven-xrts-plugin/main/java
>> > [INFO] [faces:generate-faces-config {execution: default}]
>> > [INFO] Generated META-INF/faces-config.xml
>> > [INFO] [remote-resources:process {execution: default}]
>> > [INFO] [resources:resources]
>> > [INFO] Using default encoding to copy filtered resources.
>> > [INFO] [compiler:compile]
>> > [INFO] Compiling 1170 source files to
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/classes
>> > [INFO] [xrts:generate-test-sources {execution: default}]
>> > [INFO] [resources:testResources]
>> > [INFO] Using default encoding to copy filtered resources.
>> > [INFO] snapshot
>> > org.apache.myfaces.trinidad:trinidad-api:1.2.14-SNAPSHOT:
>> > checking for updates from java.net
>> > [INFO] snapshot
>> > org.apache.myfaces.trinidad:trinidad-api:1.2.14-SNAPSHOT:
>> > checking for updates from apache.snapshots
>> > [INFO] [compiler:testCompile]
>> > [INFO] Compiling 50 source files to
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/test-classes
>> > [INFO] [surefire:test]
>> > [INFO] Surefire report directory:
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/surefire-reports
>> > Feb 6, 2010 1:07:56 PM
>> > org.apache.myfaces.trinidadinternal.renderkit.FacesConfigInfo load
>> > INFO: PARSING
>> >
>> > file:/local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/classes/META-INF/faces-config.xml
>> > Feb 6, 2010 1:07:57 PM
>> > org.apache.myfaces.trinidadinternal.renderkit.FacesConfigInfo load
>> > INFO: PARSING
>> >
>> > jar:file:/export/home/mrmaven/.m2/repository/com/sun/facelets/jsf-facelets/1.1.14/jsf-facelets-1.1.14.jar!/META-INF/faces-config.xml
>> > Couldn't create renderer com.sun.facelets.component.RepeatRenderer
>> >
>> > -------------------------------------------------------
>> > T E S T S
>> > -------------------------------------------------------
>> > Running org.apache.myfaces.trinidadinternal.metadata.RegionMetadataTest
>> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.169
>> > sec
>> > Running
>> >
>> > org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.table.TableSelectOneRendererTest
>> > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.15 sec
>> > Running org.apache.myfaces.trinidadinternal.el.FormatterMapTest
>> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004
>> > sec
>> > Running org.apache.myfaces.trinidadinternal.util.TokenCacheTest
>> > Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.007
>> > sec
>> > Running
>> > org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.OutputUtilsTest
>> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.003
>> > sec
>> > Running org.apache.myfaces.trinidadinternal.context.PartialTriggersTest
>> > Feb 6, 2010 1:08:04 PM org.apache.myfaces.trinidad.util.ComponentUtils
>> > _findRelativeComponentDeprecated
>> > WARNING: Could not find the component with scopedId :::commandButton1
>> > from
>> > UIXInput[UIXEditableFacesBeanImpl, id=input1] with the supported syntax.
>> > The
>> > component was found with the deprecated syntax. Please use the supported
>> > syntax.
>> > Feb 6, 2010 1:08:04 PM org.apache.myfaces.trinidad.util.ComponentUtils
>> > _findRelativeComponentDeprecated
>> > WARNING: Could not find the component with scopedId :::commandButton1
>> > from
>> > UIXInput[UIXEditableFacesBeanImpl, id=inputA] with the supported syntax.
>> > The
>> > component was found with the deprecated syntax. Please use the supported
>> > syntax.
>> > Feb 6, 2010 1:08:04 PM
>> > org.apache.myfaces.trinidadinternal.context.RequestContextImpl
>> > addPartialTriggerListeners
>> > WARNING: Could not find partial trigger commandButton1 from
>> >
>> > UIXTable[org.apache.myfaces.trinidad.component.UIXTable$RowKeyFacesBeanWrapper@24d0d0,
>> > id=table1] with the supported partialTriggers syntax. The partial
>> > trigger
>> > was found with the deprecated syntax. Please use the supported syntax.
>> > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.05 sec
>> > Running org.apache.myfaces.trinidadinternal.FacesConfigTest
>> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001
>> > sec
>> > Feb 6, 2010 1:08:04 PM
>> > org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > _warnAbsenceOfBundleKeys
>> > WARNING: Keys missing in bundle:MessageBundle_ar are
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>> >
>> > Feb 6, 2010 1:08:04 PM
>> > org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > _warnAbsenceOfBundleKeys
>> > WARNING: Keys missing in bundle:MessageBundle_cs are
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>> >
>> > Feb 6, 2010 1:08:04 PM
>> > org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > _warnAbsenceOfBundleKeys
>> > WARNING: Keys missing in bundle:MessageBundle_da are
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>> >
>> > Feb 6, 2010 1:08:04 PM
>> > org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > _warnAbsenceOfBundleKeys
>> > WARNING: Keys missing in bundle:MessageBundle_de are
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>> >
>> > Feb 6, 2010 1:08:04 PM
>> > org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > _warnAbsenceOfBundleKeys
>> > WARNING: Keys missing in bundle:MessageBundle_el are
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>> >
>> > Running org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > Feb 6, 2010 1:08:04 PM
>> > org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > _warnAbsenceOfBundleKeys
>> > WARNING: Keys missing in bundle:MessageBundle_es are
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>> >
>> > Feb 6, 2010 1:08:04 PM
>> > org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > _warnAbsenceOfBundleKeys
>> > WARNING: Keys missing in bundle:MessageBundle_fi are
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>> >
>> > Feb 6, 2010 1:08:04 PM
>> > org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > _warnAbsenceOfBundleKeys
>> > WARNING: Keys missing in bundle:MessageBundle_fr are
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>> >
>> > Feb 6, 2010 1:08:04 PM
>> > org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > _warnAbsenceOfBundleKeys
>> > WARNING: Keys missing in bundle:MessageBundle_hu are
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>> >
>> > Feb 6, 2010 1:08:04 PM
>> > org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > _warnAbsenceOfBundleKeys
>> > WARNING: Keys missing in bundle:MessageBundle_it are
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>> >
>> > Feb 6, 2010 1:08:04 PM
>> > org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > _warnAbsenceOfBundleKeys
>> > WARNING: Keys missing in bundle:MessageBundle_iw are
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>> >
>> > Feb 6, 2010 1:08:04 PM
>> > org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > _warnAbsenceOfBundleKeys
>> > WARNING: Keys missing in bundle:MessageBundle_ja are
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>> >
>> > Feb 6, 2010 1:08:04 PM
>> > org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > _warnAbsenceOfBundleKeys
>> > WARNING: Keys missing in bundle:MessageBundle_ko are
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>> >
>> > Feb 6, 2010 1:08:04 PM
>> > org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > _warnAbsenceOfBundleKeys
>> > WARNING: Keys missing in bundle:MessageBundle_nl are
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>> >
>> > Feb 6, 2010 1:08:04 PM
>> > org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > _warnAbsenceOfBundleKeys
>> > WARNING: Keys missing in bundle:MessageBundle_no are
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>> >
>> > Feb 6, 2010 1:08:04 PM
>> > org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > _warnAbsenceOfBundleKeys
>> > WARNING: Keys missing in bundle:MessageBundle_pl are
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>> >
>> > Feb 6, 2010 1:08:04 PM
>> > org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > _warnAbsenceOfBundleKeys
>> > WARNING: Keys missing in bundle:MessageBundle_pt are
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>> >
>> > Feb 6, 2010 1:08:04 PM
>> > org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > _warnAbsenceOfBundleKeys
>> > WARNING: Keys missing in bundle:MessageBundle_pt_BR are
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>> >
>> > Feb 6, 2010 1:08:05 PM
>> > org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > _warnAbsenceOfBundleKeys
>> > WARNING: Keys missing in bundle:MessageBundle_ro are
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>> >
>> > Feb 6, 2010 1:08:05 PM
>> > org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > _warnAbsenceOfBundleKeys
>> > WARNING: Keys missing in bundle:MessageBundle_ru are
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>> >
>> > Feb 6, 2010 1:08:05 PM
>> > org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > _warnAbsenceOfBundleKeys
>> > WARNING: Keys missing in bundle:MessageBundle_sk are
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>> >
>> > Feb 6, 2010 1:08:05 PM
>> > org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > _warnAbsenceOfBundleKeys
>> > WARNING: Keys missing in bundle:MessageBundle_sv are
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>> >
>> > Feb 6, 2010 1:08:05 PM
>> > org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > _warnAbsenceOfBundleKeys
>> > WARNING: Keys missing in bundle:MessageBundle_th are
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>> >
>> > Feb 6, 2010 1:08:05 PM
>> > org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > _warnAbsenceOfBundleKeys
>> > WARNING: Keys missing in bundle:MessageBundle_tr are
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>> >
>> > Feb 6, 2010 1:08:05 PM
>> > org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > _warnAbsenceOfBundleKeys
>> > WARNING: Keys missing in bundle:MessageBundle_zh_CN are
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>> >
>> > Feb 6, 2010 1:08:05 PM
>> > org.apache.myfaces.trinidad.resource.MessageBundleTest
>> > _warnAbsenceOfBundleKeys
>> > WARNING: Keys missing in bundle:MessageBundle_zh_TW are
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
>> >
>> > org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
>> >
>> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.343
>> > sec
>> > Running
>> >
>> > org.apache.myfaces.trinidadinternal.style.xml.parse.StyleSheetNodeEqualsTest
>> > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.03 sec
>> > Running
>> > org.apache.myfaces.trinidadinternal.application.ViewHandlerImplTest
>> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014
>> > sec
>> > Running org.apache.myfaces.trinidadinternal.el.TokenizerTest
>> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.005
>> > sec
>> > Running org.apache.myfaces.trinidadinternal.util.SubKeyMapTest
>> > Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.01
>> > sec
>> > Running org.apache.myfaces.trinidadinternal.renderkit.CoreRenderKitTest
>> > Feb 6, 2010 1:08:06 PM
>> > org.apache.myfaces.trinidad.util.ExternalContextUtils
>> > <clinit>
>> > INFO: Portlet Environment Detected: 1.0
>> > Tests run: 775, Failures: 0, Errors: 7, Skipped: 0, Time elapsed: 43.477
>> > sec
>> > <<< FAILURE!
>> > Running org.apache.myfaces.trinidadinternal.context.RequestContextTest
>> > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.024
>> > sec
>> > Running
>> > org.apache.myfaces.trinidadinternal.ui.laf.base.xhtml.XhtmlLafUtilsTest
>> > Feb 6, 2010 1:08:48 PM
>> > org.apache.myfaces.trinidadinternal.renderkit.FacesConfigInfo load
>> > INFO: PARSING
>> >
>> > file:/local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/classes/META-INF/faces-config.xml
>> > Feb 6, 2010 1:08:48 PM
>> > org.apache.myfaces.trinidadinternal.renderkit.FacesConfigInfo load
>> > INFO: PARSING
>> >
>> > jar:file:/export/home/mrmaven/.m2/repository/com/sun/facelets/jsf-facelets/1.1.14/jsf-facelets-1.1.14.jar!/META-INF/faces-config.xml
>> > Couldn't create renderer com.sun.facelets.component.RepeatRenderer
>> > Feb 6, 2010 1:08:48 PM
>> > org.apache.myfaces.trinidadinternal.renderkit.FacesConfigInfo load
>> > INFO: PARSING
>> >
>> > file:/local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/classes/META-INF/faces-config.xml
>> > Feb 6, 2010 1:08:48 PM
>> > org.apache.myfaces.trinidadinternal.renderkit.FacesConfigInfo load
>> > INFO: PARSING
>> >
>> > jar:file:/export/home/mrmaven/.m2/repository/com/sun/facelets/jsf-facelets/1.1.14/jsf-facelets-1.1.14.jar!/META-INF/faces-config.xml
>> > Couldn't create renderer com.sun.facelets.component.RepeatRenderer
>> > Feb 6, 2010 1:08:48 PM
>> > org.apache.myfaces.trinidad.context.RenderingContext
>> > attach
>> > WARNING: Trying to attach RenderingContext to a thread that already had
>> > one.
>> > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.224
>> > sec
>> > Running
>> > org.apache.myfaces.trinidadinternal.validator.ByteLengthValidatorTest
>> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.087
>> > sec
>> > Running org.apache.myfaces.trinidadinternal.taglib.TLDTest
>> > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001
>> > sec
>> >
>> > Results :
>> >
>> > Tests in error:
>> >
>> >  singleStepButtonBar-minimal(org.apache.myfaces.trinidadinternal.renderkit.RenderKitTestCase$RendererTest)
>> >
>> >  singleStepButtonBar-minimalIE(org.apache.myfaces.trinidadinternal.renderkit.RenderKitTestCase$RendererTest)
>> >
>> >  singleStepButtonBar-minimalIERtl(org.apache.myfaces.trinidadinternal.renderkit.RenderKitTestCase$RendererTest)
>> >
>> >  singleStepButtonBar-minimalPPC(org.apache.myfaces.trinidadinternal.renderkit.RenderKitTestCase$RendererTest)
>> >
>> >  singleStepButtonBar-minimalSaf(org.apache.myfaces.trinidadinternal.renderkit.RenderKitTestCase$RendererTest)
>> >
>> >  singleStepButtonBar-minimalScrRdr(org.apache.myfaces.trinidadinternal.renderkit.RenderKitTestCase$RendererTest)
>> >
>> >  singleStepButtonBar-minimalInacc(org.apache.myfaces.trinidadinternal.renderkit.RenderKitTestCase$RendererTest)
>> >
>> > Tests run: 821, Failures: 0, Errors: 7, Skipped: 0
>> >
>> > [INFO]
>> > ------------------------------------------------------------------------
>> > [ERROR] BUILD FAILURE
>> > [INFO]
>> > ------------------------------------------------------------------------
>> > [INFO] There are test failures.
>> >
>> > Please refer to
>> >
>> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/surefire-reports
>> > for the individual test results.
>> > [INFO]
>> > ------------------------------------------------------------------------
>> > [INFO] For more information, run Maven with the -e switch
>> > [INFO]
>> > ------------------------------------------------------------------------
>> > [INFO] Total time: 7 minutes 7 seconds
>> > [INFO] Finished at: Sat Feb 06 13:08:49 UTC 2010
>> > [INFO] Final Memory: 45M/107M
>> > [INFO]
>> > ------------------------------------------------------------------------
>> >
>> >
>> > ****************************************************************************
>> >
>> >
>> >
>>
>>
>>
>> --
>> Matthias Wessendorf
>>
>> blog: http://matthiaswessendorf.wordpress.com/
>> sessions: http://www.slideshare.net/mwessendorf
>> twitter: http://twitter.com/mwessendorf
>
>



-- 
Matthias Wessendorf

blog: http://matthiaswessendorf.wordpress.com/
sessions: http://www.slideshare.net/mwessendorf
twitter: http://twitter.com/mwessendorf

Re: BUILD FAILURE: Apache MyFaces Trinidad 1.2

Posted by Dave Robinson <dr...@gmail.com>.
I grabbed latest and did a clean build and it built fine for me...

On Sat, Feb 6, 2010 at 7:27 AM, Matthias Wessendorf <ma...@apache.org>wrote:

> Hello Matt,
>
> because of REV 904625.
> http://svn.apache.org/viewvc?view=revision&revision=904625
>
> the build is failing.
>
> Make sure you are using Java5 etc.
>
> Thanks!
> Matthias
>
> On Sat, Feb 6, 2010 at 2:09 PM, Continuum@myfaces.zones.apache.org
> <co...@myfaces.apache.org> wrote:
> > Online report :
> >
> http://myfaces.zones.apache.org:8080/continuum/buildResult.action?buildId=26039&projectId=48
> >
> > Build statistics:
> >  State: Failed
> >  Previous State: Ok
> >  Started at: Sat 6 Feb 2010 13:01:39 +0000
> >  Finished at: Sat 6 Feb 2010 13:08:50 +0000
> >  Total time: 7m 11s
> >  Build Trigger: Forced
> >  Build Number: 343
> >  Exit code: 1
> >  Building machine hostname: myfaces.zones.apache.org
> >  Operating system : SunOS(unknown)
> >  Java Home version :         java version "1.5.0_22"
> >         Java(TM) 2 Runtime Environment, Standard Edition (build
> > 1.5.0_22-b03)
> >         Java HotSpot(TM) Server VM (build 1.5.0_22-b03, mixed mode)
> >        Builder version :
> >         Maven version: 2.0.10
> >         Java version: 1.5.0_22
> >         OS name: "sunos" version: "5.10" arch: "x86" Family: "unix"
> >
> >
> ****************************************************************************
> > SCM Changes:
> >
> ****************************************************************************
> > Changed: mcooper @ Fri 29 Jan 2010 21:19:14 +0000
> > Comment: TRINIDAD-1696 acc (screen reader mode) layout tables should
> include
> > role="presentation"
> >
> > Thanks to Dave Robinson for the patch:
> >
> > When using trh:tableLayout in our page to layout some UI components, it
> > gives warning during Accessibility testing:
> > "WARNING - This layout Table could be confused for a data table by Screen
> > Readers"
> > From the html perspective, this warning can be fixed by setting
> > role="presentation" on the html table element.
> >
> > We can add role="presentation" to layout tables with the following
> addition
> > to
> >
> >
> org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.OutputTextUtils.renderLayoutTableAttributes():
> >
> >  if (CoreRenderer.isScreenReaderMode(arc))
> >  {
> >   ResponseWriter writer = context.getResponseWriter();
> >   writer.writeAttribute("datatable", "0", null);
> >
> > --> writer.writeAttribute("role", "presentation", null); <--
> >
> >  }
> > Files changed:
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/xhtml/OutputUtils.java
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/columnGroup-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/editableTable-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputColor-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputDate-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputFile-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputListOfValues-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputNumberSpinbox-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputText-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputText-rows-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/messages-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/messagesError-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/messagesFatal-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/messagesInfo-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/messagesWarn-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/navigationPaneBar-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/navigationPaneButtons-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/navigationPaneList-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/navigationPaneTabs-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelBorderLayout-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelBox-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelButtonBar-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelFormLayout-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelGroupLayout-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelHorizontalLayout-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelHorizontalLayout-separator-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelLabelAndMessage-facet-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelLabelAndMessage-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelList-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelPage-facets-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/panelPageHeader-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/rowLayout-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectBooleanCheckbox-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectBooleanRadio-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectManyCheckbox-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectManyListBox-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectManyShuttle-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectOneChoice-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectOneListbox-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectOneRadio-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectOrderShuttle-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectRangeChoiceBar-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/selectRangeChoiceBarBig-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/singleStepButtonBar-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/table-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/tableSelectMany-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/tableSelectOne-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/train-minimalScrRdr-golden.xml
> > ( 904625 )
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/treeTable-minimalScrRdr-golden.xml
> > ( 904625 )
> >
> > Changed: matzew @ Sat 30 Jan 2010 11:17:15 +0000
> > Comment: added a jetty profile for the new awesome showcase
> > Files changed:
> >
>  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/pom.xml
> > ( 904764 )
> >
> > Changed: jwaldman @ Tue 2 Feb 2010 18:17:22 +0000
> > Comment: TRINIDAD-1702 performance: decrease memory of
> FileSystemStyleCache
> > by reusing CSSStyle objects.
> > Files changed:
> >
>  /myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/style/cache/FileSystemStyleCache.java
> > ( 905740 )
> >
> > Changed: matzew @ Tue 2 Feb 2010 19:09:07 +0000
> > Comment: TRINIDAD-983 - Sortable model for localized text
> >
> >
> > ported patch from Toma havelka to trinidad/jsf 1.2
> > Files changed:
> >
>  /myfaces/trinidad/trunk/trinidad-api/src/main/java/org/apache/myfaces/trinidad/model/SortableModel.java
> > ( 905749 )
> >
> > Changed: ckormos @ Wed 3 Feb 2010 20:59:09 +0000
> > Comment: fixed [TRINIDAD-1706] - Trinidad components showcase demo app
> > doesn't include java sources in packaged war
> > Files changed:
> >
>  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/pom.xml
> > ( 906239 )
> >
> > Changed: ckormos @ Wed 3 Feb 2010 21:07:19 +0000
> > Comment: [trinidad components showcase] :
> >    -  removed usage of commons logging, replaced with logging with
> > java.util.
> >    - added arg to sitemap generator to be able to specify base URL on
> > execution.
> > Files changed:
> >
>  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/java/org/apache/myfaces/trinidaddemo/ComponentDemoRegistry.java
> > ( 906243 )
> >
>  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/java/org/apache/myfaces/trinidaddemo/NavigationHandlerPhaseListener.java
> > ( 906243 )
> >
>  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/java/org/apache/myfaces/trinidaddemo/support/PrettyUrlFilter.java
> > ( 906243 )
> >
>  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/java/org/apache/myfaces/trinidaddemo/support/impl/ComponentVariantDemoDescriptionProvider.java
> > ( 906243 )
> >
>  /myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/java/org/apache/myfaces/trinidaddemo/support/util/SitemapGenerator.java
> > ( 906243 )
> >
> > Changed: bsullivan @ Thu 4 Feb 2010 22:44:48 +0000
> > Comment: Make sure that the ID_KEY is present in the
> UIXFacesBeanImpl.java
> > key set when the UIXFacesBeanImpl is delegating the storageof the ID
> > property back to the UIXComponentBase.
> > Files changed:
> >
>  /myfaces/trinidad/trunk/trinidad-api/src/main/java/org/apache/myfaces/trinidad/bean/FacesBeanImpl.java
> > ( 906703 )
> >
>  /myfaces/trinidad/trunk/trinidad-api/src/main/java/org/apache/myfaces/trinidad/component/UIXFacesBeanImpl.java
> > ( 906703 )
> >
>  /myfaces/trinidad/trunk/trinidad-api/src/main/java/org/apache/myfaces/trinidad/util/CollectionUtils.java
> > ( 906703 )
> >
> > Changed: matzew @ Fri 5 Feb 2010 07:25:50 +0000
> > Comment: added getServerInfo() call
> > Files changed:
> >
>  /myfaces/trinidad/trunk/trinidad-api/src/main/java/org/apache/myfaces/trinidad/util/ExternalContextUtils.java
> > ( 906828 )
> >
> > Changed: matzew @ Sat 6 Feb 2010 12:05:38 +0000
> > Comment: updated scm url
> > Files changed:
> >  /myfaces/trinidad/trunk/pom.xml ( 907204 )
> >
> >
> ****************************************************************************
> > Dependencies Changes:
> >
> ****************************************************************************
> > No dependencies changed
> >
> >
> ****************************************************************************
> > Test Summary:
> >
> ****************************************************************************
> > Tests: 1319
> > Failures: 7
> > Total time: 52037
> >
> >
> ****************************************************************************
> > Output:
> >
> ****************************************************************************
> > [INFO] Scanning for projects...
> > [INFO] Reactor build order: [INFO]   Apache MyFaces Trinidad 1.2
> > [INFO]   Apache MyFaces Trinidad Build
> > [INFO]   Apache MyFaces Trinidad API
> > [INFO]   Apache MyFaces Trinidad Impl
> > [INFO]   Apache MyFaces Trinidad Examples
> > [INFO]   Apache MyFaces Trinidad Blank Demo
> > [INFO]   Apache MyFaces Trinidad Demo
> > [INFO]   Apache MyFaces Trinidad Components Showcase
> > [INFO] Searching repository for plugin with prefix: 'source'.
> > [INFO] org.apache.maven.plugins: checking for updates from
> apache.snapshots
> > [INFO] org.codehaus.mojo: checking for updates from apache.snapshots
> > [INFO]
> > ------------------------------------------------------------------------
> > [INFO] Building Apache MyFaces Trinidad 1.2
> > [INFO]    task-segment: [clean, install, source:jar, deploy]
> > [INFO]
> > ------------------------------------------------------------------------
> > [INFO] [clean:clean]
> > [INFO] Deleting directory
> > /local/continuum-1.1-beta-2/working-directory/48/target
> > [INFO] [xrts:generate-sources {execution: default}]
> > [INFO] Setting property: classpath.resource.loader.class =>
> > 'org.codehaus.plexus.velocity.ContextClassLoaderResourceLoader'.
> > [INFO] Setting property: velocimacro.messages.on => 'false'.
> > [INFO] Setting property: resource.loader => 'classpath'.
> > [INFO] Setting property: resource.manager.logwhenfound => 'false'.
> > [INFO] [remote-resources:process {execution: default}]
> > [INFO] [xrts:generate-test-sources {execution: default}]
> > [INFO] [site:attach-descriptor]
> > [INFO] Unable to load parent project from a relative path: Could not find
> > the model file
> > '/local/continuum-1.1-beta-2/working-directory/48/../pom.xml'. for
> project
> > unknown
> > [INFO] Parent project loaded from repository.
> > [INFO] Preparing source:jar
> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
> > invocation.
> > [INFO] [xrts:generate-sources {execution: default}]
> > [INFO] [source:jar {execution: attach-source}]
> > [INFO] [install:install]
> > [INFO] Installing
> /local/continuum-1.1-beta-2/working-directory/48/pom.xml
> > to
> >
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad/1.2.14-SNAPSHOT/trinidad-1.2.14-SNAPSHOT.pom
> > [INFO] Preparing source:jar
> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
> > invocation.
> > [INFO] [xrts:generate-sources {execution: default}]
> > [INFO] [source:jar]
> > [INFO] [xrts:generate-sources {execution: default}]
> > [INFO] [remote-resources:process {execution: default}]
> > [INFO] [xrts:generate-test-sources {execution: default}]
> > [INFO] [site:attach-descriptor]
> > [INFO] Unable to load parent project from a relative path: Could not find
> > the model file
> > '/local/continuum-1.1-beta-2/working-directory/48/../pom.xml'. for
> project
> > unknown
> > [INFO] Parent project loaded from repository.
> > [INFO] Preparing source:jar
> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
> > invocation.
> > [INFO] [xrts:generate-sources {execution: default}]
> > [INFO] [source:jar {execution: attach-source}]
> > [INFO] [install:install]
> > [INFO] Installing
> /local/continuum-1.1-beta-2/working-directory/48/pom.xml
> > to
> >
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad/1.2.14-SNAPSHOT/trinidad-1.2.14-SNAPSHOT.pom
> > [INFO] [deploy:deploy]
> > [INFO] Retrieving previous build number from apache-maven-snapshots
> > Uploading:
> > scpexe://
> minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad/1.2.14-SNAPSHOT/trinidad-1.2.14-SNAPSHOT.pom
> > [INFO] Retrieving previous metadata from apache-maven-snapshots
> > [INFO] Uploading repository metadata for: 'snapshot
> > org.apache.myfaces.trinidad:trinidad:1.2.14-SNAPSHOT'
> > [INFO] Uploading site descriptor for trinidad 1.2.14-SNAPSHOT site.xml
> > [INFO] Retrieving previous metadata from apache-maven-snapshots
> > [INFO] Uploading repository metadata for: 'artifact
> > org.apache.myfaces.trinidad:trinidad'
> > [INFO]
> > ------------------------------------------------------------------------
> > [INFO] Building Apache MyFaces Trinidad Build
> > [INFO]    task-segment: [clean, install, source:jar, deploy]
> > [INFO]
> > ------------------------------------------------------------------------
> > [INFO] [clean:clean]
> > [INFO] Deleting directory
> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target
> > [INFO] [xrts:generate-sources {execution: default}]
> > [INFO] [remote-resources:process {execution: default}]
> > [INFO] [faces:generate-master-faces-config {execution: default}]
> > [INFO] Generating META-INF/maven-faces-plugin/faces-config.xml
> > [INFO] [resources:resources]
> > [INFO] Using default encoding to copy filtered resources.
> > [INFO] [compiler:compile]
> > [INFO] No sources to compile
> > [INFO] [xrts:generate-test-sources {execution: default}]
> > [INFO] [resources:testResources]
> > [INFO] Using default encoding to copy filtered resources.
> > [INFO] [compiler:testCompile]
> > [INFO] No sources to compile
> > [INFO] [surefire:test]
> > [INFO] Surefire report directory:
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/surefire-reports
> >
> > -------------------------------------------------------
> > T E S T S
> > -------------------------------------------------------
> > There are no tests to run.
> >
> > Results :
> >
> > Tests run: 0, Failures: 0, Errors: 0, Skipped: 0
> >
> > [INFO] [jar:jar]
> > [INFO] Building jar:
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT.jar
> > [INFO] Preparing source:jar
> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
> > invocation.
> > [INFO] [xrts:generate-sources {execution: default}]
> > [INFO] [source:jar {execution: attach-source}]
> > [INFO] Building jar:
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> > [INFO] [install:install]
> > [INFO] Installing
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT.jar
> > to
> >
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT.jar
> > [INFO] Installing
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> > to
> >
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> > [INFO] Preparing source:jar
> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
> > invocation.
> > [INFO] [xrts:generate-sources {execution: default}]
> > [INFO] [source:jar]
> > [INFO] Building jar:
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> > [INFO] [xrts:generate-sources {execution: default}]
> > [INFO] [remote-resources:process {execution: default}]
> > [INFO] [faces:generate-master-faces-config {execution: default}]
> > [INFO] Generating META-INF/maven-faces-plugin/faces-config.xml
> > [INFO] [resources:resources]
> > [INFO] Using default encoding to copy filtered resources.
> > [INFO] [compiler:compile]
> > [INFO] No sources to compile
> > [INFO] [xrts:generate-test-sources {execution: default}]
> > [INFO] [resources:testResources]
> > [INFO] Using default encoding to copy filtered resources.
> > [INFO] [compiler:testCompile]
> > [INFO] No sources to compile
> > [INFO] [surefire:test]
> > [INFO] Surefire report directory:
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/surefire-reports
> >
> > -------------------------------------------------------
> > T E S T S
> > -------------------------------------------------------
> > There are no tests to run.
> >
> > Results :
> >
> > Tests run: 0, Failures: 0, Errors: 0, Skipped: 0
> >
> > [INFO] [jar:jar]
> > [INFO] Building jar:
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT.jar
> > [INFO] Preparing source:jar
> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
> > invocation.
> > [INFO] [xrts:generate-sources {execution: default}]
> > [INFO] [source:jar {execution: attach-source}]
> > [INFO] Building jar:
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> > [INFO] [install:install]
> > [INFO] Installing
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT.jar
> > to
> >
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT.jar
> > [INFO] Installing
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> > to
> >
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> > [INFO] Installing
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> > to
> >
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> > [INFO] Installing
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-build/target/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> > to
> >
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> > [INFO] [deploy:deploy]
> > [INFO] Retrieving previous build number from apache-maven-snapshots
> > Uploading:
> > scpexe://
> minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT.jar
> > [INFO] Retrieving previous metadata from apache-maven-snapshots
> > [INFO] Uploading repository metadata for: 'snapshot
> > org.apache.myfaces.trinidad:trinidad-build:1.2.14-SNAPSHOT'
> > [INFO] Retrieving previous metadata from apache-maven-snapshots
> > [INFO] Uploading repository metadata for: 'artifact
> > org.apache.myfaces.trinidad:trinidad-build'
> > [INFO] Uploading project information for trinidad-build 1.2.14-SNAPSHOT
> > [INFO] Retrieving previous build number from apache-maven-snapshots
> > Uploading:
> > scpexe://
> minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> > [INFO] Retrieving previous build number from apache-maven-snapshots
> > Uploading:
> > scpexe://
> minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> > [INFO] Retrieving previous build number from apache-maven-snapshots
> > Uploading:
> > scpexe://
> minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-build/1.2.14-SNAPSHOT/trinidad-build-1.2.14-SNAPSHOT-sources.jar
> > [INFO]
> > ------------------------------------------------------------------------
> > [INFO] Building Apache MyFaces Trinidad API
> > [INFO]    task-segment: [clean, install, source:jar, deploy]
> > [INFO]
> > ------------------------------------------------------------------------
> > [INFO] [clean:clean]
> > [INFO] Deleting directory
> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target
> > [INFO] [xrts:generate-sources {execution: default}]
> > [INFO] Generating 54 XRTS bundles to
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/maven-xrts-plugin/main/java
> > [INFO] [faces:generate-components {execution: default}]
> > [INFO] Generated 133 component(s)
> > [INFO] [i18n:generate-locale-elements {execution: default}]
> > [INFO] Generating LocaleElements
> > [INFO] [remote-resources:process {execution: default}]
> > [INFO] [resources:resources]
> > [INFO] Using default encoding to copy filtered resources.
> > [INFO] [compiler:compile]
> > [INFO] Compiling 405 source files to
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/classes
> > [INFO] [xrts:generate-test-sources {execution: default}]
> > [INFO] Generating 1 XRTS bundles to
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/maven-xrts-plugin/test/java
> > [INFO] [resources:testResources]
> > [INFO] Using default encoding to copy filtered resources.
> > [INFO] [compiler:testCompile]
> > [INFO] Compiling 93 source files to
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/test-classes
> > [INFO] [surefire:test]
> > [INFO] Surefire report directory:
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/surefire-reports
> >
> > -------------------------------------------------------
> > T E S T S
> > -------------------------------------------------------
> > Running org.apache.myfaces.trinidad.component.AddRemoveTest
> > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.081 sec
> > Running org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest
> >
> descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.159 sec
> > Running org.apache.myfaces.trinidad.util.ServiceTest
> > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.005 sec
> > Running org.apache.myfaces.trinidad.component.UIXSelectManyTest
> > Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.387
> sec
> > Running
> >
> org.apache.myfaces.trinidad.component.core.layout.CoreShowDetailHeaderTest
> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.044 sec
> > Running org.apache.myfaces.trinidad.component.html.HtmlTableLayoutTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018 sec
> > Running org.apache.myfaces.trinidad.validator.LengthValidatorTest
> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.028 sec
> > Running org.apache.myfaces.trinidad.bean.util.ValueMapTest
> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.01 sec
> > Running org.apache.myfaces.trinidad.component.html.HtmlScriptTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.201 sec
> > Running org.apache.myfaces.trinidad.component.core.CoreFormTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.022 sec
> > Running
> >
> org.apache.myfaces.trinidad.component.core.input.CoreSelectBooleanCheckboxTest
> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.019 sec
> > Running org.apache.myfaces.trinidad.component.html.HtmlCellFormatTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018 sec
> > Running org.apache.myfaces.trinidad.validator.LongRangeValidatorTest
> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec
> > Running
> org.apache.myfaces.trinidad.validator.DateRestrictionValidatorTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.022 sec
> > Running
> org.apache.myfaces.trinidad.component.core.layout.CorePanelRadioTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.022 sec
> > Running org.apache.myfaces.trinidad.component.UIXTreeTest
> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014 sec
> > Running org.apache.myfaces.trinidad.component.UIXSwitcherTest
> > Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014 sec
> > Running
> org.apache.myfaces.trinidad.component.core.layout.CorePanelBoxTest
> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018 sec
> > Running org.apache.myfaces.trinidad.convert.ColorConverterTest
> > Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.179
> sec
> > Running
> org.apache.myfaces.trinidad.component.core.nav.CoreBreadCrumbsTest
> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.039 sec
> > Running org.apache.myfaces.trinidad.util.Base64InputStreamTest
> > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.009 sec
> > Running org.apache.myfaces.trinidad.bean.PropertyKeyTest
> > Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.003 sec
> > Running org.apache.myfaces.trinidad.component.core.data.CoreColumnTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.026 sec
> > Running
> org.apache.myfaces.trinidad.component.core.output.CoreSeparatorTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018 sec
> > Running
> org.apache.myfaces.trinidad.component.core.output.CoreOutputTextTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.023 sec
> > Running org.apache.myfaces.trinidad.component.html.HtmlFrameTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017 sec
> > Running org.apache.myfaces.trinidad.util.FastMessageFormatTest
> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec
> > Running org.apache.myfaces.trinidad.validator.RegExpValidatorTest
> > Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015
> sec
> > Running org.apache.myfaces.trinidad.bean.FacesBeanImplTest
> > Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.13 sec
> > Running
> org.apache.myfaces.trinidad.component.core.layout.CoreShowDetailTest
> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018 sec
> > Running org.apache.myfaces.trinidad.component.UIXProcessTest
> > Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017 sec
> > Running
> > org.apache.myfaces.trinidad.component.core.layout.CorePanelSideBarTest
> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 sec
> > Running
> org.apache.myfaces.trinidad.component.html.HtmlFrameBorderLayoutTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.022 sec
> > Running org.apache.myfaces.trinidad.convert.TrinidadDateTimeConverterTest
> > Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.242
> sec
> > Running org.apache.myfaces.trinidad.component.html.HtmlHtmlTest
> > Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.012 sec
> > Running org.apache.myfaces.trinidad.component.UIXSelectOrderTest
> > Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016
> sec
> > Running org.apache.myfaces.trinidad.render.RenderUtilsTest
> >  Found PropertyDescriptor java.beans.PropertyDescriptor@7bf628e6Feb 6,
> 2010
> > 1:04:40 PM org.apache.myfaces.trinidad.util.ComponentUtils
> > _findRelativeComponentDeprecated
> > WARNING: Could not find the component with scopedId :::button1 from
> > UIXInput[UIXEditableFacesBeanImpl, id=input1] with the supported syntax.
> The
> > component was found with the deprecated syntax. Please use the supported
> > syntax.
> > Feb 6, 2010 1:04:40 PM org.apache.myfaces.trinidad.render.RenderUtils
> > getRelativeId
> > WARNING: Could not find the component with scopedId commandButton1 from
> > RenderUtilsTest$TestNamingContainer[UIXFacesBeanImpl, id=table1] with the
> > supported syntax. The component was found with the deprecated syntax.
> Please
> > use the supported syntax.
> > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.01 sec
> > Running org.apache.myfaces.trinidad.validator.DateTimeRangeValidatorTest
> > Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.071
> sec
> > Running
> org.apache.myfaces.trinidad.resource.AggregatingResourceLoaderTest
> > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014 sec
> > Running
> org.apache.myfaces.trinidad.component.core.layout.CorePanelListTest
> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018 sec
> > Running
> > org.apache.myfaces.trinidad.component.core.layout.CorePanelHeaderTest
> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017 sec
> > Running org.apache.myfaces.trinidad.model.RowKeySetImplTest
> > Tests run: 14, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.026
> sec
> > Running org.apache.myfaces.trinidad.util.Base64OutputStreamTest
> > Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.011 sec
> > Running org.apache.myfaces.trinidad.util.ArrayMapTest
> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004 sec
> > Running org.apache.myfaces.trinidad.convert.JsfNumberConverterTest
> > resource bundle javax.faces.Messages could not be found
> > Tests run: 16, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.029
> sec
> > Running
> >
> org.apache.myfaces.trinidad.component.core.layout.CorePanelGroupLayoutTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.025 sec
> > Running org.apache.myfaces.trinidad.validator.ByteLengthValidatorTest
> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014 sec
> > Running org.apache.myfaces.trinidad.component.core.nav.CoreTrainTest
> > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.002 sec
> > Running org.apache.myfaces.trinidad.bean.TypeTest
> > Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.003 sec
> > Running org.apache.myfaces.trinidad.util.ListFromCollectionTest
> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004 sec
> > Running
> >
> org.apache.myfaces.trinidad.component.core.data.CoreSelectRangeChoiceBarTest
> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.022 sec
> > Running org.apache.myfaces.trinidad.component.core.output.CoreSpacerTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.224 sec
> > Running
> > org.apache.myfaces.trinidad.component.core.layout.CorePanelAccordionTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018 sec
> > Running org.apache.myfaces.trinidad.component.FindComponentTest
> > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.013 sec
> > Running org.apache.myfaces.trinidad.model.RowKeySetTreeImplTest
> >
> descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@f11bc
> > Tests run: 13, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.039
> sec
> > Running org.apache.myfaces.trinidad.model.SortableModelTest
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=name
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=name
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=name
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=name
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=name
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=object
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7ac113d1descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=name
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=name
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=name
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=name
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=name
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=name
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=name
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=name
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@15d7792
> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.064 sec
> > Running org.apache.myfaces.trinidad.validator.DoubleRangeValidatorTest
> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 sec
> > Running org.apache.myfaces.trinidad.component.UIXShowDetailTest
> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 sec
> > Running org.apache.myfaces.trinidad.component.UIXInputTest
> > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.05 sec
> > Running org.apache.myfaces.trinidad.convert.TrinidadNumberConverterTest
> > Tests run: 18, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.034
> sec
> > Running org.apache.myfaces.trinidad.convert.JsfDateTimeConverterTest
> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.059 sec
> > Running
> >
> org.apache.myfaces.trinidad.component.core.layout.CorePanelBorderLayoutTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.028 sec
> > Running org.apache.myfaces.trinidad.util.FindRelativeComponentTest
> >  Found PropertyDescriptor java.beans.PropertyDescriptor@e6e3b8feFeb 6,
> 2010
> > 1:04:41 PM org.apache.myfaces.trinidad.util.ComponentUtils
> > _findRelativeComponentDeprecated
> > WARNING: Could not find the component with scopedId :::commandButton1
> from
> > UIXInput[UIXEditableFacesBeanImpl, id=input1] with the supported syntax.
> The
> > component was found with the deprecated syntax. Please use the supported
> > syntax.
> > Feb 6, 2010 1:04:41 PM org.apache.myfaces.trinidad.util.ComponentUtils
> > _findRelativeComponentDeprecated
> > WARNING: Could not find the component with scopedId :::commandButton1
> from
> > UIXInput[UIXEditableFacesBeanImpl, id=inputA] with the supported syntax.
> The
> > component was found with the deprecated syntax. Please use the supported
> > syntax.
> > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec
> > Running
> > org.apache.myfaces.trinidad.component.core.layout.CorePanelChoiceTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018 sec
> > Running org.apache.myfaces.trinidad.component.html.HtmlRowLayoutTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017 sec
> > Running org.apache.myfaces.trinidad.component.UIXTableTest
> > Feb 6, 2010 1:04:41 PM org.apache.myfaces.trinidad.bean.PropertyKey
> > saveValue
> > WARNING: Unserializable
> > value:SortableModel[javax.faces.model.ListDataModel@985fa2] for
> > key:PropertyKey[value,11]
> > Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.058
> sec
> > Running org.apache.myfaces.trinidad.resource.CachingResourceLoaderTest
> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.005 sec
> > Running
> org.apache.myfaces.trinidad.component.core.input.CoreInputHiddenTest
> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.033 sec
> >
> > Results :
> >
> > Tests run: 498, Failures: 0, Errors: 0, Skipped: 0
> >
> > [INFO] [jar:jar]
> > [INFO] Building jar:
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT.jar
> > [INFO] Preparing source:jar
> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
> > invocation.
> > [INFO] [xrts:generate-sources {execution: default}]
> > [INFO] Nothing to generate - all XRTS bundles are up to date
> > [INFO] [faces:generate-components {execution: default}]
> > [INFO] Generated 133 component(s)
> > [INFO] [i18n:generate-locale-elements {execution: default}]
> > [INFO] Generating LocaleElements
> > [INFO] [source:jar {execution: attach-source}]
> > [INFO] Building jar:
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> > [INFO] [jar:test-jar {execution: default}]
> > [INFO] Building jar:
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-tests.jar
> > [INFO] [install:install]
> > [INFO] Installing
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT.jar
> > to
> >
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT.jar
> > [INFO] Installing
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> > to
> >
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> > [INFO] Installing
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-tests.jar
> > to
> >
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-tests.jar
> > [INFO] Preparing source:jar
> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
> > invocation.
> > [INFO] [xrts:generate-sources {execution: default}]
> > [INFO] Nothing to generate - all XRTS bundles are up to date
> > [INFO] [faces:generate-components {execution: default}]
> > [INFO] Generated 133 component(s)
> > [INFO] [i18n:generate-locale-elements {execution: default}]
> > [INFO] Generating LocaleElements
> > [INFO] [source:jar]
> > [INFO] Building jar:
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> > [INFO] [xrts:generate-sources {execution: default}]
> > [INFO] Nothing to generate - all XRTS bundles are up to date
> > [INFO] [faces:generate-components {execution: default}]
> > [INFO] Generated 133 component(s)
> > [INFO] [i18n:generate-locale-elements {execution: default}]
> > [INFO] Generating LocaleElements
> > [INFO] [remote-resources:process {execution: default}]
> > [INFO] [resources:resources]
> > [INFO] Using default encoding to copy filtered resources.
> > [INFO] [compiler:compile]
> > [INFO] Compiling 133 source files to
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/classes
> > [INFO] [xrts:generate-test-sources {execution: default}]
> > [INFO] Nothing to generate - all XRTS bundles are up to date
> > [INFO] [resources:testResources]
> > [INFO] Using default encoding to copy filtered resources.
> > [INFO] [compiler:testCompile]
> > [INFO] Nothing to compile - all classes are up to date
> > [INFO] [surefire:test]
> > [INFO] Surefire report directory:
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/surefire-reports
> >
> > -------------------------------------------------------
> > T E S T S
> > -------------------------------------------------------
> > Running org.apache.myfaces.trinidad.component.AddRemoveTest
> > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.092 sec
> > Running org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest
> >
> descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.148 sec
> > Running org.apache.myfaces.trinidad.util.ServiceTest
> > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.005 sec
> > Running org.apache.myfaces.trinidad.component.UIXSelectManyTest
> > Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.104
> sec
> > Running
> >
> org.apache.myfaces.trinidad.component.core.layout.CoreShowDetailHeaderTest
> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.036 sec
> > Running org.apache.myfaces.trinidad.component.html.HtmlTableLayoutTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 sec
> > Running org.apache.myfaces.trinidad.validator.LengthValidatorTest
> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.026 sec
> > Running org.apache.myfaces.trinidad.bean.util.ValueMapTest
> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.008 sec
> > Running org.apache.myfaces.trinidad.component.html.HtmlScriptTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014 sec
> > Running org.apache.myfaces.trinidad.component.core.CoreFormTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.019 sec
> > Running
> >
> org.apache.myfaces.trinidad.component.core.input.CoreSelectBooleanCheckboxTest
> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018 sec
> > Running org.apache.myfaces.trinidad.component.html.HtmlCellFormatTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 sec
> > Running org.apache.myfaces.trinidad.validator.LongRangeValidatorTest
> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.013 sec
> > Running
> org.apache.myfaces.trinidad.validator.DateRestrictionValidatorTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.025 sec
> > Running
> org.apache.myfaces.trinidad.component.core.layout.CorePanelRadioTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.02 sec
> > Running org.apache.myfaces.trinidad.component.UIXTreeTest
> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.012 sec
> > Running org.apache.myfaces.trinidad.component.UIXSwitcherTest
> > Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.013 sec
> > Running
> org.apache.myfaces.trinidad.component.core.layout.CorePanelBoxTest
> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 sec
> > Running org.apache.myfaces.trinidad.convert.ColorConverterTest
> > Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017
> sec
> > Running
> org.apache.myfaces.trinidad.component.core.nav.CoreBreadCrumbsTest
> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.032 sec
> > Running org.apache.myfaces.trinidad.util.Base64InputStreamTest
> > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.008 sec
> > Running org.apache.myfaces.trinidad.bean.PropertyKeyTest
> > Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004 sec
> > Running org.apache.myfaces.trinidad.component.core.data.CoreColumnTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.023 sec
> > Running
> org.apache.myfaces.trinidad.component.core.output.CoreSeparatorTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 sec
> > Running
> org.apache.myfaces.trinidad.component.core.output.CoreOutputTextTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.023 sec
> > Running org.apache.myfaces.trinidad.component.html.HtmlFrameTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.076 sec
> > Running org.apache.myfaces.trinidad.util.FastMessageFormatTest
> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec
> > Running org.apache.myfaces.trinidad.validator.RegExpValidatorTest
> > Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.012
> sec
> > Running org.apache.myfaces.trinidad.bean.FacesBeanImplTest
> > Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.032
> sec
> > Running
> org.apache.myfaces.trinidad.component.core.layout.CoreShowDetailTest
> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017 sec
> > Running org.apache.myfaces.trinidad.component.UIXProcessTest
> > Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec
> > Running
> > org.apache.myfaces.trinidad.component.core.layout.CorePanelSideBarTest
> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec
> > Running
> org.apache.myfaces.trinidad.component.html.HtmlFrameBorderLayoutTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.019 sec
> > Running org.apache.myfaces.trinidad.convert.TrinidadDateTimeConverterTest
> > Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.183
> sec
> > Running org.apache.myfaces.trinidad.component.html.HtmlHtmlTest
> > Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.01 sec
> > Running org.apache.myfaces.trinidad.component.UIXSelectOrderTest
> > Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015
> sec
> >  Found PropertyDescriptor java.beans.PropertyDescriptor@7bf628e6Feb 6,
> 2010
> > 1:05:21 PM org.apache.myfaces.trinidad.util.ComponentUtils
> > _findRelativeComponentDeprecated
> > WARNING: Could not find the component with scopedId :::button1 from
> > UIXInput[UIXEditableFacesBeanImpl, id=input1] with the supported syntax.
> The
> > component was found with the deprecated syntax. Please use the supported
> > syntax.
> > Feb 6, 2010 1:05:21 PM org.apache.myfaces.trinidad.render.RenderUtils
> > getRelativeId
> > WARNING: Could not find the component with scopedId commandButton1 from
> > RenderUtilsTest$TestNamingContainer[UIXFacesBeanImpl, id=table1] with the
> > supported syntax. The component was found with the deprecated syntax.
> Please
> > use the supported syntax.
> > Running org.apache.myfaces.trinidad.render.RenderUtilsTest
> > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.007 sec
> > Running org.apache.myfaces.trinidad.validator.DateTimeRangeValidatorTest
> > Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.958
> sec
> > Running
> org.apache.myfaces.trinidad.resource.AggregatingResourceLoaderTest
> > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.208 sec
> > Running
> org.apache.myfaces.trinidad.component.core.layout.CorePanelListTest
> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.166 sec
> > Running
> > org.apache.myfaces.trinidad.component.core.layout.CorePanelHeaderTest
> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.163 sec
> > Running org.apache.myfaces.trinidad.model.RowKeySetImplTest
> > Tests run: 14, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.581
> sec
> > Running org.apache.myfaces.trinidad.util.Base64OutputStreamTest
> > Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.171 sec
> > Running org.apache.myfaces.trinidad.util.ArrayMapTest
> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.059 sec
> > Running org.apache.myfaces.trinidad.convert.JsfNumberConverterTest
> > resource bundle javax.faces.Messages could not be found
> > Tests run: 16, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.661
> sec
> > Running
> >
> org.apache.myfaces.trinidad.component.core.layout.CorePanelGroupLayoutTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.345 sec
> > Running org.apache.myfaces.trinidad.validator.ByteLengthValidatorTest
> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.296 sec
> > Running org.apache.myfaces.trinidad.component.core.nav.CoreTrainTest
> > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.055 sec
> > Running org.apache.myfaces.trinidad.bean.TypeTest
> > Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.068 sec
> > Running org.apache.myfaces.trinidad.util.ListFromCollectionTest
> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.095 sec
> > Running
> >
> org.apache.myfaces.trinidad.component.core.data.CoreSelectRangeChoiceBarTest
> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.117 sec
> > Running org.apache.myfaces.trinidad.component.core.output.CoreSpacerTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.055 sec
> > Running
> > org.apache.myfaces.trinidad.component.core.layout.CorePanelAccordionTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec
> > Running org.apache.myfaces.trinidad.component.FindComponentTest
> > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.011 sec
> > Running org.apache.myfaces.trinidad.model.RowKeySetTreeImplTest
> >
> descriptor(class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.ChildPropertyTreeModelTest$Bean,
> > name=kids
> >  Found BeanInfo java.beans.GenericBeanInfo@87c801
> > Tests run: 13, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.029
> sec
> > Running org.apache.myfaces.trinidad.model.SortableModelTest
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7bf628e6descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=name
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=name
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=name
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=name
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=name
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=object
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@7ac113d1descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=name
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=name
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=name
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=name
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=name
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=name
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=name
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=name
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@28fa8194descriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> >  Found PropertyDescriptor
> > java.beans.PropertyDescriptor@e6e3b8fedescriptor
> (class=org.apache.myfaces.trinidad.model.SortableModelTest$Bean,
> > name=age
> >  Found BeanInfo java.beans.GenericBeanInfo@162f58e
> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014 sec
> > Running org.apache.myfaces.trinidad.validator.DoubleRangeValidatorTest
> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.01 sec
> > Running org.apache.myfaces.trinidad.component.UIXShowDetailTest
> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.013 sec
> > Running org.apache.myfaces.trinidad.component.UIXInputTest
> > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.042 sec
> > Running org.apache.myfaces.trinidad.convert.TrinidadNumberConverterTest
> > Tests run: 18, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.028
> sec
> > Running org.apache.myfaces.trinidad.convert.JsfDateTimeConverterTest
> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.006 sec
> > Running
> >
> org.apache.myfaces.trinidad.component.core.layout.CorePanelBorderLayoutTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.02 sec
> > Running org.apache.myfaces.trinidad.util.FindRelativeComponentTest
> >  Found PropertyDescriptor java.beans.PropertyDescriptor@e6e3b8feFeb 6,
> 2010
> > 1:05:26 PM org.apache.myfaces.trinidad.util.ComponentUtils
> > _findRelativeComponentDeprecated
> > WARNING: Could not find the component with scopedId :::commandButton1
> from
> > UIXInput[UIXEditableFacesBeanImpl, id=input1] with the supported syntax.
> The
> > component was found with the deprecated syntax. Please use the supported
> > syntax.
> > Feb 6, 2010 1:05:26 PM org.apache.myfaces.trinidad.util.ComponentUtils
> > _findRelativeComponentDeprecated
> > WARNING: Could not find the component with scopedId :::commandButton1
> from
> > UIXInput[UIXEditableFacesBeanImpl, id=inputA] with the supported syntax.
> The
> > component was found with the deprecated syntax. Please use the supported
> > syntax.
> > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.013 sec
> > Running
> > org.apache.myfaces.trinidad.component.core.layout.CorePanelChoiceTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017 sec
> > Running org.apache.myfaces.trinidad.component.html.HtmlRowLayoutTest
> > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014 sec
> > Running org.apache.myfaces.trinidad.component.UIXTableTest
> > Feb 6, 2010 1:05:26 PM org.apache.myfaces.trinidad.bean.PropertyKey
> > saveValue
> > WARNING: Unserializable
> > value:SortableModel[javax.faces.model.ListDataModel@1112776] for
> > key:PropertyKey[value,11]
> > Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.112
> sec
> > Running org.apache.myfaces.trinidad.resource.CachingResourceLoaderTest
> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004 sec
> > Running
> org.apache.myfaces.trinidad.component.core.input.CoreInputHiddenTest
> > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.012 sec
> >
> > Results :
> >
> > Tests run: 498, Failures: 0, Errors: 0, Skipped: 0
> >
> > [INFO] [jar:jar]
> > [INFO] Building jar:
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT.jar
> > [INFO] Preparing source:jar
> > [WARNING] Removing: jar from forked lifecycle, to prevent recursive
> > invocation.
> > [INFO] [xrts:generate-sources {execution: default}]
> > [INFO] Nothing to generate - all XRTS bundles are up to date
> > [INFO] [faces:generate-components {execution: default}]
> > [INFO] Generated 133 component(s)
> > [INFO] [i18n:generate-locale-elements {execution: default}]
> > [INFO] Generating LocaleElements
> > [INFO] [source:jar {execution: attach-source}]
> > [INFO] Building jar:
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> > [INFO] [jar:test-jar {execution: default}]
> > [INFO] Building jar:
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-tests.jar
> > [INFO] [install:install]
> > [INFO] Installing
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT.jar
> > to
> >
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT.jar
> > [INFO] Installing
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> > to
> >
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> > [INFO] Installing
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-tests.jar
> > to
> >
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-tests.jar
> > [INFO] Installing
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> > to
> >
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> > [INFO] Installing
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> > to
> >
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> > [INFO] Installing
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-api/target/trinidad-api-1.2.14-SNAPSHOT-tests.jar
> > to
> >
> /export/home/mrmaven/.m2/repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-tests.jar
> > [INFO] [deploy:deploy]
> > [INFO] Retrieving previous build number from apache-maven-snapshots
> > Uploading:
> > scpexe://
> minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT.jar
> > [INFO] Retrieving previous metadata from apache-maven-snapshots
> > [INFO] Uploading repository metadata for: 'artifact
> > org.apache.myfaces.trinidad:trinidad-api'
> > [INFO] Uploading project information for trinidad-api 1.2.14-SNAPSHOT
> > [INFO] Retrieving previous metadata from apache-maven-snapshots
> > [INFO] Uploading repository metadata for: 'snapshot
> > org.apache.myfaces.trinidad:trinidad-api:1.2.14-SNAPSHOT'
> > [INFO] Retrieving previous build number from apache-maven-snapshots
> > Uploading:
> > scpexe://
> minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> > [INFO] Retrieving previous build number from apache-maven-snapshots
> > Uploading:
> > scpexe://
> minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-tests.jar
> > [INFO] Retrieving previous build number from apache-maven-snapshots
> > Uploading:
> > scpexe://
> minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> > [INFO] Retrieving previous build number from apache-maven-snapshots
> > Uploading:
> > scpexe://
> minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-sources.jar
> > [INFO] Retrieving previous build number from apache-maven-snapshots
> > Uploading:
> > scpexe://
> minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/trinidad/trinidad-api/1.2.14-SNAPSHOT/trinidad-api-1.2.14-SNAPSHOT-tests.jar
> > [INFO]
> > ------------------------------------------------------------------------
> > [INFO] Building Apache MyFaces Trinidad Impl
> > [INFO]    task-segment: [clean, install, source:jar, deploy]
> > [INFO]
> > ------------------------------------------------------------------------
> > [INFO] [clean:clean]
> > [INFO] Deleting directory
> > /local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target
> > [INFO] [faces:generate-jsp-taglibs {execution: default}]
> > [INFO] Generated 143 JSP tag(s)
> > [INFO] [faces:generate-facelets-taglibs {execution: default}]
> > [INFO] Generated META-INF/tr.taglib.xml
> > [INFO] Generated META-INF/trh.taglib.xml
> > [INFO] [faces:generate-renderer-map {execution: default}]
> > [INFO] [i18n:generate-locale-elements {execution: default}]
> > [INFO] Generating LocaleElements
> > [INFO] [i18n:generate-javascript-locales {execution: default}]
> > [INFO] Generating Javascript Locales
> > [INFO] [javascript:reduce-javascript {execution: default}]
> > [INFO] [xrts:generate-sources {execution: default}]
> > [INFO] Generating 59 XRTS bundles to
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/maven-xrts-plugin/main/java
> > [INFO] [faces:generate-faces-config {execution: default}]
> > [INFO] Generated META-INF/faces-config.xml
> > [INFO] [remote-resources:process {execution: default}]
> > [INFO] [resources:resources]
> > [INFO] Using default encoding to copy filtered resources.
> > [INFO] [compiler:compile]
> > [INFO] Compiling 1170 source files to
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/classes
> > [INFO] [xrts:generate-test-sources {execution: default}]
> > [INFO] [resources:testResources]
> > [INFO] Using default encoding to copy filtered resources.
> > [INFO] snapshot org.apache.myfaces.trinidad:trinidad-api:1.2.14-SNAPSHOT:
> > checking for updates from java.net
> > [INFO] snapshot org.apache.myfaces.trinidad:trinidad-api:1.2.14-SNAPSHOT:
> > checking for updates from apache.snapshots
> > [INFO] [compiler:testCompile]
> > [INFO] Compiling 50 source files to
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/test-classes
> > [INFO] [surefire:test]
> > [INFO] Surefire report directory:
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/surefire-reports
> > Feb 6, 2010 1:07:56 PM
> > org.apache.myfaces.trinidadinternal.renderkit.FacesConfigInfo load
> > INFO: PARSING
> >
> file:/local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/classes/META-INF/faces-config.xml
> > Feb 6, 2010 1:07:57 PM
> > org.apache.myfaces.trinidadinternal.renderkit.FacesConfigInfo load
> > INFO: PARSING
> >
> jar:file:/export/home/mrmaven/.m2/repository/com/sun/facelets/jsf-facelets/1.1.14/jsf-facelets-1.1.14.jar!/META-INF/faces-config.xml
> > Couldn't create renderer com.sun.facelets.component.RepeatRenderer
> >
> > -------------------------------------------------------
> > T E S T S
> > -------------------------------------------------------
> > Running org.apache.myfaces.trinidadinternal.metadata.RegionMetadataTest
> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.169 sec
> > Running
> >
> org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.table.TableSelectOneRendererTest
> > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.15 sec
> > Running org.apache.myfaces.trinidadinternal.el.FormatterMapTest
> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004 sec
> > Running org.apache.myfaces.trinidadinternal.util.TokenCacheTest
> > Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.007 sec
> > Running
> > org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.OutputUtilsTest
> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.003 sec
> > Running org.apache.myfaces.trinidadinternal.context.PartialTriggersTest
> > Feb 6, 2010 1:08:04 PM org.apache.myfaces.trinidad.util.ComponentUtils
> > _findRelativeComponentDeprecated
> > WARNING: Could not find the component with scopedId :::commandButton1
> from
> > UIXInput[UIXEditableFacesBeanImpl, id=input1] with the supported syntax.
> The
> > component was found with the deprecated syntax. Please use the supported
> > syntax.
> > Feb 6, 2010 1:08:04 PM org.apache.myfaces.trinidad.util.ComponentUtils
> > _findRelativeComponentDeprecated
> > WARNING: Could not find the component with scopedId :::commandButton1
> from
> > UIXInput[UIXEditableFacesBeanImpl, id=inputA] with the supported syntax.
> The
> > component was found with the deprecated syntax. Please use the supported
> > syntax.
> > Feb 6, 2010 1:08:04 PM
> > org.apache.myfaces.trinidadinternal.context.RequestContextImpl
> > addPartialTriggerListeners
> > WARNING: Could not find partial trigger commandButton1 from
> >
> UIXTable[org.apache.myfaces.trinidad.component.UIXTable$RowKeyFacesBeanWrapper@24d0d0
> ,
> > id=table1] with the supported partialTriggers syntax. The partial trigger
> > was found with the deprecated syntax. Please use the supported syntax.
> > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.05 sec
> > Running org.apache.myfaces.trinidadinternal.FacesConfigTest
> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec
> > Feb 6, 2010 1:08:04 PM
> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> > _warnAbsenceOfBundleKeys
> > WARNING: Keys missing in bundle:MessageBundle_ar are
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >
> > Feb 6, 2010 1:08:04 PM
> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> > _warnAbsenceOfBundleKeys
> > WARNING: Keys missing in bundle:MessageBundle_cs are
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >
> > Feb 6, 2010 1:08:04 PM
> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> > _warnAbsenceOfBundleKeys
> > WARNING: Keys missing in bundle:MessageBundle_da are
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >
> > Feb 6, 2010 1:08:04 PM
> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> > _warnAbsenceOfBundleKeys
> > WARNING: Keys missing in bundle:MessageBundle_de are
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >
> > Feb 6, 2010 1:08:04 PM
> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> > _warnAbsenceOfBundleKeys
> > WARNING: Keys missing in bundle:MessageBundle_el are
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >
> > Running org.apache.myfaces.trinidad.resource.MessageBundleTest
> > Feb 6, 2010 1:08:04 PM
> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> > _warnAbsenceOfBundleKeys
> > WARNING: Keys missing in bundle:MessageBundle_es are
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >
> > Feb 6, 2010 1:08:04 PM
> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> > _warnAbsenceOfBundleKeys
> > WARNING: Keys missing in bundle:MessageBundle_fi are
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >
> > Feb 6, 2010 1:08:04 PM
> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> > _warnAbsenceOfBundleKeys
> > WARNING: Keys missing in bundle:MessageBundle_fr are
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >
> > Feb 6, 2010 1:08:04 PM
> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> > _warnAbsenceOfBundleKeys
> > WARNING: Keys missing in bundle:MessageBundle_hu are
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >
> > Feb 6, 2010 1:08:04 PM
> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> > _warnAbsenceOfBundleKeys
> > WARNING: Keys missing in bundle:MessageBundle_it are
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >
> > Feb 6, 2010 1:08:04 PM
> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> > _warnAbsenceOfBundleKeys
> > WARNING: Keys missing in bundle:MessageBundle_iw are
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >
> > Feb 6, 2010 1:08:04 PM
> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> > _warnAbsenceOfBundleKeys
> > WARNING: Keys missing in bundle:MessageBundle_ja are
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >
> > Feb 6, 2010 1:08:04 PM
> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> > _warnAbsenceOfBundleKeys
> > WARNING: Keys missing in bundle:MessageBundle_ko are
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >
> > Feb 6, 2010 1:08:04 PM
> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> > _warnAbsenceOfBundleKeys
> > WARNING: Keys missing in bundle:MessageBundle_nl are
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >
> > Feb 6, 2010 1:08:04 PM
> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> > _warnAbsenceOfBundleKeys
> > WARNING: Keys missing in bundle:MessageBundle_no are
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >
> > Feb 6, 2010 1:08:04 PM
> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> > _warnAbsenceOfBundleKeys
> > WARNING: Keys missing in bundle:MessageBundle_pl are
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >
> > Feb 6, 2010 1:08:04 PM
> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> > _warnAbsenceOfBundleKeys
> > WARNING: Keys missing in bundle:MessageBundle_pt are
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >
> > Feb 6, 2010 1:08:04 PM
> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> > _warnAbsenceOfBundleKeys
> > WARNING: Keys missing in bundle:MessageBundle_pt_BR are
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >
> > Feb 6, 2010 1:08:05 PM
> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> > _warnAbsenceOfBundleKeys
> > WARNING: Keys missing in bundle:MessageBundle_ro are
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >
> > Feb 6, 2010 1:08:05 PM
> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> > _warnAbsenceOfBundleKeys
> > WARNING: Keys missing in bundle:MessageBundle_ru are
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >
> > Feb 6, 2010 1:08:05 PM
> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> > _warnAbsenceOfBundleKeys
> > WARNING: Keys missing in bundle:MessageBundle_sk are
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >
> > Feb 6, 2010 1:08:05 PM
> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> > _warnAbsenceOfBundleKeys
> > WARNING: Keys missing in bundle:MessageBundle_sv are
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >
> > Feb 6, 2010 1:08:05 PM
> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> > _warnAbsenceOfBundleKeys
> > WARNING: Keys missing in bundle:MessageBundle_th are
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >
> > Feb 6, 2010 1:08:05 PM
> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> > _warnAbsenceOfBundleKeys
> > WARNING: Keys missing in bundle:MessageBundle_tr are
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >
> > Feb 6, 2010 1:08:05 PM
> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> > _warnAbsenceOfBundleKeys
> > WARNING: Keys missing in bundle:MessageBundle_zh_CN are
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >
> > Feb 6, 2010 1:08:05 PM
> > org.apache.myfaces.trinidad.resource.MessageBundleTest
> > _warnAbsenceOfBundleKeys
> > WARNING: Keys missing in bundle:MessageBundle_zh_TW are
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE_detail
> >
> org.apache.myfaces.trinidad.convert.DateTimeConverter.CONVERT_DATE_INVALID_DATE
> >
> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.343 sec
> > Running
> >
> org.apache.myfaces.trinidadinternal.style.xml.parse.StyleSheetNodeEqualsTest
> > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.03 sec
> > Running
> org.apache.myfaces.trinidadinternal.application.ViewHandlerImplTest
> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014 sec
> > Running org.apache.myfaces.trinidadinternal.el.TokenizerTest
> > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.005 sec
> > Running org.apache.myfaces.trinidadinternal.util.SubKeyMapTest
> > Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.01 sec
> > Running org.apache.myfaces.trinidadinternal.renderkit.CoreRenderKitTest
> > Feb 6, 2010 1:08:06 PM
> org.apache.myfaces.trinidad.util.ExternalContextUtils
> > <clinit>
> > INFO: Portlet Environment Detected: 1.0
> > Tests run: 775, Failures: 0, Errors: 7, Skipped: 0, Time elapsed: 43.477
> sec
> > <<< FAILURE!
> > Running org.apache.myfaces.trinidadinternal.context.RequestContextTest
> > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.024 sec
> > Running
> > org.apache.myfaces.trinidadinternal.ui.laf.base.xhtml.XhtmlLafUtilsTest
> > Feb 6, 2010 1:08:48 PM
> > org.apache.myfaces.trinidadinternal.renderkit.FacesConfigInfo load
> > INFO: PARSING
> >
> file:/local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/classes/META-INF/faces-config.xml
> > Feb 6, 2010 1:08:48 PM
> > org.apache.myfaces.trinidadinternal.renderkit.FacesConfigInfo load
> > INFO: PARSING
> >
> jar:file:/export/home/mrmaven/.m2/repository/com/sun/facelets/jsf-facelets/1.1.14/jsf-facelets-1.1.14.jar!/META-INF/faces-config.xml
> > Couldn't create renderer com.sun.facelets.component.RepeatRenderer
> > Feb 6, 2010 1:08:48 PM
> > org.apache.myfaces.trinidadinternal.renderkit.FacesConfigInfo load
> > INFO: PARSING
> >
> file:/local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/classes/META-INF/faces-config.xml
> > Feb 6, 2010 1:08:48 PM
> > org.apache.myfaces.trinidadinternal.renderkit.FacesConfigInfo load
> > INFO: PARSING
> >
> jar:file:/export/home/mrmaven/.m2/repository/com/sun/facelets/jsf-facelets/1.1.14/jsf-facelets-1.1.14.jar!/META-INF/faces-config.xml
> > Couldn't create renderer com.sun.facelets.component.RepeatRenderer
> > Feb 6, 2010 1:08:48 PM
> org.apache.myfaces.trinidad.context.RenderingContext
> > attach
> > WARNING: Trying to attach RenderingContext to a thread that already had
> one.
> > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.224 sec
> > Running
> > org.apache.myfaces.trinidadinternal.validator.ByteLengthValidatorTest
> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.087 sec
> > Running org.apache.myfaces.trinidadinternal.taglib.TLDTest
> > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec
> >
> > Results :
> >
> > Tests in error:
> >
>  singleStepButtonBar-minimal(org.apache.myfaces.trinidadinternal.renderkit.RenderKitTestCase$RendererTest)
> >
>  singleStepButtonBar-minimalIE(org.apache.myfaces.trinidadinternal.renderkit.RenderKitTestCase$RendererTest)
> >
>  singleStepButtonBar-minimalIERtl(org.apache.myfaces.trinidadinternal.renderkit.RenderKitTestCase$RendererTest)
> >
>  singleStepButtonBar-minimalPPC(org.apache.myfaces.trinidadinternal.renderkit.RenderKitTestCase$RendererTest)
> >
>  singleStepButtonBar-minimalSaf(org.apache.myfaces.trinidadinternal.renderkit.RenderKitTestCase$RendererTest)
> >
>  singleStepButtonBar-minimalScrRdr(org.apache.myfaces.trinidadinternal.renderkit.RenderKitTestCase$RendererTest)
> >
>  singleStepButtonBar-minimalInacc(org.apache.myfaces.trinidadinternal.renderkit.RenderKitTestCase$RendererTest)
> >
> > Tests run: 821, Failures: 0, Errors: 7, Skipped: 0
> >
> > [INFO]
> > ------------------------------------------------------------------------
> > [ERROR] BUILD FAILURE
> > [INFO]
> > ------------------------------------------------------------------------
> > [INFO] There are test failures.
> >
> > Please refer to
> >
> /local/continuum-1.1-beta-2/working-directory/48/trinidad-impl/target/surefire-reports
> > for the individual test results.
> > [INFO]
> > ------------------------------------------------------------------------
> > [INFO] For more information, run Maven with the -e switch
> > [INFO]
> > ------------------------------------------------------------------------
> > [INFO] Total time: 7 minutes 7 seconds
> > [INFO] Finished at: Sat Feb 06 13:08:49 UTC 2010
> > [INFO] Final Memory: 45M/107M
> > [INFO]
> > ------------------------------------------------------------------------
> >
> >
> ****************************************************************************
> >
> >
> >
>
>
>
> --
> Matthias Wessendorf
>
> blog: http://matthiaswessendorf.wordpress.com/
> sessions: http://www.slideshare.net/mwessendorf
> twitter: http://twitter.com/mwessendorf
>