<package> matching classes in sub-packages?

345 views
Skip to first unread message

hls...@gmail.com

unread,
Dec 16, 2009, 4:14:10 PM12/16/09
to testng-users
I'm having an odd problem; my testng.xml file specifies a number of
packages to execute tests from. However, it appears as if TestNG is
recursing into sub-packages and finding classes I don't want
executed. This doesn't match my expectations, or the documentation,
which states that you must add ".*" to your package name to get this
behavior.

Extra caveat: my tests work correctly from inside Eclipse using TestNG
Plugin 5.9.0.5.

I've been using Maven + TestNG 5.8 but have upgraded to TestNG 5.10
and don't see the change.

First, my raw testng.xml:

<test name="Public APIs" enabled="true">
<packages>
<package name="org.apache.tapestry5"/>
<package name="org.apache.tapestry5.dom"/>
<package name="org.apache.tapestry5.json"/>
<package name="org.apache.tapestry5.runtime"/>
<package name="org.apache.tapestry5.services"/>
<package name="org.apache.tapestry5.urlrewriter"/>
<package name="org.apache.tapestry5.util"/>
<package name="org.apache.tapestry5.validator"/>
</packages>
</test>

(I temporarily disabled all my other tests).

This fails, because code from org.apache.tapestry5.test gets executed,
which is not what I want.

If I look at my output documentation, I can see the
o.a.t.t.SeleniumLauncher class getting execute.

Further, if I look at the documented testng.xml, I see it expanded
out:

<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
<suite thread-count="5" skipfailedinvocationCounts="false" verbose="2"
name="Tapestry Core" junit="false" parallel="false" annotations="JDK"
data-provider-thread-count="10">
<test name="Public APIs" junit="false">
<packages>
<package name="org.apache.tapestry5">
</package>
<package name="org.apache.tapestry5.dom">
</package>
<package name="org.apache.tapestry5.json">
</package>
<package name="org.apache.tapestry5.runtime">
</package>
<package name="org.apache.tapestry5.services">
</package>
<package name="org.apache.tapestry5.urlrewriter">
</package>
<package name="org.apache.tapestry5.util">
</package>
<package name="org.apache.tapestry5.validator">
</package>
</packages>
<classes>
<class name="org.apache.tapestry5.ContentTypeTest"/>
<class name="org.apache.tapestry5.FieldComponent"/>
<class name="org.apache.tapestry5.MarkupUtilsTest"/>
<class name="org.apache.tapestry5.Stooge"/>
<class name="org.apache.tapestry5.ValidationTrackerImplTest"/>
<class name="org.apache.tapestry5.VersionUtilsTest"/>
<class name="org.apache.tapestry5.AbstractOptionModel"/>
<class name="org.apache.tapestry5.Asset"/>
<class name="org.apache.tapestry5.Asset2"/>
<class
name="org.apache.tapestry5.BaseOptimizedApplicationStateObject"/>
<class
name="org.apache.tapestry5.BaseOptimizedSessionPersistedObject"/>
<class name="org.apache.tapestry5.BaseValidationDecorator"/>
<class name="org.apache.tapestry5.Binding"/>
<class name="org.apache.tapestry5.BindingConstants"/>
<class name="org.apache.tapestry5.Block"/>
<class name="org.apache.tapestry5.BlockNotFoundException"/>
<class name="org.apache.tapestry5.ClientElement"/>
<class name="org.apache.tapestry5.ComponentAction"/>
<class name="org.apache.tapestry5.ComponentEventCallback"/>
<class name="org.apache.tapestry5.ComponentResources"/>
<class name="org.apache.tapestry5.ComponentResourcesCommon"/>
<class name="org.apache.tapestry5.ContentType"/>
<class name="org.apache.tapestry5.CSSClassConstants"/>
<class name="org.apache.tapestry5.EventConstants"/>
<class name="org.apache.tapestry5.EventContext"/>
<class name="org.apache.tapestry5.Field"/>
<class name="org.apache.tapestry5.FieldFocusPriority"/>
<class name="org.apache.tapestry5.FieldTranslator"/>
<class name="org.apache.tapestry5.FieldValidationSupport"/>
<class name="org.apache.tapestry5.FieldValidator"/>
<class name="org.apache.tapestry5.FormValidationControl"/>
<class name="org.apache.tapestry5.Link"/>
<class name="org.apache.tapestry5.MarkupConstants"/>
<class name="org.apache.tapestry5.MarkupUtils"/>
<class name="org.apache.tapestry5.MarkupWriter"/>
<class name="org.apache.tapestry5.MarkupWriterAdapter"/>
<class name="org.apache.tapestry5.MarkupWriterListener"/>
<class name="org.apache.tapestry5.MetaDataConstants"/>
<class name="org.apache.tapestry5.NullFieldStrategy"/>
<class
name="org.apache.tapestry5.OptimizedApplicationStateObject"/>
<class
name="org.apache.tapestry5.OptimizedSessionPersistedObject"/>
<class name="org.apache.tapestry5.OptionGroupModel"/>
<class name="org.apache.tapestry5.OptionModel"/>
<class name="org.apache.tapestry5.PersistenceConstants"/>
<class name="org.apache.tapestry5.PrimaryKeyEncoder"/>
<class name="org.apache.tapestry5.PropertyConduit"/>
<class name="org.apache.tapestry5.PropertyOverrides"/>
<class name="org.apache.tapestry5.RadioContainer"/>
<class name="org.apache.tapestry5.Renderable"/>
<class name="org.apache.tapestry5.RenderSupport"/>
<class name="org.apache.tapestry5.SelectModel"/>
<class name="org.apache.tapestry5.SelectModelVisitor"/>
<class name="org.apache.tapestry5.StreamResponse"/>
<class name="org.apache.tapestry5.SymbolConstants"/>
<class name="org.apache.tapestry5.TapestryFilter"/>
<class name="org.apache.tapestry5.TapestryMarkers"/>
<class name="org.apache.tapestry5.Translator"/>
<class name="org.apache.tapestry5.ValidationDecorator"/>
<class name="org.apache.tapestry5.ValidationException"/>
<class name="org.apache.tapestry5.ValidationTracker"/>
<class name="org.apache.tapestry5.ValidationTrackerImpl
$FieldTracker"/>
<class name="org.apache.tapestry5.ValidationTrackerImpl"/>
<class name="org.apache.tapestry5.Validator"/>
<class name="org.apache.tapestry5.ValueEncoder"/>
<class name="org.apache.tapestry5.VersionUtils"/>
<class name="org.apache.tapestry5.ioc.AdvisorDef"/>
<class name="org.apache.tapestry5.ioc.AnnotationProvider"/>
<class name="org.apache.tapestry5.ioc.annotations.EagerLoad"/>
<class name="org.apache.tapestry5.ioc.annotations.Marker"/>
<class name="org.apache.tapestry5.ioc.annotations.Match"/>
<class name="org.apache.tapestry5.ioc.annotations.NotLazy"/>
<class name="org.apache.tapestry5.ioc.annotations.Order"/>
<class
name="org.apache.tapestry5.ioc.annotations.PreventServiceDecoration"/>
<class name="org.apache.tapestry5.ioc.annotations.Scope"/>
<class name="org.apache.tapestry5.ioc.annotations.ServiceId"/>
<class name="org.apache.tapestry5.ioc.annotations.SubModule"/>
<class
name="org.apache.tapestry5.ioc.annotations.UsesConfiguration"/>
<class
name="org.apache.tapestry5.ioc.annotations.UsesMappedConfiguration"/>
<class
name="org.apache.tapestry5.ioc.annotations.UsesOrderedConfiguration"/>
<class name="org.apache.tapestry5.ioc.BaseLocatable"/>
<class name="org.apache.tapestry5.ioc.Configuration"/>
<class name="org.apache.tapestry5.ioc.def.ContributionDef"/>
<class name="org.apache.tapestry5.ioc.def.DecoratorDef"/>
<class name="org.apache.tapestry5.ioc.def.ModuleDef"/>
<class name="org.apache.tapestry5.ioc.def.ModuleDef2"/>
<class name="org.apache.tapestry5.ioc.def.ServiceDef"/>
<class name="org.apache.tapestry5.ioc.def.ServiceDef2"/>
<class name="org.apache.tapestry5.ioc.IdMatcher"/>
<class
name="org.apache.tapestry5.ioc.internal.AbstractMethodInvokingInstrumenter"/
>
<class
name="org.apache.tapestry5.ioc.internal.AbstractServiceCreator$1"/>
<class
name="org.apache.tapestry5.ioc.internal.AbstractServiceCreator"/>
<class
name="org.apache.tapestry5.ioc.internal.AbstractServiceInstrumenter"/>
<class name="org.apache.tapestry5.ioc.internal.AdvisorDefImpl"/>
<class
name="org.apache.tapestry5.ioc.internal.AdvisorStackBuilder$1"/>
<class
name="org.apache.tapestry5.ioc.internal.AdvisorStackBuilder"/>
<class
name="org.apache.tapestry5.ioc.internal.ConfigurationType"/>
<class
name="org.apache.tapestry5.ioc.internal.ConstructorServiceCreator"/>
<class
name="org.apache.tapestry5.ioc.internal.ContributionDefImpl"/>
<class name="org.apache.tapestry5.ioc.internal.DecoratorDefImpl"/
>
<class
name="org.apache.tapestry5.ioc.internal.DefaultModuleDefImpl$1"/>
<class
name="org.apache.tapestry5.ioc.internal.DefaultModuleDefImpl$2"/>
<class
name="org.apache.tapestry5.ioc.internal.DefaultModuleDefImpl"/>
<class
name="org.apache.tapestry5.ioc.internal.EagerLoadServiceProxy"/>
<class
name="org.apache.tapestry5.ioc.internal.GlobPatternMatcher"/>
<class name="org.apache.tapestry5.ioc.internal.IdMatcherImpl"/>
<class
name="org.apache.tapestry5.ioc.internal.InterceptorStackBuilder$1"/>
<class
name="org.apache.tapestry5.ioc.internal.InterceptorStackBuilder"/>
<class name="org.apache.tapestry5.ioc.internal.InternalRegistry"/
>
<class
name="org.apache.tapestry5.ioc.internal.IOCInternalTestCase"/>
<class name="org.apache.tapestry5.ioc.internal.IOCMessages"/>
<class
name="org.apache.tapestry5.ioc.internal.LifecycleWrappedServiceCreator"/
>
<class name="org.apache.tapestry5.ioc.internal.LoggerSourceImpl"/
>
<class
name="org.apache.tapestry5.ioc.internal.MappedConfigurationOverride"/>
<class name="org.apache.tapestry5.ioc.internal.Module"/>
<class name="org.apache.tapestry5.ioc.internal.ModuleImpl$1$1"/>
<class name="org.apache.tapestry5.ioc.internal.ModuleImpl$1"/>
<class name="org.apache.tapestry5.ioc.internal.ModuleImpl$2"/>
<class name="org.apache.tapestry5.ioc.internal.ModuleImpl$3"/>
<class name="org.apache.tapestry5.ioc.internal.ModuleImpl$4"/>
<class name="org.apache.tapestry5.ioc.internal.ModuleImpl$5"/>
<class name="org.apache.tapestry5.ioc.internal.ModuleImpl$6"/>
<class name="org.apache.tapestry5.ioc.internal.ModuleImpl$7"/>
<class name="org.apache.tapestry5.ioc.internal.ModuleImpl$8"/>
<class name="org.apache.tapestry5.ioc.internal.ModuleImpl"/>
<class
name="org.apache.tapestry5.ioc.internal.NullAnnotationProvider"/>
<class
name="org.apache.tapestry5.ioc.internal.ObjectCreatorSource"/>
<class
name="org.apache.tapestry5.ioc.internal.ObjectLocatorImpl"/>
<class
name="org.apache.tapestry5.ioc.internal.OperationException"/>
<class
name="org.apache.tapestry5.ioc.internal.OperationTrackerImpl$1"/>
<class
name="org.apache.tapestry5.ioc.internal.OperationTrackerImpl"/>
<class
name="org.apache.tapestry5.ioc.internal.OperationTrackingObjectCreator
$1"/>
<class
name="org.apache.tapestry5.ioc.internal.OperationTrackingObjectCreator"/
>
<class
name="org.apache.tapestry5.ioc.internal.OrderedConfigurationOverride"/
>
<class name="org.apache.tapestry5.ioc.internal.OrIdMatcher"/>
<class
name="org.apache.tapestry5.ioc.internal.PerThreadOperationTracker$1"/>
<class
name="org.apache.tapestry5.ioc.internal.PerThreadOperationTracker"/>
<class
name="org.apache.tapestry5.ioc.internal.QuietOperationTracker"/>
<class
name="org.apache.tapestry5.ioc.internal.RecursiveServiceCreationCheckWrapper"/
>
<class name="org.apache.tapestry5.ioc.internal.RegistryImpl$1"/>
<class name="org.apache.tapestry5.ioc.internal.RegistryImpl$2"/>
<class name="org.apache.tapestry5.ioc.internal.RegistryImpl$3"/>
<class name="org.apache.tapestry5.ioc.internal.RegistryImpl$4"/>
<class name="org.apache.tapestry5.ioc.internal.RegistryImpl$5"/>
<class name="org.apache.tapestry5.ioc.internal.RegistryImpl$6"/>
<class name="org.apache.tapestry5.ioc.internal.RegistryImpl$7"/>
<class name="org.apache.tapestry5.ioc.internal.RegistryImpl$8"/>
<class name="org.apache.tapestry5.ioc.internal.RegistryImpl$9"/>
<class name="org.apache.tapestry5.ioc.internal.RegistryImpl"/>
<class name="org.apache.tapestry5.ioc.internal.RegistryWrapper"/
>
<class
name="org.apache.tapestry5.ioc.internal.SerializationSupport"/>
<class
name="org.apache.tapestry5.ioc.internal.ServiceActivityTracker"/>
<class
name="org.apache.tapestry5.ioc.internal.ServiceActivityTrackerImpl
$MutableServiceActivity"/>
<class
name="org.apache.tapestry5.ioc.internal.ServiceActivityTrackerImpl"/>
<class
name="org.apache.tapestry5.ioc.internal.ServiceAdvisorImpl"/>
<class name="org.apache.tapestry5.ioc.internal.ServiceBinderImpl
$1"/>
<class name="org.apache.tapestry5.ioc.internal.ServiceBinderImpl
$2$1"/>
<class name="org.apache.tapestry5.ioc.internal.ServiceBinderImpl
$2"/>
<class
name="org.apache.tapestry5.ioc.internal.ServiceBinderImpl"/>
<class
name="org.apache.tapestry5.ioc.internal.ServiceBuilderMethodInvoker"/>
<class
name="org.apache.tapestry5.ioc.internal.ServiceDecoratorImpl"/>
<class
name="org.apache.tapestry5.ioc.internal.ServiceDefAccumulator"/>
<class name="org.apache.tapestry5.ioc.internal.ServiceDefImpl"/>
<class
name="org.apache.tapestry5.ioc.internal.ServiceProxyProvider"/>
<class
name="org.apache.tapestry5.ioc.internal.ServiceProxyToken"/>
<class
name="org.apache.tapestry5.ioc.internal.ServiceResourcesImpl$1"/>
<class
name="org.apache.tapestry5.ioc.internal.ServiceResourcesImpl$2"/>
<class
name="org.apache.tapestry5.ioc.internal.ServiceResourcesImpl$3"/>
<class
name="org.apache.tapestry5.ioc.internal.ServiceResourcesImpl$4"/>
<class
name="org.apache.tapestry5.ioc.internal.ServiceResourcesImpl"/>
<class
name="org.apache.tapestry5.ioc.internal.services.AbstractFab"/>
<class
name="org.apache.tapestry5.ioc.internal.services.AbstractInvocation"/>
<class
name="org.apache.tapestry5.ioc.internal.services.AccessableObjectAnnotationProvider"/
>
<class
name="org.apache.tapestry5.ioc.internal.services.AdvisedMethodInvocationBuilder"/
>
<class
name="org.apache.tapestry5.ioc.internal.services.AnnotationProviderChain"/
>
<class
name="org.apache.tapestry5.ioc.internal.services.AspectDecoratorImpl
$1"/>
<class
name="org.apache.tapestry5.ioc.internal.services.AspectDecoratorImpl"/
>
<class
name="org.apache.tapestry5.ioc.internal.services.AspectInterceptorBuilderImpl"/
>
<class
name="org.apache.tapestry5.ioc.internal.services.AutobuildObjectProvider"/
>
<class
name="org.apache.tapestry5.ioc.internal.services.BridgeBuilder"/>
<class
name="org.apache.tapestry5.ioc.internal.services.CachingObjectCreator"/
>
<class
name="org.apache.tapestry5.ioc.internal.services.ChainBuilderImpl"/>
<class
name="org.apache.tapestry5.ioc.internal.services.ClassFabImpl"/>
<class
name="org.apache.tapestry5.ioc.internal.services.ClassFactoryClassPool
$1"/>
<class
name="org.apache.tapestry5.ioc.internal.services.ClassFactoryClassPool"/
>
<class
name="org.apache.tapestry5.ioc.internal.services.ClassFactoryImpl"/>
<class
name="org.apache.tapestry5.ioc.internal.services.ClassNameLocatorImpl
$Queued"/>
<class
name="org.apache.tapestry5.ioc.internal.services.ClassNameLocatorImpl"/
>
<class
name="org.apache.tapestry5.ioc.internal.services.ClasspathResourceSymbolProvider"/
>
<class
name="org.apache.tapestry5.ioc.internal.services.ClasspathURLConverterImpl"/
>
<class
name="org.apache.tapestry5.ioc.internal.services.ClassPropertyAdapterImpl"/
>
<class
name="org.apache.tapestry5.ioc.internal.services.CompoundCoercion"/>
<class
name="org.apache.tapestry5.ioc.internal.services.ConstantInjector"/>
<class
name="org.apache.tapestry5.ioc.internal.services.ConstantInjectorImpl
$InjectedValue"/>
<class
name="org.apache.tapestry5.ioc.internal.services.ConstantInjectorImpl"/
>
<class
name="org.apache.tapestry5.ioc.internal.services.CtClassSource"/>
<class
name="org.apache.tapestry5.ioc.internal.services.CtClassSourceImpl"/>
<class
name="org.apache.tapestry5.ioc.internal.services.DefaultImplementationBuilderImpl"/
>
<class
name="org.apache.tapestry5.ioc.internal.services.ExceptionAnalysisImpl"/
>
<class
name="org.apache.tapestry5.ioc.internal.services.ExceptionAnalyzerImpl"/
>
<class
name="org.apache.tapestry5.ioc.internal.services.ExceptionInfoImpl"/>
<class
name="org.apache.tapestry5.ioc.internal.services.ExceptionTrackerImpl"/
>
<class
name="org.apache.tapestry5.ioc.internal.services.FilterMethodAnalyzer"/
>
<class
name="org.apache.tapestry5.ioc.internal.services.JustInTimeObjectCreator
$1"/>
<class
name="org.apache.tapestry5.ioc.internal.services.JustInTimeObjectCreator"/
>
<class
name="org.apache.tapestry5.ioc.internal.services.LazyAdvisorImpl$1$1"/
>
<class
name="org.apache.tapestry5.ioc.internal.services.LazyAdvisorImpl$1"/>
<class
name="org.apache.tapestry5.ioc.internal.services.LazyAdvisorImpl"/>
<class
name="org.apache.tapestry5.ioc.internal.services.LoggingAdvice"/>
<class
name="org.apache.tapestry5.ioc.internal.services.LoggingAdvisorImpl"/>
<class
name="org.apache.tapestry5.ioc.internal.services.LoggingDecoratorImpl"/
>
<class
name="org.apache.tapestry5.ioc.internal.services.MapSymbolProvider"/>
<class
name="org.apache.tapestry5.ioc.internal.services.MasterObjectProviderImpl
$1"/>
<class
name="org.apache.tapestry5.ioc.internal.services.MasterObjectProviderImpl"/
>
<class
name="org.apache.tapestry5.ioc.internal.services.MethodInfo"/>
<class
name="org.apache.tapestry5.ioc.internal.services.MethodLogger"/>
<class
name="org.apache.tapestry5.ioc.internal.services.NonParallelExecutor
$1"/>
<class
name="org.apache.tapestry5.ioc.internal.services.NonParallelExecutor"/
>
<class
name="org.apache.tapestry5.ioc.internal.services.ParallelExecutorImpl
$1"/>
<class
name="org.apache.tapestry5.ioc.internal.services.ParallelExecutorImpl
$2"/>
<class
name="org.apache.tapestry5.ioc.internal.services.ParallelExecutorImpl"/
>
<class
name="org.apache.tapestry5.ioc.internal.services.PerthreadManagerImpl
$MapHolder"/>
<class
name="org.apache.tapestry5.ioc.internal.services.PerthreadManagerImpl"/
>
<class
name="org.apache.tapestry5.ioc.internal.services.PerThreadServiceCreator"/
>
<class
name="org.apache.tapestry5.ioc.internal.services.PerThreadServiceLifecycle"/
>
<class
name="org.apache.tapestry5.ioc.internal.services.PipelineBuilderImpl"/
>
<class
name="org.apache.tapestry5.ioc.internal.services.PropertyAccessImpl"/>
<class
name="org.apache.tapestry5.ioc.internal.services.PropertyAdapterImpl"/
>
<class
name="org.apache.tapestry5.ioc.internal.services.PropertyShadowBuilderImpl"/
>
<class
name="org.apache.tapestry5.ioc.internal.services.RegistryShutdownHubImpl"/
>
<class
name="org.apache.tapestry5.ioc.internal.services.RegistryStartup"/>
<class
name="org.apache.tapestry5.ioc.internal.services.ResourceSymbolProvider"/
>
<class
name="org.apache.tapestry5.ioc.internal.services.ServiceMessages"/>
<class
name="org.apache.tapestry5.ioc.internal.services.ServiceOverrideImpl
$1"/>
<class
name="org.apache.tapestry5.ioc.internal.services.ServiceOverrideImpl"/
>
<class
name="org.apache.tapestry5.ioc.internal.services.StrategyBuilderImpl"/
>
<class
name="org.apache.tapestry5.ioc.internal.services.StringLocation"/>
<class
name="org.apache.tapestry5.ioc.internal.services.SymbolObjectProvider"/
>
<class
name="org.apache.tapestry5.ioc.internal.services.SymbolSourceImpl
$SymbolExpansion"/>
<class
name="org.apache.tapestry5.ioc.internal.services.SymbolSourceImpl"/>
<class
name="org.apache.tapestry5.ioc.internal.services.SystemPropertiesSymbolProvider"/
>
<class
name="org.apache.tapestry5.ioc.internal.services.ThreadLocaleImpl"/>
<class
name="org.apache.tapestry5.ioc.internal.services.ThunkCreatorImpl"/>
<class
name="org.apache.tapestry5.ioc.internal.services.TypeCoercerImpl$1"/>
<class
name="org.apache.tapestry5.ioc.internal.services.TypeCoercerImpl
$TargetCoercion"/>
<class
name="org.apache.tapestry5.ioc.internal.services.TypeCoercerImpl"/>
<class
name="org.apache.tapestry5.ioc.internal.services.ValueObjectProvider"/
>
<class
name="org.apache.tapestry5.ioc.internal.SingletonServiceLifecycle"/>
<class
name="org.apache.tapestry5.ioc.internal.util.AbstractResource"/>
<class
name="org.apache.tapestry5.ioc.internal.util.ClasspathResource"/>
<class
name="org.apache.tapestry5.ioc.internal.util.CollectionFactory"/>
<class
name="org.apache.tapestry5.ioc.internal.util.ConcurrentBarrier$1"/>
<class
name="org.apache.tapestry5.ioc.internal.util.ConcurrentBarrier$2"/>
<class
name="org.apache.tapestry5.ioc.internal.util.ConcurrentBarrier
$ThreadBoolean"/>
<class
name="org.apache.tapestry5.ioc.internal.util.ConcurrentBarrier"/>
<class name="org.apache.tapestry5.ioc.internal.util.Defense"/>
<class
name="org.apache.tapestry5.ioc.internal.util.DelegatingInjectionResources"/
>
<class
name="org.apache.tapestry5.ioc.internal.util.DependencyNode"/>
<class name="org.apache.tapestry5.ioc.internal.util.DummyLock"/>
<class
name="org.apache.tapestry5.ioc.internal.util.GenericsUtils"/>
<class name="org.apache.tapestry5.ioc.internal.util.IdAllocator
$NameGenerator"/>
<class name="org.apache.tapestry5.ioc.internal.util.IdAllocator"/
>
<class
name="org.apache.tapestry5.ioc.internal.util.IdToDependencyNode$1"/>
<class
name="org.apache.tapestry5.ioc.internal.util.IdToDependencyNode$2"/>
<class
name="org.apache.tapestry5.ioc.internal.util.IdToDependencyNode
$DependencyLinker"/>
<class
name="org.apache.tapestry5.ioc.internal.util.IdToDependencyNode"/>
<class
name="org.apache.tapestry5.ioc.internal.util.InheritanceSearch$State"/
>
<class
name="org.apache.tapestry5.ioc.internal.util.InheritanceSearch"/>
<class
name="org.apache.tapestry5.ioc.internal.util.InjectionResources"/>
<class name="org.apache.tapestry5.ioc.internal.util.InternalUtils
$1"/>
<class name="org.apache.tapestry5.ioc.internal.util.InternalUtils
$10"/>
<class name="org.apache.tapestry5.ioc.internal.util.InternalUtils
$2"/>
<class name="org.apache.tapestry5.ioc.internal.util.InternalUtils
$3"/>
<class name="org.apache.tapestry5.ioc.internal.util.InternalUtils
$4"/>
<class name="org.apache.tapestry5.ioc.internal.util.InternalUtils
$5"/>
<class name="org.apache.tapestry5.ioc.internal.util.InternalUtils
$6"/>
<class name="org.apache.tapestry5.ioc.internal.util.InternalUtils
$7"/>
<class name="org.apache.tapestry5.ioc.internal.util.InternalUtils
$8"/>
<class name="org.apache.tapestry5.ioc.internal.util.InternalUtils
$9"/>
<class
name="org.apache.tapestry5.ioc.internal.util.InternalUtils"/>
<class name="org.apache.tapestry5.ioc.internal.util.JDKUtils"/>
<class
name="org.apache.tapestry5.ioc.internal.util.LocalizedNameGenerator"/>
<class
name="org.apache.tapestry5.ioc.internal.util.LocationImpl"/>
<class
name="org.apache.tapestry5.ioc.internal.util.MapInjectionResources"/>
<class
name="org.apache.tapestry5.ioc.internal.util.MessageFormatterImpl"/>
<class
name="org.apache.tapestry5.ioc.internal.util.MessagesImpl"/>
<class name="org.apache.tapestry5.ioc.internal.util.OneShotLock"/
>
<class name="org.apache.tapestry5.ioc.internal.util.Orderer$1"/>
<class name="org.apache.tapestry5.ioc.internal.util.Orderer$2"/>
<class name="org.apache.tapestry5.ioc.internal.util.Orderer
$DependencyLinker"/>
<class name="org.apache.tapestry5.ioc.internal.util.Orderer"/>
<class
name="org.apache.tapestry5.ioc.internal.util.TapestryException"/>
<class
name="org.apache.tapestry5.ioc.internal.util.UtilMessages"/>
<class
name="org.apache.tapestry5.ioc.internal.util.WrongConfigurationTypeGuard"/
>
<class
name="org.apache.tapestry5.ioc.internal.ValidatingConfigurationWrapper"/
>
<class
name="org.apache.tapestry5.ioc.internal.ValidatingMappedConfigurationWrapper"/
>
<class
name="org.apache.tapestry5.ioc.internal.ValidatingOrderedConfigurationWrapper"/
>
<class name="org.apache.tapestry5.ioc.Invocation"/>
<class name="org.apache.tapestry5.ioc.Invokable"/>
<class name="org.apache.tapestry5.ioc.IOCConstants"/>
<class name="org.apache.tapestry5.ioc.IOCUtilities"/>
<class name="org.apache.tapestry5.ioc.Locatable"/>
<class name="org.apache.tapestry5.ioc.Location"/>
<class name="org.apache.tapestry5.ioc.LoggerSource"/>
<class name="org.apache.tapestry5.ioc.MappedConfiguration"/>
<class name="org.apache.tapestry5.ioc.MessageFormatter"/>
<class name="org.apache.tapestry5.ioc.Messages"/>
<class name="org.apache.tapestry5.ioc.MethodAdvice"/>
<class name="org.apache.tapestry5.ioc.MethodAdviceReceiver"/>
<class name="org.apache.tapestry5.ioc.ModuleBuilderSource"/>
<class name="org.apache.tapestry5.ioc.ObjectCreator"/>
<class name="org.apache.tapestry5.ioc.ObjectLocator"/>
<class name="org.apache.tapestry5.ioc.ObjectProvider"/>
<class name="org.apache.tapestry5.ioc.OperationTracker"/>
<class name="org.apache.tapestry5.ioc.Orderable"/>
<class name="org.apache.tapestry5.ioc.OrderConstraint"/>
<class name="org.apache.tapestry5.ioc.OrderConstraintBuilder"/>
<class name="org.apache.tapestry5.ioc.OrderedConfiguration"/>
<class name="org.apache.tapestry5.ioc.Registry"/>
<class name="org.apache.tapestry5.ioc.RegistryBuilder"/>
<class name="org.apache.tapestry5.ioc.Resource"/>
<class name="org.apache.tapestry5.ioc.ScopeConstants"/>
<class name="org.apache.tapestry5.ioc.ServiceAdvisor"/>
<class name="org.apache.tapestry5.ioc.ServiceBinder"/>
<class name="org.apache.tapestry5.ioc.ServiceBindingOptions"/>
<class name="org.apache.tapestry5.ioc.ServiceBuilder"/>
<class name="org.apache.tapestry5.ioc.ServiceBuilderResources"/>
<class name="org.apache.tapestry5.ioc.ServiceDecorator"/>
<class name="org.apache.tapestry5.ioc.ServiceLifecycle"/>
<class name="org.apache.tapestry5.ioc.ServiceLifecycle2"/>
<class name="org.apache.tapestry5.ioc.ServiceResources"/>
<class
name="org.apache.tapestry5.ioc.services.ApplicationDefaults"/>
<class name="org.apache.tapestry5.ioc.services.AspectDecorator"/
>
<class
name="org.apache.tapestry5.ioc.services.AspectInterceptorBuilder"/>
<class name="org.apache.tapestry5.ioc.services.Builtin"/>
<class name="org.apache.tapestry5.ioc.services.ChainBuilder"/>
<class name="org.apache.tapestry5.ioc.services.ClassFab"/>
<class name="org.apache.tapestry5.ioc.services.ClassFabUtils
$PrimitiveInfo"/>
<class name="org.apache.tapestry5.ioc.services.ClassFabUtils"/>
<class name="org.apache.tapestry5.ioc.services.ClassFactory"/>
<class name="org.apache.tapestry5.ioc.services.ClassNameLocator"/
>
<class
name="org.apache.tapestry5.ioc.services.ClasspathURLConverter"/>
<class
name="org.apache.tapestry5.ioc.services.ClassPropertyAdapter"/>
<class name="org.apache.tapestry5.ioc.services.Coercion"/>
<class name="org.apache.tapestry5.ioc.services.CoercionTuple
$CoercionWrapper"/>
<class name="org.apache.tapestry5.ioc.services.CoercionTuple"/>
<class
name="org.apache.tapestry5.ioc.services.DefaultImplementationBuilder"/
>
<class
name="org.apache.tapestry5.ioc.services.ExceptionAnalysis"/>
<class
name="org.apache.tapestry5.ioc.services.ExceptionAnalyzer"/>
<class name="org.apache.tapestry5.ioc.services.ExceptionInfo"/>
<class name="org.apache.tapestry5.ioc.services.ExceptionTracker"/
>
<class name="org.apache.tapestry5.ioc.services.FactoryDefaults"/
>
<class name="org.apache.tapestry5.ioc.services.LazyAdvisor"/>
<class name="org.apache.tapestry5.ioc.services.LoggingAdvisor"/>
<class name="org.apache.tapestry5.ioc.services.LoggingDecorator"/
>
<class
name="org.apache.tapestry5.ioc.services.MasterObjectProvider"/>
<class name="org.apache.tapestry5.ioc.services.MethodIterator$1"/
>
<class name="org.apache.tapestry5.ioc.services.MethodIterator"/>
<class name="org.apache.tapestry5.ioc.services.MethodSignature"/
>
<class name="org.apache.tapestry5.ioc.services.ParallelExecutor"/
>
<class name="org.apache.tapestry5.ioc.services.PerthreadManager"/
>
<class name="org.apache.tapestry5.ioc.services.PipelineBuilder"/
>
<class name="org.apache.tapestry5.ioc.services.PropertyAccess"/>
<class name="org.apache.tapestry5.ioc.services.PropertyAdapter"/
>
<class
name="org.apache.tapestry5.ioc.services.PropertyShadowBuilder"/>
<class
name="org.apache.tapestry5.ioc.services.RegistryShutdownHub"/>
<class
name="org.apache.tapestry5.ioc.services.RegistryShutdownListener"/>
<class name="org.apache.tapestry5.ioc.services.ServiceActivity"/
>
<class
name="org.apache.tapestry5.ioc.services.ServiceActivityScoreboard"/>
<class
name="org.apache.tapestry5.ioc.services.ServiceLifecycleSource"/>
<class name="org.apache.tapestry5.ioc.services.ServiceOverride"/
>
<class name="org.apache.tapestry5.ioc.services.Status"/>
<class name="org.apache.tapestry5.ioc.services.StrategyBuilder"/
>
<class name="org.apache.tapestry5.ioc.services.SymbolProvider"/>
<class name="org.apache.tapestry5.ioc.services.SymbolSource"/>
<class name="org.apache.tapestry5.ioc.services.TapestryIOCModule
$1"/>
<class name="org.apache.tapestry5.ioc.services.TapestryIOCModule
$10"/>
<class name="org.apache.tapestry5.ioc.services.TapestryIOCModule
$11"/>
<class name="org.apache.tapestry5.ioc.services.TapestryIOCModule
$12"/>
<class name="org.apache.tapestry5.ioc.services.TapestryIOCModule
$13"/>
<class name="org.apache.tapestry5.ioc.services.TapestryIOCModule
$14"/>
<class name="org.apache.tapestry5.ioc.services.TapestryIOCModule
$15"/>
<class name="org.apache.tapestry5.ioc.services.TapestryIOCModule
$16"/>
<class name="org.apache.tapestry5.ioc.services.TapestryIOCModule
$17"/>
<class name="org.apache.tapestry5.ioc.services.TapestryIOCModule
$18"/>
<class name="org.apache.tapestry5.ioc.services.TapestryIOCModule
$19"/>
<class name="org.apache.tapestry5.ioc.services.TapestryIOCModule
$2"/>
<class name="org.apache.tapestry5.ioc.services.TapestryIOCModule
$20"/>
<class name="org.apache.tapestry5.ioc.services.TapestryIOCModule
$21"/>
<class name="org.apache.tapestry5.ioc.services.TapestryIOCModule
$22"/>
<class name="org.apache.tapestry5.ioc.services.TapestryIOCModule
$23"/>
<class name="org.apache.tapestry5.ioc.services.TapestryIOCModule
$24"/>
<class name="org.apache.tapestry5.ioc.services.TapestryIOCModule
$25"/>
<class name="org.apache.tapestry5.ioc.services.TapestryIOCModule
$26"/>
<class name="org.apache.tapestry5.ioc.services.TapestryIOCModule
$27"/>
<class name="org.apache.tapestry5.ioc.services.TapestryIOCModule
$28"/>
<class name="org.apache.tapestry5.ioc.services.TapestryIOCModule
$3"/>
<class name="org.apache.tapestry5.ioc.services.TapestryIOCModule
$4"/>
<class name="org.apache.tapestry5.ioc.services.TapestryIOCModule
$5"/>
<class name="org.apache.tapestry5.ioc.services.TapestryIOCModule
$6"/>
<class name="org.apache.tapestry5.ioc.services.TapestryIOCModule
$7"/>
<class name="org.apache.tapestry5.ioc.services.TapestryIOCModule
$8"/>
<class name="org.apache.tapestry5.ioc.services.TapestryIOCModule
$9"/>
<class
name="org.apache.tapestry5.ioc.services.TapestryIOCModule"/>
<class
name="org.apache.tapestry5.ioc.services.ThreadCleanupListener"/>
<class name="org.apache.tapestry5.ioc.services.ThreadLocale"/>
<class name="org.apache.tapestry5.ioc.services.ThunkCreator"/>
<class name="org.apache.tapestry5.ioc.services.TypeCoercer"/>
<class name="org.apache.tapestry5.ioc.test.IOCTestCase"/>
<class name="org.apache.tapestry5.ioc.test.MockTester
$ThreadLocalControl"/>
<class name="org.apache.tapestry5.ioc.test.MockTester"/>
<class name="org.apache.tapestry5.ioc.test.TestBase
$ThreadLocalControl"/>
<class name="org.apache.tapestry5.ioc.test.TestBase"/>
<class name="org.apache.tapestry5.ioc.util.AbstractMessages$1"/>
<class name="org.apache.tapestry5.ioc.util.AbstractMessages$2"/>
<class name="org.apache.tapestry5.ioc.util.AbstractMessages"/>
<class name="org.apache.tapestry5.ioc.util.BodyBuilder"/>
<class name="org.apache.tapestry5.ioc.util.CaseInsensitiveMap
$CIMEntry"/>
<class name="org.apache.tapestry5.ioc.util.CaseInsensitiveMap
$EntrySet"/>
<class name="org.apache.tapestry5.ioc.util.CaseInsensitiveMap
$EntrySetIterator"/>
<class name="org.apache.tapestry5.ioc.util.CaseInsensitiveMap
$Position"/>
<class name="org.apache.tapestry5.ioc.util.CaseInsensitiveMap"/>
<class name="org.apache.tapestry5.ioc.util.ExceptionUtils"/>
<class name="org.apache.tapestry5.ioc.util.Stack"/>
<class name="org.apache.tapestry5.ioc.util.StrategyRegistry"/>
<class name="org.apache.tapestry5.ioc.util.TimeInterval"/>
<class name="org.apache.tapestry5.ioc.util.UtilMessages"/>
<class name="org.apache.tapestry5.IOCSymbols"/>
<class name="org.apache.tapestry5.beaneditor.DataType"/>
<class name="org.apache.tapestry5.beaneditor.NonVisual"/>
<class name="org.apache.tapestry5.beaneditor.RelativePosition"/>
<class name="org.apache.tapestry5.beaneditor.ReorderProperties"/
>
<class name="org.apache.tapestry5.beaneditor.Validate"/>
<class name="org.apache.tapestry5.beaneditor.Width"/>
<class
name="org.apache.tapestry5.ioc.annotations.AnnotationUseContext"/>
<class name="org.apache.tapestry5.ioc.annotations.Autobuild"/>
<class name="org.apache.tapestry5.ioc.annotations.Inject"/>
<class
name="org.apache.tapestry5.ioc.annotations.InjectResource"/>
<class name="org.apache.tapestry5.ioc.annotations.InjectService"/
>
<class
name="org.apache.tapestry5.ioc.annotations.IntermediateType"/>
<class name="org.apache.tapestry5.ioc.annotations.Local"/>
<class name="org.apache.tapestry5.ioc.annotations.PostInjection"/
>
<class name="org.apache.tapestry5.ioc.annotations.Primary"/>
<class name="org.apache.tapestry5.ioc.annotations.Symbol"/>
<class name="org.apache.tapestry5.ioc.annotations.UseWith"/>
<class name="org.apache.tapestry5.ioc.annotations.Value"/>
<class
name="org.apache.tapestry5.test.AbstractIntegrationTestSuite"/>
<class name="org.apache.tapestry5.test.ErrorReporter"/>
<class name="org.apache.tapestry5.test.ErrorReporterImpl"/>
<class
name="org.apache.tapestry5.test.ErrorReportingCommandProcessor"/>
<class name="org.apache.tapestry5.test.Jetty7Runner"/>
<class name="org.apache.tapestry5.test.JettyRunner"/>
<class name="org.apache.tapestry5.test.RandomDataSource"/>
<class name="org.apache.tapestry5.test.SeleniumLauncher$1"/>
<class name="org.apache.tapestry5.test.SeleniumLauncher"/>
<class name="org.apache.tapestry5.test.SeleniumTestCase"/>
<class name="org.apache.tapestry5.test.TapestryTestConstants"/>
<class name="org.apache.tapestry5.dom.DOMTest$1"/>
<class name="org.apache.tapestry5.dom.DOMTest"/>
<class name="org.apache.tapestry5.dom.AbstractMarkupModel"/>
<class name="org.apache.tapestry5.dom.Attribute"/>
<class name="org.apache.tapestry5.dom.CData"/>
<class name="org.apache.tapestry5.dom.Comment"/>
<class name="org.apache.tapestry5.dom.DefaultMarkupModel"/>
<class name="org.apache.tapestry5.dom.Document"/>
<class name="org.apache.tapestry5.dom.DomMessages"/>
<class name="org.apache.tapestry5.dom.DTD"/>
<class name="org.apache.tapestry5.dom.Element$1$1"/>
<class name="org.apache.tapestry5.dom.Element$1"/>
<class name="org.apache.tapestry5.dom.Element"/>
<class name="org.apache.tapestry5.dom.EndTagStyle"/>
<class name="org.apache.tapestry5.dom.MapHolder"/>
<class name="org.apache.tapestry5.dom.MarkupModel"/>
<class name="org.apache.tapestry5.dom.Node"/>
<class name="org.apache.tapestry5.dom.Raw"/>
<class name="org.apache.tapestry5.dom.Text"/>
<class name="org.apache.tapestry5.dom.Visitor"/>
<class name="org.apache.tapestry5.dom.XMLMarkupModel"/>
<class name="org.apache.tapestry5.json.JSONObjectTest$1"/>
<class name="org.apache.tapestry5.json.JSONObjectTest"/>
<class name="org.apache.tapestry5.json.JSONArray"/>
<class name="org.apache.tapestry5.json.JSONLiteral"/>
<class name="org.apache.tapestry5.json.JSONObject$Null"/>
<class name="org.apache.tapestry5.json.JSONObject"/>
<class name="org.apache.tapestry5.json.JSONString"/>
<class name="org.apache.tapestry5.json.JSONTokener"/>
<class name="org.apache.tapestry5.runtime.Component"/>
<class name="org.apache.tapestry5.runtime.ComponentEvent"/>
<class
name="org.apache.tapestry5.runtime.ComponentEventException"/>
<class
name="org.apache.tapestry5.runtime.ComponentResourcesAware"/>
<class name="org.apache.tapestry5.runtime.Event"/>
<class name="org.apache.tapestry5.runtime.PageLifecycleListener"/
>
<class name="org.apache.tapestry5.runtime.RenderCommand"/>
<class name="org.apache.tapestry5.runtime.RenderQueue"/>
<class
name="org.apache.tapestry5.services.AliasContributionTest"/>
<class name="org.apache.tapestry5.services.SyncCostBench
$BlockRunner"/>
<class name="org.apache.tapestry5.services.SyncCostBench
$ReadWriteLockAspectRunner"/>
<class name="org.apache.tapestry5.services.SyncCostBench
$ReadWriteLockRunner"/>
<class name="org.apache.tapestry5.services.SyncCostBench
$SimpleRunner"/>
<class name="org.apache.tapestry5.services.SyncCostBench
$SynchronizedRunner"/>
<class name="org.apache.tapestry5.services.SyncCostBench$Worker"/
>
<class name="org.apache.tapestry5.services.SyncCostBench"/>
<class
name="org.apache.tapestry5.services.TransformMethodSignatureTest"/>
<class name="org.apache.tapestry5.services.TransformUtilsTest"/>
<class name="org.apache.tapestry5.services.Ajax"/>
<class name="org.apache.tapestry5.services.Alias"/>
<class name="org.apache.tapestry5.services.AliasContribution"/>
<class name="org.apache.tapestry5.services.AliasManager"/>
<class name="org.apache.tapestry5.services.ApplicationGlobals"/>
<class
name="org.apache.tapestry5.services.ApplicationInitializer"/>
<class
name="org.apache.tapestry5.services.ApplicationInitializerFilter"/>
<class
name="org.apache.tapestry5.services.ApplicationStateContribution"/>
<class
name="org.apache.tapestry5.services.ApplicationStateCreator"/>
<class
name="org.apache.tapestry5.services.ApplicationStateManager"/>
<class
name="org.apache.tapestry5.services.ApplicationStatePersistenceStrategy"/
>
<class
name="org.apache.tapestry5.services.ApplicationStatePersistenceStrategySource"/
>
<class name="org.apache.tapestry5.services.AssetFactory"/>
<class name="org.apache.tapestry5.services.AssetPathAuthorizer
$Order"/>
<class name="org.apache.tapestry5.services.AssetPathAuthorizer"/
>
<class name="org.apache.tapestry5.services.AssetPathConverter"/>
<class name="org.apache.tapestry5.services.AssetSource"/>
<class name="org.apache.tapestry5.services.BaseURLSource"/>
<class
name="org.apache.tapestry5.services.BeanBlockContribution"/>
<class
name="org.apache.tapestry5.services.BeanBlockOverrideSource"/>
<class name="org.apache.tapestry5.services.BeanBlockSource"/>
<class name="org.apache.tapestry5.services.BeanEditContext"/>
<class name="org.apache.tapestry5.services.BeanModelSource"/>
<class
name="org.apache.tapestry5.services.BeanValidationContext"/>
<class name="org.apache.tapestry5.services.BindingFactory"/>
<class name="org.apache.tapestry5.services.BindingSource"/>
<class
name="org.apache.tapestry5.services.ClasspathAssetAliasManager"/>
<class name="org.apache.tapestry5.services.ClasspathProvider"/>
<class name="org.apache.tapestry5.services.ClassTransformation"/
>
<class
name="org.apache.tapestry5.services.ClientBehaviorSupport"/>
<class name="org.apache.tapestry5.services.ClientDataEncoder"/>
<class name="org.apache.tapestry5.services.ClientDataSink"/>
<class name="org.apache.tapestry5.services.ClientInfrastructure"/
>
<class name="org.apache.tapestry5.services.ComponentClasses"/>
<class
name="org.apache.tapestry5.services.ComponentClassResolver"/>
<class
name="org.apache.tapestry5.services.ComponentClassTransformWorker"/>
<class
name="org.apache.tapestry5.services.ComponentDefaultProvider"/>
<class
name="org.apache.tapestry5.services.ComponentEventLinkEncoder"/>
<class
name="org.apache.tapestry5.services.ComponentEventRequestFilter"/>
<class
name="org.apache.tapestry5.services.ComponentEventRequestHandler"/>
<class
name="org.apache.tapestry5.services.ComponentEventRequestParameters"/>
<class
name="org.apache.tapestry5.services.ComponentEventResultProcessor"/>
<class name="org.apache.tapestry5.services.ComponentLayer"/>
<class name="org.apache.tapestry5.services.ComponentMessages"/>
<class
name="org.apache.tapestry5.services.ComponentMethodAdvice"/>
<class
name="org.apache.tapestry5.services.ComponentMethodInvocation"/>
<class
name="org.apache.tapestry5.services.ComponentRequestFilter"/>
<class
name="org.apache.tapestry5.services.ComponentRequestHandler"/>
<class name="org.apache.tapestry5.services.ComponentSource"/>
<class name="org.apache.tapestry5.services.ComponentTemplates"/>
<class name="org.apache.tapestry5.services.Context"/>
<class name="org.apache.tapestry5.services.ContextPathEncoder"/>
<class name="org.apache.tapestry5.services.ContextProvider"/>
<class name="org.apache.tapestry5.services.ContextValueEncoder"/
>
<class name="org.apache.tapestry5.services.Cookies"/>
<class name="org.apache.tapestry5.services.Core"/>
<class name="org.apache.tapestry5.services.DataTypeAnalyzer"/>
<class name="org.apache.tapestry5.services.DelegatingRequest"/>
<class name="org.apache.tapestry5.services.Dispatcher"/>
<class name="org.apache.tapestry5.services.Environment"/>
<class name="org.apache.tapestry5.services.EnvironmentalAccess"/
>
<class
name="org.apache.tapestry5.services.EnvironmentalShadowBuilder"/>
<class name="org.apache.tapestry5.services.ExceptionReporter"/>
<class name="org.apache.tapestry5.services.FieldFilter"/>
<class
name="org.apache.tapestry5.services.FieldTranslatorSource"/>
<class
name="org.apache.tapestry5.services.FieldValidatorDefaultSource"/>
<class name="org.apache.tapestry5.services.FieldValidatorSource"/
>
<class name="org.apache.tapestry5.services.FormSupport"/>
<class name="org.apache.tapestry5.services.Heartbeat"/>
<class
name="org.apache.tapestry5.services.HiddenFieldLocationRules"/>
<class
name="org.apache.tapestry5.services.HttpServletRequestFilter"/>
<class
name="org.apache.tapestry5.services.HttpServletRequestHandler"/>
<class name="org.apache.tapestry5.services.InjectionProvider"/>
<class name="org.apache.tapestry5.services.InvalidationEventHub"/
>
<class name="org.apache.tapestry5.services.InvalidationListener"/
>
<class name="org.apache.tapestry5.services.LibraryMapping"/>
<class name="org.apache.tapestry5.services.LinkCreationHub"/>
<class name="org.apache.tapestry5.services.LinkCreationListener"/
>
<class name="org.apache.tapestry5.services.LocalizationSetter"/>
<class name="org.apache.tapestry5.services.MarkupRenderer"/>
<class name="org.apache.tapestry5.services.MarkupRendererFilter"/
>
<class name="org.apache.tapestry5.services.MarkupWriterFactory"/
>
<class name="org.apache.tapestry5.services.MetaDataLocator"/>
<class name="org.apache.tapestry5.services.MethodFilter"/>
<class
name="org.apache.tapestry5.services.NullFieldStrategySource"/>
<class name="org.apache.tapestry5.services.ObjectRenderer"/>
<class
name="org.apache.tapestry5.services.PageDocumentGenerator"/>
<class name="org.apache.tapestry5.services.PageRenderLinkSource"/
>
<class
name="org.apache.tapestry5.services.PageRenderRequestFilter"/>
<class
name="org.apache.tapestry5.services.PageRenderRequestHandler"/>
<class
name="org.apache.tapestry5.services.PageRenderRequestParameters"/>
<class
name="org.apache.tapestry5.services.PartialMarkupRenderer"/>
<class
name="org.apache.tapestry5.services.PartialMarkupRendererFilter"/>
<class
name="org.apache.tapestry5.services.PersistentFieldBundle"/>
<class
name="org.apache.tapestry5.services.PersistentFieldChange"/>
<class
name="org.apache.tapestry5.services.PersistentFieldStrategy"/>
<class name="org.apache.tapestry5.services.PersistentLocale"/>
<class
name="org.apache.tapestry5.services.PropertyConduitSource"/>
<class name="org.apache.tapestry5.services.PropertyEditContext"/
>
<class
name="org.apache.tapestry5.services.PropertyOutputContext"/>
<class
name="org.apache.tapestry5.services.RelativeElementPosition"/>
<class name="org.apache.tapestry5.services.Request"/>
<class
name="org.apache.tapestry5.services.RequestExceptionHandler"/>
<class name="org.apache.tapestry5.services.RequestFilter"/>
<class name="org.apache.tapestry5.services.RequestGlobals"/>
<class name="org.apache.tapestry5.services.RequestHandler"/>
<class
name="org.apache.tapestry5.services.ResourceDigestGenerator"/>
<class name="org.apache.tapestry5.services.Response"/>
<class
name="org.apache.tapestry5.services.ResponseCompressionAnalyzer"/>
<class name="org.apache.tapestry5.services.ResponseRenderer"/>
<class
name="org.apache.tapestry5.services.ServletApplicationInitializer"/>
<class
name="org.apache.tapestry5.services.ServletApplicationInitializerFilter"/
>
<class name="org.apache.tapestry5.services.Session"/>
<class
name="org.apache.tapestry5.services.SessionPersistedObjectAnalyzer"/>
<class
name="org.apache.tapestry5.services.StackTraceElementAnalyzer"/>
<class
name="org.apache.tapestry5.services.StackTraceElementClassConstants"/>
<class name="org.apache.tapestry5.services.TapestryModule$1"/>
<class name="org.apache.tapestry5.services.TapestryModule$10"/>
<class name="org.apache.tapestry5.services.TapestryModule$11"/>
<class name="org.apache.tapestry5.services.TapestryModule$12"/>
<class name="org.apache.tapestry5.services.TapestryModule$13"/>
<class name="org.apache.tapestry5.services.TapestryModule$14"/>
<class name="org.apache.tapestry5.services.TapestryModule$15"/>
<class name="org.apache.tapestry5.services.TapestryModule$16"/>
<class name="org.apache.tapestry5.services.TapestryModule$17$1"/
>
<class name="org.apache.tapestry5.services.TapestryModule$17"/>
<class name="org.apache.tapestry5.services.TapestryModule$18"/>
<class name="org.apache.tapestry5.services.TapestryModule$19"/>
<class name="org.apache.tapestry5.services.TapestryModule$2"/>
<class name="org.apache.tapestry5.services.TapestryModule$20"/>
<class name="org.apache.tapestry5.services.TapestryModule$21"/>
<class name="org.apache.tapestry5.services.TapestryModule$22"/>
<class name="org.apache.tapestry5.services.TapestryModule$23"/>
<class name="org.apache.tapestry5.services.TapestryModule$24"/>
<class name="org.apache.tapestry5.services.TapestryModule$25"/>
<class name="org.apache.tapestry5.services.TapestryModule$26"/>
<class name="org.apache.tapestry5.services.TapestryModule$27"/>
<class name="org.apache.tapestry5.services.TapestryModule$28"/>
<class name="org.apache.tapestry5.services.TapestryModule$29"/>
<class name="org.apache.tapestry5.services.TapestryModule$3"/>
<class name="org.apache.tapestry5.services.TapestryModule$30"/>
<class name="org.apache.tapestry5.services.TapestryModule$31"/>
<class name="org.apache.tapestry5.services.TapestryModule$32"/>
<class name="org.apache.tapestry5.services.TapestryModule$33"/>
<class name="org.apache.tapestry5.services.TapestryModule$34"/>
<class name="org.apache.tapestry5.services.TapestryModule$35"/>
<class name="org.apache.tapestry5.services.TapestryModule$36"/>
<class name="org.apache.tapestry5.services.TapestryModule$37"/>
<class name="org.apache.tapestry5.services.TapestryModule$38"/>
<class name="org.apache.tapestry5.services.TapestryModule$39"/>
<class name="org.apache.tapestry5.services.TapestryModule$4"/>
<class name="org.apache.tapestry5.services.TapestryModule$5"/>
<class name="org.apache.tapestry5.services.TapestryModule$6"/>
<class name="org.apache.tapestry5.services.TapestryModule$7"/>
<class name="org.apache.tapestry5.services.TapestryModule$8"/>
<class name="org.apache.tapestry5.services.TapestryModule$9"/>
<class name="org.apache.tapestry5.services.TapestryModule
$ApplicationInitializerTerminator"/>
<class name="org.apache.tapestry5.services.TapestryModule
$HttpServletRequestHandlerTerminator"/>
<class name="org.apache.tapestry5.services.TapestryModule
$RequestHandlerTerminator"/>
<class name="org.apache.tapestry5.services.TapestryModule
$ServletApplicationInitializerTerminator"/>
<class name="org.apache.tapestry5.services.TapestryModule"/>
<class name="org.apache.tapestry5.services.Traditional"/>
<class name="org.apache.tapestry5.services.TransformConstants"/>
<class
name="org.apache.tapestry5.services.TransformMethodSignature"/>
<class name="org.apache.tapestry5.services.TransformUtils
$PrimitiveTypeInfo"/>
<class name="org.apache.tapestry5.services.TransformUtils"/>
<class name="org.apache.tapestry5.services.TranslatorSource"/>
<class name="org.apache.tapestry5.services.UpdateListener"/>
<class name="org.apache.tapestry5.services.UpdateListenerHub"/>
<class name="org.apache.tapestry5.services.URLEncoder"/>
<class name="org.apache.tapestry5.services.URLRewriter"/>
<class
name="org.apache.tapestry5.services.ValidationConstraintGenerator"/>
<class
name="org.apache.tapestry5.services.ValidationMessagesSource"/>
<class name="org.apache.tapestry5.services.ValueEncoderFactory"/
>
<class name="org.apache.tapestry5.services.ValueEncoderSource"/>
<class name="org.apache.tapestry5.urlrewriter.IntegrationTests"/
>
<class
name="org.apache.tapestry5.urlrewriter.SimpleRequestWrapperTest"/>
<class
name="org.apache.tapestry5.urlrewriter.RewriteRuleApplicability"/>
<class
name="org.apache.tapestry5.urlrewriter.SimpleRequestWrapper"/>
<class name="org.apache.tapestry5.urlrewriter.URLRewriteContext"/
>
<class name="org.apache.tapestry5.urlrewriter.URLRewriterRule"/>
<class
name="org.apache.tapestry5.util.DefaultPrimaryKeyEncoderTest$1"/>
<class
name="org.apache.tapestry5.util.DefaultPrimaryKeyEncoderTest
$IntStringEncoder"/>
<class
name="org.apache.tapestry5.util.DefaultPrimaryKeyEncoderTest"/>
<class name="org.apache.tapestry5.util.EnumSelectModelTest"/>
<class name="org.apache.tapestry5.util.FindTheParameterizedType"/
>
<class name="org.apache.tapestry5.util.IdentifyTransformer"/>
<class name="org.apache.tapestry5.util.StringToEnumCoercionTest"/
>
<class name="org.apache.tapestry5.util.Transformer"/>
<class name="org.apache.tapestry5.util.UppercaseTransformer"/>
<class name="org.apache.tapestry5.util.AbstractSelectModel"/>
<class name="org.apache.tapestry5.util.DefaultPrimaryKeyEncoder"/
>
<class name="org.apache.tapestry5.util.EnumSelectModel"/>
<class name="org.apache.tapestry5.util.EnumValueEncoder"/>
<class name="org.apache.tapestry5.util.PublicUtilMessages"/>
<class name="org.apache.tapestry5.util.ResponseWrapper"/>
<class name="org.apache.tapestry5.util.StringToEnumCoercion"/>
<class name="org.apache.tapestry5.util.TextStreamResponse"/>
<class name="org.apache.tapestry5.validator.EmailTest"/>
<class name="org.apache.tapestry5.validator.MaxLengthTest"/>
<class name="org.apache.tapestry5.validator.MaxTest"/>
<class name="org.apache.tapestry5.validator.MinLengthTest"/>
<class name="org.apache.tapestry5.validator.MinTest"/>
<class name="org.apache.tapestry5.validator.RegexpTest"/>
<class name="org.apache.tapestry5.validator.RequiredTest"/>
<class name="org.apache.tapestry5.validator.AbstractValidator"/>
<class name="org.apache.tapestry5.validator.Email"/>
<class name="org.apache.tapestry5.validator.Max"/>
<class name="org.apache.tapestry5.validator.MaxLength"/>
<class name="org.apache.tapestry5.validator.Min"/>
<class name="org.apache.tapestry5.validator.MinLength"/>
<class name="org.apache.tapestry5.validator.Regexp"/>
<class name="org.apache.tapestry5.validator.Required"/>
</classes>
</test>
</suite>

Has anyone else seen this behavior? Is there an easy way to turn it
off? Its problematic on many fronts, inlcuding the fact that I may be
running the same tests multiple times (in different <test>s) for no
good reason.

Thanks in advance for any insight or help!

hls...@gmail.com

unread,
Dec 16, 2009, 6:07:04 PM12/16/09
to testng-users
As a side note, the org.apache.tapestry5.test classes are coming out
of a JAR on the classpath when using the Maven build, as are all
the .ioc. packages.

hls...@gmail.com

unread,
Dec 17, 2009, 2:18:21 PM12/17/09
to testng-users
I upped the debug level to 10, but it's still not clear why it's
picking up classes outside of the listed packages:

$ mvn install
[INFO] Scanning for projects...
[INFO]
------------------------------------------------------------------------
[INFO] Building Tapestry Core Library
[INFO] task-segment: [install]
[INFO]
------------------------------------------------------------------------
[INFO] [antlr3:antlr {execution: default}]
org/apache/tapestry5/internal/antlr/PropertyExpressionLexer.g
org/apache/tapestry5/internal/antlr/PropertyExpressionParser.g
[INFO] snapshot org.apache.tapestry:tapestry-ioc:5.2.0-SNAPSHOT:
checking for updates from tapestry
[INFO] snapshot org.apache.tapestry:tapestry-ioc:5.2.0-SNAPSHOT:
checking for updates from tapestry-snapshot
[INFO] snapshot org.apache.tapestry:tapestry-ioc:5.2.0-SNAPSHOT:
checking for updates from OpenQA_Release
[INFO] snapshot org.apache.tapestry:tapestry-ioc:5.2.0-SNAPSHOT:
checking for updates from apache.snapshots
Downloading:
http://tapestry.formos.com/maven-snapshot-repository/org/apache/tapestry/tapestry-ioc/5.2.0-SNAPSHOT/tapestry-ioc-5.2.0-20091217.091422-177.pom
4K downloaded (tapestry-ioc-5.2.0-20091217.091422-177.pom)
[INFO] snapshot org.apache.tapestry:tapestry5-annotations:5.2.0-
SNAPSHOT: checking for updates from tapestry
[INFO] snapshot org.apache.tapestry:tapestry5-annotations:5.2.0-
SNAPSHOT: checking for updates from tapestry-snapshot
[INFO] snapshot org.apache.tapestry:tapestry5-annotations:5.2.0-
SNAPSHOT: checking for updates from OpenQA_Release
[INFO] snapshot org.apache.tapestry:tapestry5-annotations:5.2.0-
SNAPSHOT: checking for updates from apache.snapshots
[INFO] snapshot org.apache.tapestry:tapestry5-annotations:5.2.0-
SNAPSHOT: checking for updates from jboss
Downloading:
http://tapestry.formos.com/maven-snapshot-repository/org/apache/tapestry/tapestry5-annotations/5.2.0-SNAPSHOT/tapestry5-annotations-5.2.0-20091217.091422-177.pom
2K downloaded (tapestry5-annotations-5.2.0-20091217.091422-177.pom)
[INFO] snapshot org.apache.tapestry:tapestry-test:5.2.0-SNAPSHOT:
checking for updates from tapestry
[INFO] snapshot org.apache.tapestry:tapestry-test:5.2.0-SNAPSHOT:
checking for updates from tapestry-snapshot
[INFO] snapshot org.apache.tapestry:tapestry-test:5.2.0-SNAPSHOT:
checking for updates from OpenQA_Release
[INFO] snapshot org.apache.tapestry:tapestry-test:5.2.0-SNAPSHOT:
checking for updates from apache.snapshots
Downloading:
http://tapestry.formos.com/maven-snapshot-repository/org/apache/tapestry/tapestry-test/5.2.0-SNAPSHOT/tapestry-test-5.2.0-20091217.091422-177.pom
3K downloaded (tapestry-test-5.2.0-20091217.091422-177.pom)
Downloading:
http://tapestry.formos.com/maven-snapshot-repository/org/apache/tapestry/tapestry-ioc/5.2.0-SNAPSHOT/tapestry-ioc-5.2.0-20091217.091422-177.jar
398K downloaded (tapestry-ioc-5.2.0-20091217.091422-177.jar)
Downloading:
http://tapestry.formos.com/maven-snapshot-repository/org/apache/tapestry/tapestry5-annotations/5.2.0-SNAPSHOT/tapestry5-annotations-5.2.0-20091217.091422-177.jar
16K downloaded (tapestry5-annotations-5.2.0-20091217.091422-177.jar)
Downloading:
http://tapestry.formos.com/maven-snapshot-repository/org/apache/tapestry/tapestry-test/5.2.0-SNAPSHOT/tapestry-test-5.2.0-20091217.091422-177.jar
454K downloaded (tapestry-test-5.2.0-20091217.091422-177.jar)
[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] [resources:resources {execution: default-resources}]
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 169 resources
[INFO] Copying 3 resources
[INFO] [compiler:compile {execution: default-compile}]
[INFO] Compiling 2 source files to /Users/Howard/work/t5-project/
tapestry-core/target/classes
[INFO] [resources:testResources {execution: default-testResources}]
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 196 resources
[INFO] Copying 3 resources
[INFO] [compiler:testCompile {execution: default-testCompile}]
[INFO] Nothing to compile - all classes are up to date
[INFO] [surefire:test {execution: default-test}]
[INFO] Surefire report directory: /Users/Howard/work/t5-project/
tapestry-core/target/surefire-reports

-------------------------------------------------------
T E S T S
-------------------------------------------------------
Running TestSuite
[PackageUtils] Looking for test classes in the directory: /Users/
Howard/work/t5-project/tapestry-core/target/test-classes/org/apache/
tapestry5
[PackageUtils] Found class ContentTypeTest, seeing it if it's included
or excluded
[PackageUtils] ... Including class ContentTypeTest
[PackageUtils] Found class FieldComponent, seeing it if it's included
or excluded
[PackageUtils] ... Including class FieldComponent
[PackageUtils] Found class MarkupUtilsTest, seeing it if it's included
or excluded
[PackageUtils] ... Including class MarkupUtilsTest
[PackageUtils] Found class Stooge, seeing it if it's included or
excluded
[PackageUtils] ... Including class Stooge
[PackageUtils] Found class ValidationTrackerImplTest, seeing it if
it's included or excluded
[PackageUtils] ... Including class ValidationTrackerImplTest
[PackageUtils] Found class VersionUtilsTest, seeing it if it's
included or excluded
[PackageUtils] ... Including class VersionUtilsTest
[PackageUtils] Looking for test classes in the directory: /Users/
Howard/work/t5-project/tapestry-core/target/classes/org/apache/
tapestry5
[PackageUtils] Found class AbstractOptionModel, seeing it if it's
included or excluded
[PackageUtils] ... Including class AbstractOptionModel
[PackageUtils] Found class Asset, seeing it if it's included or
excluded
[PackageUtils] ... Including class Asset
[PackageUtils] Found class Asset2, seeing it if it's included or
excluded
[PackageUtils] ... Including class Asset2
[PackageUtils] Found class BaseOptimizedApplicationStateObject, seeing
it if it's included or excluded
[PackageUtils] ... Including class BaseOptimizedApplicationStateObject
[PackageUtils] Found class BaseOptimizedSessionPersistedObject, seeing
it if it's included or excluded
[PackageUtils] ... Including class BaseOptimizedSessionPersistedObject
[PackageUtils] Found class BaseValidationDecorator, seeing it if it's
included or excluded
[PackageUtils] ... Including class BaseValidationDecorator
[PackageUtils] Found class Binding, seeing it if it's included or
excluded
[PackageUtils] ... Including class Binding
[PackageUtils] Found class BindingConstants, seeing it if it's
included or excluded
[PackageUtils] ... Including class BindingConstants
[PackageUtils] Found class Block, seeing it if it's included or
excluded
[PackageUtils] ... Including class Block
[PackageUtils] Found class BlockNotFoundException, seeing it if it's
included or excluded
[PackageUtils] ... Including class BlockNotFoundException
[PackageUtils] Found class ClientElement, seeing it if it's included
or excluded
[PackageUtils] ... Including class ClientElement
[PackageUtils] Found class ComponentAction, seeing it if it's included
or excluded
[PackageUtils] ... Including class ComponentAction
[PackageUtils] Found class ComponentEventCallback, seeing it if it's
included or excluded
[PackageUtils] ... Including class ComponentEventCallback
[PackageUtils] Found class ComponentResources, seeing it if it's
included or excluded
[PackageUtils] ... Including class ComponentResources
[PackageUtils] Found class ComponentResourcesCommon, seeing it if it's
included or excluded
[PackageUtils] ... Including class ComponentResourcesCommon
[PackageUtils] Found class ContentType, seeing it if it's included or
excluded
[PackageUtils] ... Including class ContentType
[PackageUtils] Found class CSSClassConstants, seeing it if it's
included or excluded
[PackageUtils] ... Including class CSSClassConstants
[PackageUtils] Found class EventConstants, seeing it if it's included
or excluded
[PackageUtils] ... Including class EventConstants
[PackageUtils] Found class EventContext, seeing it if it's included or
excluded
[PackageUtils] ... Including class EventContext
[PackageUtils] Found class Field, seeing it if it's included or
excluded
[PackageUtils] ... Including class Field
[PackageUtils] Found class FieldFocusPriority, seeing it if it's
included or excluded
[PackageUtils] ... Including class FieldFocusPriority
[PackageUtils] Found class FieldTranslator, seeing it if it's included
or excluded
[PackageUtils] ... Including class FieldTranslator
[PackageUtils] Found class FieldValidationSupport, seeing it if it's
included or excluded
[PackageUtils] ... Including class FieldValidationSupport
[PackageUtils] Found class FieldValidator, seeing it if it's included
or excluded
[PackageUtils] ... Including class FieldValidator
[PackageUtils] Found class FormValidationControl, seeing it if it's
included or excluded
[PackageUtils] ... Including class FormValidationControl
[PackageUtils] Found class Link, seeing it if it's included or
excluded
[PackageUtils] ... Including class Link
[PackageUtils] Found class MarkupConstants, seeing it if it's included
or excluded
[PackageUtils] ... Including class MarkupConstants
[PackageUtils] Found class MarkupUtils, seeing it if it's included or
excluded
[PackageUtils] ... Including class MarkupUtils
[PackageUtils] Found class MarkupWriter, seeing it if it's included or
excluded
[PackageUtils] ... Including class MarkupWriter
[PackageUtils] Found class MarkupWriterAdapter, seeing it if it's
included or excluded
[PackageUtils] ... Including class MarkupWriterAdapter
[PackageUtils] Found class MarkupWriterListener, seeing it if it's
included or excluded
[PackageUtils] ... Including class MarkupWriterListener
[PackageUtils] Found class MetaDataConstants, seeing it if it's
included or excluded
[PackageUtils] ... Including class MetaDataConstants
[PackageUtils] Found class NullFieldStrategy, seeing it if it's
included or excluded
[PackageUtils] ... Including class NullFieldStrategy
[PackageUtils] Found class OptimizedApplicationStateObject, seeing it
if it's included or excluded
[PackageUtils] ... Including class OptimizedApplicationStateObject
[PackageUtils] Found class OptimizedSessionPersistedObject, seeing it
if it's included or excluded
[PackageUtils] ... Including class OptimizedSessionPersistedObject
[PackageUtils] Found class OptionGroupModel, seeing it if it's
included or excluded
[PackageUtils] ... Including class OptionGroupModel
[PackageUtils] Found class OptionModel, seeing it if it's included or
excluded
[PackageUtils] ... Including class OptionModel
[PackageUtils] Found class PersistenceConstants, seeing it if it's
included or excluded
[PackageUtils] ... Including class PersistenceConstants
[PackageUtils] Found class PrimaryKeyEncoder, seeing it if it's
included or excluded
[PackageUtils] ... Including class PrimaryKeyEncoder
[PackageUtils] Found class PropertyConduit, seeing it if it's included
or excluded
[PackageUtils] ... Including class PropertyConduit
[PackageUtils] Found class PropertyOverrides, seeing it if it's
included or excluded
[PackageUtils] ... Including class PropertyOverrides
[PackageUtils] Found class RadioContainer, seeing it if it's included
or excluded
[PackageUtils] ... Including class RadioContainer
[PackageUtils] Found class Renderable, seeing it if it's included or
excluded
[PackageUtils] ... Including class Renderable
[PackageUtils] Found class RenderSupport, seeing it if it's included
or excluded
[PackageUtils] ... Including class RenderSupport
[PackageUtils] Found class SelectModel, seeing it if it's included or
excluded
[PackageUtils] ... Including class SelectModel
[PackageUtils] Found class SelectModelVisitor, seeing it if it's
included or excluded
[PackageUtils] ... Including class SelectModelVisitor
[PackageUtils] Found class StreamResponse, seeing it if it's included
or excluded
[PackageUtils] ... Including class StreamResponse
[PackageUtils] Found class SymbolConstants, seeing it if it's included
or excluded
[PackageUtils] ... Including class SymbolConstants
[PackageUtils] Found class TapestryFilter, seeing it if it's included
or excluded
[PackageUtils] ... Including class TapestryFilter
[PackageUtils] Found class TapestryMarkers, seeing it if it's included
or excluded
[PackageUtils] ... Including class TapestryMarkers
[PackageUtils] Found class Translator, seeing it if it's included or
excluded
[PackageUtils] ... Including class Translator
[PackageUtils] Found class ValidationDecorator, seeing it if it's
included or excluded
[PackageUtils] ... Including class ValidationDecorator
[PackageUtils] Found class ValidationException, seeing it if it's
included or excluded
[PackageUtils] ... Including class ValidationException
[PackageUtils] Found class ValidationTracker, seeing it if it's
included or excluded
[PackageUtils] ... Including class ValidationTracker
[PackageUtils] Found class ValidationTrackerImpl$FieldTracker, seeing
it if it's included or excluded
[PackageUtils] ... Including class ValidationTrackerImpl$FieldTracker
[PackageUtils] Found class ValidationTrackerImpl, seeing it if it's
included or excluded
[PackageUtils] ... Including class ValidationTrackerImpl
[PackageUtils] Found class Validator, seeing it if it's included or
excluded
[PackageUtils] ... Including class Validator
[PackageUtils] Found class ValueEncoder, seeing it if it's included or
excluded
[PackageUtils] ... Including class ValueEncoder
[PackageUtils] Found class VersionUtils, seeing it if it's included or
excluded
[PackageUtils] ... Including class VersionUtils
[PackageUtils] Package name is org.apache.tapestry5
[PackageUtils] Package name is org.apache.tapestry5.ioc
[PackageUtils] Package name is org.apache.tapestry5.ioc.test
[PackageUtils] Package name is org.apache.tapestry5.ioc.def
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Package name is org.apache.tapestry5.ioc.util
[PackageUtils] Package name is org.apache.tapestry5.ioc.annotations
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal.util
[PackageUtils] Package name is org.apache.tapestry5
[PackageUtils] Found class IOCSymbols, seeing it if it's included or
excluded
[PackageUtils] ... Including class IOCSymbols
[PackageUtils] Package name is org.apache.tapestry5.ioc
[PackageUtils] Found class ServiceBuilder, seeing it if it's included
or excluded
[PackageUtils] ... Including class ServiceBuilder
[PackageUtils] Package name is org.apache.tapestry5.ioc
[PackageUtils] Found class ServiceBinder, seeing it if it's included
or excluded
[PackageUtils] ... Including class ServiceBinder
[PackageUtils] Package name is org.apache.tapestry5.ioc
[PackageUtils] Found class AdvisorDef, seeing it if it's included or
excluded
[PackageUtils] ... Including class AdvisorDef
[PackageUtils] Package name is org.apache.tapestry5.ioc
[PackageUtils] Found class AnnotationProvider, seeing it if it's
included or excluded
[PackageUtils] ... Including class AnnotationProvider
[PackageUtils] Package name is org.apache.tapestry5.ioc
[PackageUtils] Found class ServiceBindingOptions, seeing it if it's
included or excluded
[PackageUtils] ... Including class ServiceBindingOptions
[PackageUtils] Package name is org.apache.tapestry5.ioc
[PackageUtils] Found class Configuration, seeing it if it's included
or excluded
[PackageUtils] ... Including class Configuration
[PackageUtils] Package name is org.apache.tapestry5.ioc
[PackageUtils] Found class Resource, seeing it if it's included or
excluded
[PackageUtils] ... Including class Resource
[PackageUtils] Package name is org.apache.tapestry5.ioc
[PackageUtils] Found class Messages, seeing it if it's included or
excluded
[PackageUtils] ... Including class Messages
[PackageUtils] Package name is org.apache.tapestry5.ioc
[PackageUtils] Found class RegistryBuilder, seeing it if it's included
or excluded
[PackageUtils] ... Including class RegistryBuilder
[PackageUtils] Package name is org.apache.tapestry5.ioc
[PackageUtils] Found class ScopeConstants, seeing it if it's included
or excluded
[PackageUtils] ... Including class ScopeConstants
[PackageUtils] Package name is org.apache.tapestry5.ioc
[PackageUtils] Found class MappedConfiguration, seeing it if it's
included or excluded
[PackageUtils] ... Including class MappedConfiguration
[PackageUtils] Package name is org.apache.tapestry5.ioc
[PackageUtils] Found class ServiceAdvisor, seeing it if it's included
or excluded
[PackageUtils] ... Including class ServiceAdvisor
[PackageUtils] Package name is org.apache.tapestry5.ioc
[PackageUtils] Found class ServiceLifecycle, seeing it if it's
included or excluded
[PackageUtils] ... Including class ServiceLifecycle
[PackageUtils] Package name is org.apache.tapestry5.ioc.test
[PackageUtils] Found class TestBase, seeing it if it's included or
excluded
[PackageUtils] ... Including class TestBase
[PackageUtils] Package name is org.apache.tapestry5.ioc.test
[PackageUtils] Found class IOCTestCase, seeing it if it's included or
excluded
[PackageUtils] ... Including class IOCTestCase
[PackageUtils] Package name is org.apache.tapestry5.ioc.test
[PackageUtils] Found class MockTester$1, seeing it if it's included or
excluded
[PackageUtils] ... Including class MockTester$1
[PackageUtils] Package name is org.apache.tapestry5.ioc.test
[PackageUtils] Found class TestBase$ThreadLocalControl, seeing it if
it's included or excluded
[PackageUtils] ... Including class TestBase$ThreadLocalControl
[PackageUtils] Package name is org.apache.tapestry5.ioc.test
[PackageUtils] Found class MockTester, seeing it if it's included or
excluded
[PackageUtils] ... Including class MockTester
[PackageUtils] Package name is org.apache.tapestry5.ioc.test
[PackageUtils] Found class MockTester$ThreadLocalControl, seeing it if
it's included or excluded
[PackageUtils] ... Including class MockTester$ThreadLocalControl
[PackageUtils] Package name is org.apache.tapestry5.ioc
[PackageUtils] Found class OrderedConfiguration, seeing it if it's
included or excluded
[PackageUtils] ... Including class OrderedConfiguration
[PackageUtils] Package name is org.apache.tapestry5.ioc
[PackageUtils] Found class ServiceBuilderResources, seeing it if it's
included or excluded
[PackageUtils] ... Including class ServiceBuilderResources
[PackageUtils] Package name is org.apache.tapestry5.ioc.def
[PackageUtils] Found class ServiceDef, seeing it if it's included or
excluded
[PackageUtils] ... Including class ServiceDef
[PackageUtils] Package name is org.apache.tapestry5.ioc.def
[PackageUtils] Found class DecoratorDef, seeing it if it's included or
excluded
[PackageUtils] ... Including class DecoratorDef
[PackageUtils] Package name is org.apache.tapestry5.ioc.def
[PackageUtils] Found class ContributionDef, seeing it if it's included
or excluded
[PackageUtils] ... Including class ContributionDef
[PackageUtils] Package name is org.apache.tapestry5.ioc.def
[PackageUtils] Found class ModuleDef2, seeing it if it's included or
excluded
[PackageUtils] ... Including class ModuleDef2
[PackageUtils] Package name is org.apache.tapestry5.ioc.def
[PackageUtils] Found class ModuleDef, seeing it if it's included or
excluded
[PackageUtils] ... Including class ModuleDef
[PackageUtils] Package name is org.apache.tapestry5.ioc.def
[PackageUtils] Found class ServiceDef2, seeing it if it's included or
excluded
[PackageUtils] ... Including class ServiceDef2
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class LoggingDecorator, seeing it if it's
included or excluded
[PackageUtils] ... Including class LoggingDecorator
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class Builtin, seeing it if it's included or
excluded
[PackageUtils] ... Including class Builtin
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class RegistryShutdownListener, seeing it if it's
included or excluded
[PackageUtils] ... Including class RegistryShutdownListener
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class MethodSignature, seeing it if it's included
or excluded
[PackageUtils] ... Including class MethodSignature
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class PropertyAdapter, seeing it if it's included
or excluded
[PackageUtils] ... Including class PropertyAdapter
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class TapestryIOCModule$9, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryIOCModule$9
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class TapestryIOCModule$2, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryIOCModule$2
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class ServiceActivity, seeing it if it's included
or excluded
[PackageUtils] ... Including class ServiceActivity
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class TapestryIOCModule$16, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryIOCModule$16
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class AspectDecorator, seeing it if it's included
or excluded
[PackageUtils] ... Including class AspectDecorator
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class ServiceLifecycleSource, seeing it if it's
included or excluded
[PackageUtils] ... Including class ServiceLifecycleSource
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class TapestryIOCModule$19, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryIOCModule$19
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class TapestryIOCModule$5, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryIOCModule$5
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class ExceptionAnalysis, seeing it if it's
included or excluded
[PackageUtils] ... Including class ExceptionAnalysis
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class ClassPropertyAdapter, seeing it if it's
included or excluded
[PackageUtils] ... Including class ClassPropertyAdapter
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class ThreadLocale, seeing it if it's included or
excluded
[PackageUtils] ... Including class ThreadLocale
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class TapestryIOCModule$17, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryIOCModule$17
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class ExceptionInfo, seeing it if it's included
or excluded
[PackageUtils] ... Including class ExceptionInfo
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class ClassFactory, seeing it if it's included or
excluded
[PackageUtils] ... Including class ClassFactory
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class TapestryIOCModule$4, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryIOCModule$4
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class ChainBuilder, seeing it if it's included or
excluded
[PackageUtils] ... Including class ChainBuilder
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class TapestryIOCModule$1, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryIOCModule$1
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class TapestryIOCModule$23, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryIOCModule$23
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class TapestryIOCModule$7, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryIOCModule$7
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class TapestryIOCModule$27, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryIOCModule$27
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class TapestryIOCModule$6, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryIOCModule$6
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class MethodIterator, seeing it if it's included
or excluded
[PackageUtils] ... Including class MethodIterator
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class FactoryDefaults, seeing it if it's included
or excluded
[PackageUtils] ... Including class FactoryDefaults
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class ThreadCleanupListener, seeing it if it's
included or excluded
[PackageUtils] ... Including class ThreadCleanupListener
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class ExceptionTracker, seeing it if it's
included or excluded
[PackageUtils] ... Including class ExceptionTracker
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class RegistryShutdownHub, seeing it if it's
included or excluded
[PackageUtils] ... Including class RegistryShutdownHub
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class MasterObjectProvider, seeing it if it's
included or excluded
[PackageUtils] ... Including class MasterObjectProvider
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class TapestryIOCModule$8, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryIOCModule$8
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class TapestryIOCModule$13, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryIOCModule$13
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class TapestryIOCModule$10, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryIOCModule$10
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class TapestryIOCModule$28, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryIOCModule$28
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class ClassFabUtils$PrimitiveInfo, seeing it if
it's included or excluded
[PackageUtils] ... Including class ClassFabUtils$PrimitiveInfo
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class TypeCoercer, seeing it if it's included or
excluded
[PackageUtils] ... Including class TypeCoercer
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class PropertyAccess, seeing it if it's included
or excluded
[PackageUtils] ... Including class PropertyAccess
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class ApplicationDefaults, seeing it if it's
included or excluded
[PackageUtils] ... Including class ApplicationDefaults
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class TapestryIOCModule$25, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryIOCModule$25
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class CoercionTuple$CoercionWrapper, seeing it if
it's included or excluded
[PackageUtils] ... Including class CoercionTuple$CoercionWrapper
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class TapestryIOCModule$15, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryIOCModule$15
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class TapestryIOCModule$12, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryIOCModule$12
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class ClassNameLocator, seeing it if it's
included or excluded
[PackageUtils] ... Including class ClassNameLocator
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class PropertyShadowBuilder, seeing it if it's
included or excluded
[PackageUtils] ... Including class PropertyShadowBuilder
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class ServiceActivityScoreboard, seeing it if
it's included or excluded
[PackageUtils] ... Including class ServiceActivityScoreboard
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class TapestryIOCModule$11, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryIOCModule$11
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class TapestryIOCModule$22, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryIOCModule$22
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class TapestryIOCModule$3, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryIOCModule$3
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class AspectInterceptorBuilder, seeing it if it's
included or excluded
[PackageUtils] ... Including class AspectInterceptorBuilder
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class MethodIterator$1, seeing it if it's
included or excluded
[PackageUtils] ... Including class MethodIterator$1
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class Coercion, seeing it if it's included or
excluded
[PackageUtils] ... Including class Coercion
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class ClassFab, seeing it if it's included or
excluded
[PackageUtils] ... Including class ClassFab
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class CoercionTuple, seeing it if it's included
or excluded
[PackageUtils] ... Including class CoercionTuple
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class PipelineBuilder, seeing it if it's included
or excluded
[PackageUtils] ... Including class PipelineBuilder
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class TapestryIOCModule$14, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryIOCModule$14
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class StrategyBuilder, seeing it if it's included
or excluded
[PackageUtils] ... Including class StrategyBuilder
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class ClassFabUtils, seeing it if it's included
or excluded
[PackageUtils] ... Including class ClassFabUtils
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class Status, seeing it if it's included or
excluded
[PackageUtils] ... Including class Status
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class TapestryIOCModule$18, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryIOCModule$18
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class SymbolSource, seeing it if it's included or
excluded
[PackageUtils] ... Including class SymbolSource
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class TapestryIOCModule$20, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryIOCModule$20
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class LazyAdvisor, seeing it if it's included or
excluded
[PackageUtils] ... Including class LazyAdvisor
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class TapestryIOCModule$26, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryIOCModule$26
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class TapestryIOCModule, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryIOCModule
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class ClasspathURLConverter, seeing it if it's
included or excluded
[PackageUtils] ... Including class ClasspathURLConverter
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class ServiceOverride, seeing it if it's included
or excluded
[PackageUtils] ... Including class ServiceOverride
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class PerthreadManager, seeing it if it's
included or excluded
[PackageUtils] ... Including class PerthreadManager
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class SymbolProvider, seeing it if it's included
or excluded
[PackageUtils] ... Including class SymbolProvider
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class TapestryIOCModule$21, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryIOCModule$21
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class ExceptionAnalyzer, seeing it if it's
included or excluded
[PackageUtils] ... Including class ExceptionAnalyzer
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class TapestryIOCModule$24, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryIOCModule$24
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class DefaultImplementationBuilder, seeing it if
it's included or excluded
[PackageUtils] ... Including class DefaultImplementationBuilder
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class LoggingAdvisor, seeing it if it's included
or excluded
[PackageUtils] ... Including class LoggingAdvisor
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class ParallelExecutor, seeing it if it's
included or excluded
[PackageUtils] ... Including class ParallelExecutor
[PackageUtils] Package name is org.apache.tapestry5.ioc.services
[PackageUtils] Found class ThunkCreator, seeing it if it's included or
excluded
[PackageUtils] ... Including class ThunkCreator
[PackageUtils] Package name is org.apache.tapestry5.ioc
[PackageUtils] Found class IOCUtilities, seeing it if it's included or
excluded
[PackageUtils] ... Including class IOCUtilities
[PackageUtils] Package name is org.apache.tapestry5.ioc.util
[PackageUtils] Found class AbstractMessages$1, seeing it if it's
included or excluded
[PackageUtils] ... Including class AbstractMessages$1
[PackageUtils] Package name is org.apache.tapestry5.ioc.util
[PackageUtils] Found class CaseInsensitiveMap$Position, seeing it if
it's included or excluded
[PackageUtils] ... Including class CaseInsensitiveMap$Position
[PackageUtils] Package name is org.apache.tapestry5.ioc.util
[PackageUtils] Found class ExceptionUtils, seeing it if it's included
or excluded
[PackageUtils] ... Including class ExceptionUtils
[PackageUtils] Package name is org.apache.tapestry5.ioc.util
[PackageUtils] Found class CaseInsensitiveMap$EntrySet, seeing it if
it's included or excluded
[PackageUtils] ... Including class CaseInsensitiveMap$EntrySet
[PackageUtils] Package name is org.apache.tapestry5.ioc.util
[PackageUtils] Found class CaseInsensitiveMap, seeing it if it's
included or excluded
[PackageUtils] ... Including class CaseInsensitiveMap
[PackageUtils] Package name is org.apache.tapestry5.ioc.util
[PackageUtils] Found class CaseInsensitiveMap$EntrySetIterator, seeing
it if it's included or excluded
[PackageUtils] ... Including class CaseInsensitiveMap$EntrySetIterator
[PackageUtils] Package name is org.apache.tapestry5.ioc.util
[PackageUtils] Found class AbstractMessages$2, seeing it if it's
included or excluded
[PackageUtils] ... Including class AbstractMessages$2
[PackageUtils] Package name is org.apache.tapestry5.ioc.util
[PackageUtils] Found class StrategyRegistry, seeing it if it's
included or excluded
[PackageUtils] ... Including class StrategyRegistry
[PackageUtils] Package name is org.apache.tapestry5.ioc.util
[PackageUtils] Found class TimeInterval, seeing it if it's included or
excluded
[PackageUtils] ... Including class TimeInterval
[PackageUtils] Package name is org.apache.tapestry5.ioc.util
[PackageUtils] Found class CaseInsensitiveMap$CIMEntry, seeing it if
it's included or excluded
[PackageUtils] ... Including class CaseInsensitiveMap$CIMEntry
[PackageUtils] Package name is org.apache.tapestry5.ioc.util
[PackageUtils] Found class AbstractMessages, seeing it if it's
included or excluded
[PackageUtils] ... Including class AbstractMessages
[PackageUtils] Package name is org.apache.tapestry5.ioc.util
[PackageUtils] Found class UtilMessages, seeing it if it's included or
excluded
[PackageUtils] ... Including class UtilMessages
[PackageUtils] Package name is org.apache.tapestry5.ioc.util
[PackageUtils] Found class Stack, seeing it if it's included or
excluded
[PackageUtils] ... Including class Stack
[PackageUtils] Package name is org.apache.tapestry5.ioc.util
[PackageUtils] Found class BodyBuilder, seeing it if it's included or
excluded
[PackageUtils] ... Including class BodyBuilder
[PackageUtils] Package name is org.apache.tapestry5.ioc.util
[PackageUtils] Package name is org.apache.tapestry5.ioc.util
[PackageUtils] Found class CaseInsensitiveMap$1, seeing it if it's
included or excluded
[PackageUtils] ... Including class CaseInsensitiveMap$1
[PackageUtils] Package name is org.apache.tapestry5.ioc
[PackageUtils] Found class MethodAdvice, seeing it if it's included or
excluded
[PackageUtils] ... Including class MethodAdvice
[PackageUtils] Package name is org.apache.tapestry5.ioc
[PackageUtils] Found class OrderConstraintBuilder, seeing it if it's
included or excluded
[PackageUtils] ... Including class OrderConstraintBuilder
[PackageUtils] Package name is org.apache.tapestry5.ioc
[PackageUtils] Found class Orderable, seeing it if it's included or
excluded
[PackageUtils] ... Including class Orderable
[PackageUtils] Package name is org.apache.tapestry5.ioc
[PackageUtils] Found class ObjectLocator, seeing it if it's included
or excluded
[PackageUtils] ... Including class ObjectLocator
[PackageUtils] Package name is org.apache.tapestry5.ioc
[PackageUtils] Found class Invocation, seeing it if it's included or
excluded
[PackageUtils] ... Including class Invocation
[PackageUtils] Package name is org.apache.tapestry5.ioc
[PackageUtils] Found class Registry, seeing it if it's included or
excluded
[PackageUtils] ... Including class Registry
[PackageUtils] Package name is org.apache.tapestry5.ioc
[PackageUtils] Found class ObjectProvider, seeing it if it's included
or excluded
[PackageUtils] ... Including class ObjectProvider
[PackageUtils] Package name is org.apache.tapestry5.ioc
[PackageUtils] Found class ServiceDecorator, seeing it if it's
included or excluded
[PackageUtils] ... Including class ServiceDecorator
[PackageUtils] Package name is org.apache.tapestry5.ioc.annotations
[PackageUtils] Found class UsesMappedConfiguration, seeing it if it's
included or excluded
[PackageUtils] ... Including class UsesMappedConfiguration
[PackageUtils] Package name is org.apache.tapestry5.ioc.annotations
[PackageUtils] Found class UsesConfiguration, seeing it if it's
included or excluded
[PackageUtils] ... Including class UsesConfiguration
[PackageUtils] Package name is org.apache.tapestry5.ioc.annotations
[PackageUtils] Found class EagerLoad, seeing it if it's included or
excluded
[PackageUtils] ... Including class EagerLoad
[PackageUtils] Package name is org.apache.tapestry5.ioc.annotations
[PackageUtils] Found class ServiceId, seeing it if it's included or
excluded
[PackageUtils] ... Including class ServiceId
[PackageUtils] Package name is org.apache.tapestry5.ioc.annotations
[PackageUtils] Found class UsesOrderedConfiguration, seeing it if it's
included or excluded
[PackageUtils] ... Including class UsesOrderedConfiguration
[PackageUtils] Package name is org.apache.tapestry5.ioc.annotations
[PackageUtils] Found class Match, seeing it if it's included or
excluded
[PackageUtils] ... Including class Match
[PackageUtils] Package name is org.apache.tapestry5.ioc.annotations
[PackageUtils] Found class Order, seeing it if it's included or
excluded
[PackageUtils] ... Including class Order
[PackageUtils] Package name is org.apache.tapestry5.ioc.annotations
[PackageUtils] Found class Marker, seeing it if it's included or
excluded
[PackageUtils] ... Including class Marker
[PackageUtils] Package name is org.apache.tapestry5.ioc.annotations
[PackageUtils] Found class Scope, seeing it if it's included or
excluded
[PackageUtils] ... Including class Scope
[PackageUtils] Package name is org.apache.tapestry5.ioc.annotations
[PackageUtils] Found class PreventServiceDecoration, seeing it if it's
included or excluded
[PackageUtils] ... Including class PreventServiceDecoration
[PackageUtils] Package name is org.apache.tapestry5.ioc.annotations
[PackageUtils] Found class NotLazy, seeing it if it's included or
excluded
[PackageUtils] ... Including class NotLazy
[PackageUtils] Package name is org.apache.tapestry5.ioc.annotations
[PackageUtils] Found class SubModule, seeing it if it's included or
excluded
[PackageUtils] ... Including class SubModule
[PackageUtils] Package name is org.apache.tapestry5.ioc
[PackageUtils] Found class OrderConstraint, seeing it if it's included
or excluded
[PackageUtils] ... Including class OrderConstraint
[PackageUtils] Package name is org.apache.tapestry5.ioc
[PackageUtils] Found class IdMatcher, seeing it if it's included or
excluded
[PackageUtils] ... Including class IdMatcher
[PackageUtils] Package name is org.apache.tapestry5.ioc
[PackageUtils] Found class LoggerSource, seeing it if it's included or
excluded
[PackageUtils] ... Including class LoggerSource
[PackageUtils] Package name is org.apache.tapestry5.ioc
[PackageUtils] Found class BaseLocatable, seeing it if it's included
or excluded
[PackageUtils] ... Including class BaseLocatable
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class ModuleImpl$7, seeing it if it's included or
excluded
[PackageUtils] ... Including class ModuleImpl$7
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class ServiceDefAccumulator, seeing it if it's
included or excluded
[PackageUtils] ... Including class ServiceDefAccumulator
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class ServiceBinderImpl, seeing it if it's
included or excluded
[PackageUtils] ... Including class ServiceBinderImpl
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class LoggerSourceImpl, seeing it if it's
included or excluded
[PackageUtils] ... Including class LoggerSourceImpl
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class InterceptorStackBuilder$1, seeing it if
it's included or excluded
[PackageUtils] ... Including class InterceptorStackBuilder$1
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class ConstructorServiceCreator, seeing it if
it's included or excluded
[PackageUtils] ... Including class ConstructorServiceCreator
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class RegistryWrapper, seeing it if it's included
or excluded
[PackageUtils] ... Including class RegistryWrapper
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class RegistryImpl$4, seeing it if it's included
or excluded
[PackageUtils] ... Including class RegistryImpl$4
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class ServiceProxyToken, seeing it if it's
included or excluded
[PackageUtils] ... Including class ServiceProxyToken
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class InterceptorStackBuilder, seeing it if it's
included or excluded
[PackageUtils] ... Including class InterceptorStackBuilder
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class RegistryImpl$3, seeing it if it's included
or excluded
[PackageUtils] ... Including class RegistryImpl$3
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class ServiceResourcesImpl$1, seeing it if it's
included or excluded
[PackageUtils] ... Including class ServiceResourcesImpl$1
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class RegistryImpl$7, seeing it if it's included
or excluded
[PackageUtils] ... Including class RegistryImpl$7
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class IOCInternalTestCase, seeing it if it's
included or excluded
[PackageUtils] ... Including class IOCInternalTestCase
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class ServiceResourcesImpl$4, seeing it if it's
included or excluded
[PackageUtils] ... Including class ServiceResourcesImpl$4
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class ServiceBuilderMethodInvoker, seeing it if
it's included or excluded
[PackageUtils] ... Including class ServiceBuilderMethodInvoker
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class AbstractMethodInvokingInstrumenter, seeing
it if it's included or excluded
[PackageUtils] ... Including class AbstractMethodInvokingInstrumenter
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class ModuleImpl$6$1, seeing it if it's included
or excluded
[PackageUtils] ... Including class ModuleImpl$6$1
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class AbstractServiceCreator$2, seeing it if it's
included or excluded
[PackageUtils] ... Including class AbstractServiceCreator$2
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class RegistryImpl$2, seeing it if it's included
or excluded
[PackageUtils] ... Including class RegistryImpl$2
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class ModuleImpl$4, seeing it if it's included or
excluded
[PackageUtils] ... Including class ModuleImpl$4
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class PerThreadOperationTracker$1, seeing it if
it's included or excluded
[PackageUtils] ... Including class PerThreadOperationTracker$1
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class RegistryImpl, seeing it if it's included or
excluded
[PackageUtils] ... Including class RegistryImpl
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class SingletonServiceLifecycle, seeing it if
it's included or excluded
[PackageUtils] ... Including class SingletonServiceLifecycle
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class InternalRegistry, seeing it if it's
included or excluded
[PackageUtils] ... Including class InternalRegistry
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class NullAnnotationProvider, seeing it if it's
included or excluded
[PackageUtils] ... Including class NullAnnotationProvider
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class DefaultModuleDefImpl$2, seeing it if it's
included or excluded
[PackageUtils] ... Including class DefaultModuleDefImpl$2
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class ValidatingOrderedConfigurationWrapper,
seeing it if it's included or excluded
[PackageUtils] ... Including class
ValidatingOrderedConfigurationWrapper
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class IOCMessages, seeing it if it's included or
excluded
[PackageUtils] ... Including class IOCMessages
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class ServiceDecoratorImpl, seeing it if it's
included or excluded
[PackageUtils] ... Including class ServiceDecoratorImpl
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class ModuleImpl$8, seeing it if it's included or
excluded
[PackageUtils] ... Including class ModuleImpl$8
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class RecursiveServiceCreationCheckWrapper,
seeing it if it's included or excluded
[PackageUtils] ... Including class
RecursiveServiceCreationCheckWrapper
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class ModuleImpl$3, seeing it if it's included or
excluded
[PackageUtils] ... Including class ModuleImpl$3
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class ModuleImpl$1, seeing it if it's included or
excluded
[PackageUtils] ... Including class ModuleImpl$1
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class OperationTrackingObjectCreator$1, seeing it
if it's included or excluded
[PackageUtils] ... Including class OperationTrackingObjectCreator$1
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class ModuleImpl$5, seeing it if it's included or
excluded
[PackageUtils] ... Including class ModuleImpl$5
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class CachingObjectCreator, seeing it if it's
included or excluded
[PackageUtils] ... Including class CachingObjectCreator
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class ClassFactoryImpl, seeing it if it's
included or excluded
[PackageUtils] ... Including class ClassFactoryImpl
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class JustInTimeObjectCreator, seeing it if it's
included or excluded
[PackageUtils] ... Including class JustInTimeObjectCreator
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class PropertyAccessImpl, seeing it if it's
included or excluded
[PackageUtils] ... Including class PropertyAccessImpl
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class PerthreadManagerImpl$1, seeing it if it's
included or excluded
[PackageUtils] ... Including class PerthreadManagerImpl$1
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class LazyAdvisorImpl$1$1, seeing it if it's
included or excluded
[PackageUtils] ... Including class LazyAdvisorImpl$1$1
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class MasterObjectProviderImpl$1, seeing it if
it's included or excluded
[PackageUtils] ... Including class MasterObjectProviderImpl$1
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class ClassNameLocatorImpl, seeing it if it's
included or excluded
[PackageUtils] ... Including class ClassNameLocatorImpl
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class MapSymbolProvider, seeing it if it's
included or excluded
[PackageUtils] ... Including class MapSymbolProvider
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class ClassPropertyAdapterImpl, seeing it if it's
included or excluded
[PackageUtils] ... Including class ClassPropertyAdapterImpl
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class BridgeBuilder, seeing it if it's included
or excluded
[PackageUtils] ... Including class BridgeBuilder
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class JustInTimeObjectCreator$1, seeing it if
it's included or excluded
[PackageUtils] ... Including class JustInTimeObjectCreator$1
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class PipelineBuilderImpl, seeing it if it's
included or excluded
[PackageUtils] ... Including class PipelineBuilderImpl
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class LoggingAdvice, seeing it if it's included
or excluded
[PackageUtils] ... Including class LoggingAdvice
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class PropertyAdapterImpl, seeing it if it's
included or excluded
[PackageUtils] ... Including class PropertyAdapterImpl
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class SymbolSourceImpl$SymbolExpansion, seeing it
if it's included or excluded
[PackageUtils] ... Including class SymbolSourceImpl$SymbolExpansion
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class ConstantInjectorImpl$InjectedValue, seeing
it if it's included or excluded
[PackageUtils] ... Including class ConstantInjectorImpl$InjectedValue
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class SymbolObjectProvider, seeing it if it's
included or excluded
[PackageUtils] ... Including class SymbolObjectProvider
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class ExceptionInfoImpl, seeing it if it's
included or excluded
[PackageUtils] ... Including class ExceptionInfoImpl
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class ChainBuilderImpl, seeing it if it's
included or excluded
[PackageUtils] ... Including class ChainBuilderImpl
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class PerThreadServiceLifecycle, seeing it if
it's included or excluded
[PackageUtils] ... Including class PerThreadServiceLifecycle
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class ExceptionAnalyzerImpl, seeing it if it's
included or excluded
[PackageUtils] ... Including class ExceptionAnalyzerImpl
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class CompoundCoercion, seeing it if it's
included or excluded
[PackageUtils] ... Including class CompoundCoercion
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class SymbolSourceImpl$1, seeing it if it's
included or excluded
[PackageUtils] ... Including class SymbolSourceImpl$1
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class RegistryStartup, seeing it if it's included
or excluded
[PackageUtils] ... Including class RegistryStartup
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class ClassNameLocatorImpl$Queued, seeing it if
it's included or excluded
[PackageUtils] ... Including class ClassNameLocatorImpl$Queued
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class ThreadLocaleImpl, seeing it if it's
included or excluded
[PackageUtils] ... Including class ThreadLocaleImpl
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class NonParallelExecutor, seeing it if it's
included or excluded
[PackageUtils] ... Including class NonParallelExecutor
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class TypeCoercerImpl$TargetCoercion, seeing it
if it's included or excluded
[PackageUtils] ... Including class TypeCoercerImpl$TargetCoercion
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class LoggingAdvisorImpl, seeing it if it's
included or excluded
[PackageUtils] ... Including class LoggingAdvisorImpl
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class ConstantInjectorImpl, seeing it if it's
included or excluded
[PackageUtils] ... Including class ConstantInjectorImpl
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class SymbolSourceImpl, seeing it if it's
included or excluded
[PackageUtils] ... Including class SymbolSourceImpl
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class PerthreadManagerImpl, seeing it if it's
included or excluded
[PackageUtils] ... Including class PerthreadManagerImpl
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class AnnotationProviderChain, seeing it if it's
included or excluded
[PackageUtils] ... Including class AnnotationProviderChain
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class CtClassSourceImpl, seeing it if it's
included or excluded
[PackageUtils] ... Including class CtClassSourceImpl
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class RegistryShutdownHubImpl, seeing it if it's
included or excluded
[PackageUtils] ... Including class RegistryShutdownHubImpl
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class PerThreadServiceCreator, seeing it if it's
included or excluded
[PackageUtils] ... Including class PerThreadServiceCreator
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class AdvisedMethodInvocationBuilder, seeing it
if it's included or excluded
[PackageUtils] ... Including class AdvisedMethodInvocationBuilder
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class ServiceMessages, seeing it if it's included
or excluded
[PackageUtils] ... Including class ServiceMessages
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class ClassFactoryClassPool$1, seeing it if it's
included or excluded
[PackageUtils] ... Including class ClassFactoryClassPool$1
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class PropertyShadowBuilderImpl, seeing it if
it's included or excluded
[PackageUtils] ... Including class PropertyShadowBuilderImpl
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class MethodInfo, seeing it if it's included or
excluded
[PackageUtils] ... Including class MethodInfo
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class LazyAdvisorImpl, seeing it if it's included
or excluded
[PackageUtils] ... Including class LazyAdvisorImpl
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class ClasspathURLConverterImpl, seeing it if
it's included or excluded
[PackageUtils] ... Including class ClasspathURLConverterImpl
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class MethodLogger, seeing it if it's included or
excluded
[PackageUtils] ... Including class MethodLogger
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class LazyAdvisorImpl$1, seeing it if it's
included or excluded
[PackageUtils] ... Including class LazyAdvisorImpl$1
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class ExceptionTrackerImpl, seeing it if it's
included or excluded
[PackageUtils] ... Including class ExceptionTrackerImpl
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class MasterObjectProviderImpl, seeing it if it's
included or excluded
[PackageUtils] ... Including class MasterObjectProviderImpl
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class ServiceOverrideImpl$1, seeing it if it's
included or excluded
[PackageUtils] ... Including class ServiceOverrideImpl$1
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class AspectInterceptorBuilderImpl, seeing it if
it's included or excluded
[PackageUtils] ... Including class AspectInterceptorBuilderImpl
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class StringLocation, seeing it if it's included
or excluded
[PackageUtils] ... Including class StringLocation
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class ParallelExecutorImpl$1, seeing it if it's
included or excluded
[PackageUtils] ... Including class ParallelExecutorImpl$1
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class ExceptionAnalysisImpl, seeing it if it's
included or excluded
[PackageUtils] ... Including class ExceptionAnalysisImpl
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class ThunkCreatorImpl, seeing it if it's
included or excluded
[PackageUtils] ... Including class ThunkCreatorImpl
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class ResourceSymbolProvider, seeing it if it's
included or excluded
[PackageUtils] ... Including class ResourceSymbolProvider
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class AbstractInvocation, seeing it if it's
included or excluded
[PackageUtils] ... Including class AbstractInvocation
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class CtClassSource, seeing it if it's included
or excluded
[PackageUtils] ... Including class CtClassSource
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class NonParallelExecutor$1, seeing it if it's
included or excluded
[PackageUtils] ... Including class NonParallelExecutor$1
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class FilterMethodAnalyzer, seeing it if it's
included or excluded
[PackageUtils] ... Including class FilterMethodAnalyzer
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class AutobuildObjectProvider, seeing it if it's
included or excluded
[PackageUtils] ... Including class AutobuildObjectProvider
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class ServiceOverrideImpl, seeing it if it's
included or excluded
[PackageUtils] ... Including class ServiceOverrideImpl
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class ParallelExecutorImpl$2, seeing it if it's
included or excluded
[PackageUtils] ... Including class ParallelExecutorImpl$2
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class AccessableObjectAnnotationProvider, seeing
it if it's included or excluded
[PackageUtils] ... Including class AccessableObjectAnnotationProvider
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class LoggingDecoratorImpl, seeing it if it's
included or excluded
[PackageUtils] ... Including class LoggingDecoratorImpl
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class PerthreadManagerImpl$MapHolder, seeing it
if it's included or excluded
[PackageUtils] ... Including class PerthreadManagerImpl$MapHolder
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class ConstantInjectorImpl$1, seeing it if it's
included or excluded
[PackageUtils] ... Including class ConstantInjectorImpl$1
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class ClassFactoryClassPool, seeing it if it's
included or excluded
[PackageUtils] ... Including class ClassFactoryClassPool
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class ValueObjectProvider, seeing it if it's
included or excluded
[PackageUtils] ... Including class ValueObjectProvider
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class ClassFabImpl, seeing it if it's included or
excluded
[PackageUtils] ... Including class ClassFabImpl
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class SystemPropertiesSymbolProvider, seeing it
if it's included or excluded
[PackageUtils] ... Including class SystemPropertiesSymbolProvider
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class StrategyBuilderImpl, seeing it if it's
included or excluded
[PackageUtils] ... Including class StrategyBuilderImpl
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class AspectDecoratorImpl$1, seeing it if it's
included or excluded
[PackageUtils] ... Including class AspectDecoratorImpl$1
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class AspectDecoratorImpl, seeing it if it's
included or excluded
[PackageUtils] ... Including class AspectDecoratorImpl
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class TypeCoercerImpl, seeing it if it's included
or excluded
[PackageUtils] ... Including class TypeCoercerImpl
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class ParallelExecutorImpl, seeing it if it's
included or excluded
[PackageUtils] ... Including class ParallelExecutorImpl
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class DefaultImplementationBuilderImpl, seeing it
if it's included or excluded
[PackageUtils] ... Including class DefaultImplementationBuilderImpl
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class ClasspathResourceSymbolProvider, seeing it
if it's included or excluded
[PackageUtils] ... Including class ClasspathResourceSymbolProvider
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class AbstractFab, seeing it if it's included or
excluded
[PackageUtils] ... Including class AbstractFab
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class ConstantInjector, seeing it if it's
included or excluded
[PackageUtils] ... Including class ConstantInjector
[PackageUtils] Package name is
org.apache.tapestry5.ioc.internal.services
[PackageUtils] Found class TypeCoercerImpl$1, seeing it if it's
included or excluded
[PackageUtils] ... Including class TypeCoercerImpl$1
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal.util
[PackageUtils] Found class IdAllocator$NameGenerator, seeing it if
it's included or excluded
[PackageUtils] ... Including class IdAllocator$NameGenerator
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal.util
[PackageUtils] Found class InternalUtils$10, seeing it if it's
included or excluded
[PackageUtils] ... Including class InternalUtils$10
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal.util
[PackageUtils] Found class Orderer$2, seeing it if it's included or
excluded
[PackageUtils] ... Including class Orderer$2
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal.util
[PackageUtils] Found class ConcurrentBarrier$2, seeing it if it's
included or excluded
[PackageUtils] ... Including class ConcurrentBarrier$2
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal.util
[PackageUtils] Found class IdToDependencyNode, seeing it if it's
included or excluded
[PackageUtils] ... Including class IdToDependencyNode
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal.util
[PackageUtils] Found class IdToDependencyNode$DependencyLinker, seeing
it if it's included or excluded
[PackageUtils] ... Including class IdToDependencyNode$DependencyLinker
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal.util
[PackageUtils] Found class ConcurrentBarrier, seeing it if it's
included or excluded
[PackageUtils] ... Including class ConcurrentBarrier
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal.util
[PackageUtils] Found class GenericsUtils, seeing it if it's included
or excluded
[PackageUtils] ... Including class GenericsUtils
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal.util
[PackageUtils] Found class MessageFormatterImpl, seeing it if it's
included or excluded
[PackageUtils] ... Including class MessageFormatterImpl
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal.util
[PackageUtils] Found class DependencyNode, seeing it if it's included
or excluded
[PackageUtils] ... Including class DependencyNode
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal.util
[PackageUtils] Found class InternalUtils$6, seeing it if it's included
or excluded
[PackageUtils] ... Including class InternalUtils$6
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal.util
[PackageUtils] Found class MessagesImpl, seeing it if it's included or
excluded
[PackageUtils] ... Including class MessagesImpl
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal.util
[PackageUtils] Found class InternalUtils$1, seeing it if it's included
or excluded
[PackageUtils] ... Including class InternalUtils$1
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal.util
[PackageUtils] Found class InternalUtils$7, seeing it if it's included
or excluded
[PackageUtils] ... Including class InternalUtils$7
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal.util
[PackageUtils] Found class ConcurrentBarrier$ThreadBoolean, seeing it
if it's included or excluded
[PackageUtils] ... Including class ConcurrentBarrier$ThreadBoolean
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal.util
[PackageUtils] Found class InheritanceSearch$1, seeing it if it's
included or excluded
[PackageUtils] ... Including class InheritanceSearch$1
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal.util
[PackageUtils] Found class CollectionFactory, seeing it if it's
included or excluded
[PackageUtils] ... Including class CollectionFactory
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal.util
[PackageUtils] Found class WrongConfigurationTypeGuard, seeing it if
it's included or excluded
[PackageUtils] ... Including class WrongConfigurationTypeGuard
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal.util
[PackageUtils] Found class InternalUtils$3, seeing it if it's included
or excluded
[PackageUtils] ... Including class InternalUtils$3
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal.util
[PackageUtils] Found class InternalUtils$4, seeing it if it's included
or excluded
[PackageUtils] ... Including class InternalUtils$4
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal.util
[PackageUtils] Found class InternalUtils, seeing it if it's included
or excluded
[PackageUtils] ... Including class InternalUtils
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal.util
[PackageUtils] Found class InheritanceSearch$State, seeing it if it's
included or excluded
[PackageUtils] ... Including class InheritanceSearch$State
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal.util
[PackageUtils] Found class IdToDependencyNode$2, seeing it if it's
included or excluded
[PackageUtils] ... Including class IdToDependencyNode$2
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal.util
[PackageUtils] Found class InternalUtils$9, seeing it if it's included
or excluded
[PackageUtils] ... Including class InternalUtils$9
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal.util
[PackageUtils] Found class TapestryException, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryException
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal.util
[PackageUtils] Found class Orderer$1, seeing it if it's included or
excluded
[PackageUtils] ... Including class Orderer$1
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal.util
[PackageUtils] Found class InternalUtils$2, seeing it if it's included
or excluded
[PackageUtils] ... Including class InternalUtils$2
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal.util
[PackageUtils] Found class AbstractResource, seeing it if it's
included or excluded
[PackageUtils] ... Including class AbstractResource
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal.util
[PackageUtils] Found class InheritanceSearch, seeing it if it's
included or excluded
[PackageUtils] ... Including class InheritanceSearch
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal.util
[PackageUtils] Found class IdAllocator, seeing it if it's included or
excluded
[PackageUtils] ... Including class IdAllocator
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal.util
[PackageUtils] Found class InternalUtils$5, seeing it if it's included
or excluded
[PackageUtils] ... Including class InternalUtils$5
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal.util
[PackageUtils] Found class Defense, seeing it if it's included or
excluded
[PackageUtils] ... Including class Defense
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal.util
[PackageUtils] Found class InjectionResources, seeing it if it's
included or excluded
[PackageUtils] ... Including class InjectionResources
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal.util
[PackageUtils] Found class OneShotLock, seeing it if it's included or
excluded
[PackageUtils] ... Including class OneShotLock
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal.util
[PackageUtils] Found class Orderer$DependencyLinker, seeing it if it's
included or excluded
[PackageUtils] ... Including class Orderer$DependencyLinker
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal.util
[PackageUtils] Found class LocalizedNameGenerator, seeing it if it's
included or excluded
[PackageUtils] ... Including class LocalizedNameGenerator
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal.util
[PackageUtils] Found class LocationImpl, seeing it if it's included or
excluded
[PackageUtils] ... Including class LocationImpl
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal.util
[PackageUtils] Found class JDKUtils, seeing it if it's included or
excluded
[PackageUtils] ... Including class JDKUtils
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal.util
[PackageUtils] Found class UtilMessages, seeing it if it's included or
excluded
[PackageUtils] ... Including class UtilMessages
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal.util
[PackageUtils] Found class DelegatingInjectionResources, seeing it if
it's included or excluded
[PackageUtils] ... Including class DelegatingInjectionResources
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal.util
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal.util
[PackageUtils] Found class Orderer, seeing it if it's included or
excluded
[PackageUtils] ... Including class Orderer
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal.util
[PackageUtils] Found class ClasspathResource, seeing it if it's
included or excluded
[PackageUtils] ... Including class ClasspathResource
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal.util
[PackageUtils] Found class ConcurrentBarrier$1, seeing it if it's
included or excluded
[PackageUtils] ... Including class ConcurrentBarrier$1
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal.util
[PackageUtils] Found class DummyLock, seeing it if it's included or
excluded
[PackageUtils] ... Including class DummyLock
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal.util
[PackageUtils] Found class MapInjectionResources, seeing it if it's
included or excluded
[PackageUtils] ... Including class MapInjectionResources
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal.util
[PackageUtils] Found class IdToDependencyNode$1, seeing it if it's
included or excluded
[PackageUtils] ... Including class IdToDependencyNode$1
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal.util
[PackageUtils] Found class InternalUtils$8, seeing it if it's included
or excluded
[PackageUtils] ... Including class InternalUtils$8
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class ValidatingConfigurationWrapper, seeing it
if it's included or excluded
[PackageUtils] ... Including class ValidatingConfigurationWrapper
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class ModuleImpl$2, seeing it if it's included or
excluded
[PackageUtils] ... Including class ModuleImpl$2
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class ModuleImpl$6, seeing it if it's included or
excluded
[PackageUtils] ... Including class ModuleImpl$6
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class RegistryImpl$5, seeing it if it's included
or excluded
[PackageUtils] ... Including class RegistryImpl$5
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class MappedConfigurationOverride, seeing it if
it's included or excluded
[PackageUtils] ... Including class MappedConfigurationOverride
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class ServiceActivityTrackerImpl, seeing it if
it's included or excluded
[PackageUtils] ... Including class ServiceActivityTrackerImpl
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class EagerLoadServiceProxy, seeing it if it's
included or excluded
[PackageUtils] ... Including class EagerLoadServiceProxy
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class ServiceAdvisorImpl, seeing it if it's
included or excluded
[PackageUtils] ... Including class ServiceAdvisorImpl
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class ServiceBinderImpl$2$1, seeing it if it's
included or excluded
[PackageUtils] ... Including class ServiceBinderImpl$2$1
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class RegistryImpl$6, seeing it if it's included
or excluded
[PackageUtils] ... Including class RegistryImpl$6
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class DefaultModuleDefImpl$1, seeing it if it's
included or excluded
[PackageUtils] ... Including class DefaultModuleDefImpl$1
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class RegistryImpl$9, seeing it if it's included
or excluded
[PackageUtils] ... Including class RegistryImpl$9
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class AbstractServiceCreator, seeing it if it's
included or excluded
[PackageUtils] ... Including class AbstractServiceCreator
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class ServiceActivityTracker, seeing it if it's
included or excluded
[PackageUtils] ... Including class ServiceActivityTracker
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class AdvisorStackBuilder, seeing it if it's
included or excluded
[PackageUtils] ... Including class AdvisorStackBuilder
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class DecoratorDefImpl, seeing it if it's
included or excluded
[PackageUtils] ... Including class DecoratorDefImpl
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class IdMatcherImpl, seeing it if it's included
or excluded
[PackageUtils] ... Including class IdMatcherImpl
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class GlobPatternMatcher, seeing it if it's
included or excluded
[PackageUtils] ... Including class GlobPatternMatcher
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class ValidatingMappedConfigurationWrapper,
seeing it if it's included or excluded
[PackageUtils] ... Including class
ValidatingMappedConfigurationWrapper
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class OrIdMatcher, seeing it if it's included or
excluded
[PackageUtils] ... Including class OrIdMatcher
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class ContributionDefImpl, seeing it if it's
included or excluded
[PackageUtils] ... Including class ContributionDefImpl
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class AdvisorStackBuilder$1, seeing it if it's
included or excluded
[PackageUtils] ... Including class AdvisorStackBuilder$1
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class ServiceProxyProvider, seeing it if it's
included or excluded
[PackageUtils] ... Including class ServiceProxyProvider
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class ServiceResourcesImpl$3, seeing it if it's
included or excluded
[PackageUtils] ... Including class ServiceResourcesImpl$3
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class OperationTrackingObjectCreator, seeing it
if it's included or excluded
[PackageUtils] ... Including class OperationTrackingObjectCreator
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class ServiceDefImpl, seeing it if it's included
or excluded
[PackageUtils] ... Including class ServiceDefImpl
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class ObjectLocatorImpl, seeing it if it's
included or excluded
[PackageUtils] ... Including class ObjectLocatorImpl
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class ServiceResourcesImpl$2, seeing it if it's
included or excluded
[PackageUtils] ... Including class ServiceResourcesImpl$2
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class ServiceBinderImpl$2, seeing it if it's
included or excluded
[PackageUtils] ... Including class ServiceBinderImpl$2
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class ModuleImpl, seeing it if it's included or
excluded
[PackageUtils] ... Including class ModuleImpl
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class ServiceResourcesImpl, seeing it if it's
included or excluded
[PackageUtils] ... Including class ServiceResourcesImpl
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class PerThreadOperationTracker, seeing it if
it's included or excluded
[PackageUtils] ... Including class PerThreadOperationTracker
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class ConfigurationType, seeing it if it's
included or excluded
[PackageUtils] ... Including class ConfigurationType
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class ObjectCreatorSource, seeing it if it's
included or excluded
[PackageUtils] ... Including class ObjectCreatorSource
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class ServiceActivityTrackerImpl
$MutableServiceActivity, seeing it if it's included or excluded
[PackageUtils] ... Including class ServiceActivityTrackerImpl
$MutableServiceActivity
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class OperationException, seeing it if it's
included or excluded
[PackageUtils] ... Including class OperationException
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class QuietOperationTracker, seeing it if it's
included or excluded
[PackageUtils] ... Including class QuietOperationTracker
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class Module, seeing it if it's included or
excluded
[PackageUtils] ... Including class Module
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class ServiceBinderImpl$1, seeing it if it's
included or excluded
[PackageUtils] ... Including class ServiceBinderImpl$1
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class AdvisorDefImpl, seeing it if it's included
or excluded
[PackageUtils] ... Including class AdvisorDefImpl
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class OperationTrackerImpl, seeing it if it's
included or excluded
[PackageUtils] ... Including class OperationTrackerImpl
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class AbstractServiceCreator$1, seeing it if it's
included or excluded
[PackageUtils] ... Including class AbstractServiceCreator$1
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class OperationTrackerImpl$1, seeing it if it's
included or excluded
[PackageUtils] ... Including class OperationTrackerImpl$1
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class RegistryImpl$8, seeing it if it's included
or excluded
[PackageUtils] ... Including class RegistryImpl$8
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class SerializationSupport, seeing it if it's
included or excluded
[PackageUtils] ... Including class SerializationSupport
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class LifecycleWrappedServiceCreator, seeing it
if it's included or excluded
[PackageUtils] ... Including class LifecycleWrappedServiceCreator
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class DefaultModuleDefImpl, seeing it if it's
included or excluded
[PackageUtils] ... Including class DefaultModuleDefImpl
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class RegistryImpl$1, seeing it if it's included
or excluded
[PackageUtils] ... Including class RegistryImpl$1
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class AbstractServiceInstrumenter, seeing it if
it's included or excluded
[PackageUtils] ... Including class AbstractServiceInstrumenter
[PackageUtils] Package name is org.apache.tapestry5.ioc.internal
[PackageUtils] Found class OrderedConfigurationOverride, seeing it if
it's included or excluded
[PackageUtils] ... Including class OrderedConfigurationOverride
[PackageUtils] Package name is org.apache.tapestry5.ioc
[PackageUtils] Found class MethodAdviceReceiver, seeing it if it's
included or excluded
[PackageUtils] ... Including class MethodAdviceReceiver
[PackageUtils] Package name is org.apache.tapestry5.ioc
[PackageUtils] Found class OperationTracker, seeing it if it's
included or excluded
[PackageUtils] ... Including class OperationTracker
[PackageUtils] Package name is org.apache.tapestry5.ioc
[PackageUtils] Found class MessageFormatter, seeing it if it's
included or excluded
[PackageUtils] ... Including class MessageFormatter
[PackageUtils] Package name is org.apache.tapestry5.ioc
[PackageUtils] Found class Invokable, seeing it if it's included or
excluded
[PackageUtils] ... Including class Invokable
[PackageUtils] Package name is org.apache.tapestry5.ioc
[PackageUtils] Found class Location, seeing it if it's included or
excluded
[PackageUtils] ... Including class Location
[PackageUtils] Package name is org.apache.tapestry5.ioc
[PackageUtils] Found class ServiceResources, seeing it if it's
included or excluded
[PackageUtils] ... Including class ServiceResources
[PackageUtils] Package name is org.apache.tapestry5.ioc
[PackageUtils] Found class Locatable, seeing it if it's included or
excluded
[PackageUtils] ... Including class Locatable
[PackageUtils] Package name is org.apache.tapestry5.ioc
[PackageUtils] Found class ServiceLifecycle2, seeing it if it's
included or excluded
[PackageUtils] ... Including class ServiceLifecycle2
[PackageUtils] Package name is org.apache.tapestry5.ioc
[PackageUtils] Found class IOCConstants, seeing it if it's included or
excluded
[PackageUtils] ... Including class IOCConstants
[PackageUtils] Package name is org.apache.tapestry5.ioc
[PackageUtils] Found class ObjectCreator, seeing it if it's included
or excluded
[PackageUtils] ... Including class ObjectCreator
[PackageUtils] Package name is org.apache.tapestry5.ioc
[PackageUtils] Found class ModuleBuilderSource, seeing it if it's
included or excluded
[PackageUtils] ... Including class ModuleBuilderSource
[PackageUtils] Package name is org.apache.tapestry5
[PackageUtils] Package name is org.apache.tapestry5.beaneditor
[PackageUtils] Package name is org.apache.tapestry5.ioc
[PackageUtils] Package name is org.apache.tapestry5.ioc.annotations
[PackageUtils] Package name is org.apache.tapestry5.beaneditor
[PackageUtils] Found class DataType, seeing it if it's included or
excluded
[PackageUtils] ... Including class DataType
[PackageUtils] Package name is org.apache.tapestry5.beaneditor
[PackageUtils] Found class ReorderProperties, seeing it if it's
included or excluded
[PackageUtils] ... Including class ReorderProperties
[PackageUtils] Package name is org.apache.tapestry5.beaneditor
[PackageUtils] Found class NonVisual, seeing it if it's included or
excluded
[PackageUtils] ... Including class NonVisual
[PackageUtils] Package name is org.apache.tapestry5.beaneditor
[PackageUtils] Found class Width, seeing it if it's included or
excluded
[PackageUtils] ... Including class Width
[PackageUtils] Package name is org.apache.tapestry5.beaneditor
[PackageUtils] Found class Validate, seeing it if it's included or
excluded
[PackageUtils] ... Including class Validate
[PackageUtils] Package name is org.apache.tapestry5.beaneditor
[PackageUtils] Found class RelativePosition, seeing it if it's
included or excluded
[PackageUtils] ... Including class RelativePosition
[PackageUtils] Package name is org.apache.tapestry5.ioc.annotations
[PackageUtils] Found class InjectService, seeing it if it's included
or excluded
[PackageUtils] ... Including class InjectService
[PackageUtils] Package name is org.apache.tapestry5.ioc.annotations
[PackageUtils] Found class InjectResource, seeing it if it's included
or excluded
[PackageUtils] ... Including class InjectResource
[PackageUtils] Package name is org.apache.tapestry5.ioc.annotations
[PackageUtils] Found class IntermediateType, seeing it if it's
included or excluded
[PackageUtils] ... Including class IntermediateType
[PackageUtils] Package name is org.apache.tapestry5.ioc.annotations
[PackageUtils] Found class Symbol, seeing it if it's included or
excluded
[PackageUtils] ... Including class Symbol
[PackageUtils] Package name is org.apache.tapestry5.ioc.annotations
[PackageUtils] Found class Inject, seeing it if it's included or
excluded
[PackageUtils] ... Including class Inject
[PackageUtils] Package name is org.apache.tapestry5.ioc.annotations
[PackageUtils] Found class UseWith, seeing it if it's included or
excluded
[PackageUtils] ... Including class UseWith
[PackageUtils] Package name is org.apache.tapestry5.ioc.annotations
[PackageUtils] Found class Autobuild, seeing it if it's included or
excluded
[PackageUtils] ... Including class Autobuild
[PackageUtils] Package name is org.apache.tapestry5.ioc.annotations
[PackageUtils] Found class Primary, seeing it if it's included or
excluded
[PackageUtils] ... Including class Primary
[PackageUtils] Package name is org.apache.tapestry5.ioc.annotations
[PackageUtils] Found class PostInjection, seeing it if it's included
or excluded
[PackageUtils] ... Including class PostInjection
[PackageUtils] Package name is org.apache.tapestry5.ioc.annotations
[PackageUtils] Found class AnnotationUseContext, seeing it if it's
included or excluded
[PackageUtils] ... Including class AnnotationUseContext
[PackageUtils] Package name is org.apache.tapestry5.ioc.annotations
[PackageUtils] Found class Value, seeing it if it's included or
excluded
[PackageUtils] ... Including class Value
[PackageUtils] Package name is org.apache.tapestry5.ioc.annotations
[PackageUtils] Found class Local, seeing it if it's included or
excluded
[PackageUtils] ... Including class Local
[PackageUtils] Package name is org.apache.tapestry5
[PackageUtils] Package name is org.apache.tapestry5.test
[PackageUtils] Package name is org.apache.tapestry5.test
[PackageUtils] Found class ErrorReportingCommandProcessor, seeing it
if it's included or excluded
[PackageUtils] ... Including class ErrorReportingCommandProcessor
[PackageUtils] Package name is org.apache.tapestry5.test
[PackageUtils] Found class SeleniumLauncher$1, seeing it if it's
included or excluded
[PackageUtils] ... Including class SeleniumLauncher$1
[PackageUtils] Package name is org.apache.tapestry5.test
[PackageUtils] Package name is org.apache.tapestry5.test
[PackageUtils] Found class RandomDataSource, seeing it if it's
included or excluded
[PackageUtils] ... Including class RandomDataSource
[PackageUtils] Package name is org.apache.tapestry5.test
[PackageUtils] Found class SeleniumTestCase, seeing it if it's
included or excluded
[PackageUtils] ... Including class SeleniumTestCase
[PackageUtils] Package name is org.apache.tapestry5.test
[PackageUtils] Package name is org.apache.tapestry5.test
[PackageUtils] Found class TapestryTestConstants, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryTestConstants
[PackageUtils] Package name is org.apache.tapestry5.test
[PackageUtils] Package name is org.apache.tapestry5.test
[PackageUtils] Found class ErrorReporter, seeing it if it's included
or excluded
[PackageUtils] ... Including class ErrorReporter
[PackageUtils] Package name is org.apache.tapestry5.test
[PackageUtils] Package name is org.apache.tapestry5.test
[PackageUtils] Found class Jetty7Runner, seeing it if it's included or
excluded
[PackageUtils] ... Including class Jetty7Runner
[PackageUtils] Package name is org.apache.tapestry5.test
[PackageUtils] Package name is org.apache.tapestry5.test
[PackageUtils] Package name is org.apache.tapestry5.test
[PackageUtils] Found class ErrorReporterImpl, seeing it if it's
included or excluded
[PackageUtils] ... Including class ErrorReporterImpl
[PackageUtils] Package name is org.apache.tapestry5.test
[PackageUtils] Package name is org.apache.tapestry5.test
[PackageUtils] Found class JettyRunner, seeing it if it's included or
excluded
[PackageUtils] ... Including class JettyRunner
[PackageUtils] Package name is org.apache.tapestry5.test
[PackageUtils] Found class AbstractIntegrationTestSuite, seeing it if
it's included or excluded
[PackageUtils] ... Including class AbstractIntegrationTestSuite
[PackageUtils] Package name is org.apache.tapestry5.test
[PackageUtils] Found class SeleniumLauncher, seeing it if it's
included or excluded
[PackageUtils] ... Including class SeleniumLauncher
[PackageUtils] Looking for test classes in the directory: /Users/
Howard/work/t5-project/tapestry-core/target/test-classes/org/apache/
tapestry5/dom
[PackageUtils] Found class DOMTest$1, seeing it if it's included or
excluded
[PackageUtils] ... Including class DOMTest$1
[PackageUtils] Found class DOMTest, seeing it if it's included or
excluded
[PackageUtils] ... Including class DOMTest
[PackageUtils] Looking for test classes in the directory: /Users/
Howard/work/t5-project/tapestry-core/target/classes/org/apache/
tapestry5/dom
[PackageUtils] Found class AbstractMarkupModel, seeing it if it's
included or excluded
[PackageUtils] ... Including class AbstractMarkupModel
[PackageUtils] Found class Attribute, seeing it if it's included or
excluded
[PackageUtils] ... Including class Attribute
[PackageUtils] Found class CData, seeing it if it's included or
excluded
[PackageUtils] ... Including class CData
[PackageUtils] Found class Comment, seeing it if it's included or
excluded
[PackageUtils] ... Including class Comment
[PackageUtils] Found class DefaultMarkupModel, seeing it if it's
included or excluded
[PackageUtils] ... Including class DefaultMarkupModel
[PackageUtils] Found class Document, seeing it if it's included or
excluded
[PackageUtils] ... Including class Document
[PackageUtils] Found class DomMessages, seeing it if it's included or
excluded
[PackageUtils] ... Including class DomMessages
[PackageUtils] Found class DTD, seeing it if it's included or excluded
[PackageUtils] ... Including class DTD
[PackageUtils] Found class Element$1$1, seeing it if it's included or
excluded
[PackageUtils] ... Including class Element$1$1
[PackageUtils] Found class Element$1, seeing it if it's included or
excluded
[PackageUtils] ... Including class Element$1
[PackageUtils] Found class Element, seeing it if it's included or
excluded
[PackageUtils] ... Including class Element
[PackageUtils] Found class EndTagStyle, seeing it if it's included or
excluded
[PackageUtils] ... Including class EndTagStyle
[PackageUtils] Found class MapHolder, seeing it if it's included or
excluded
[PackageUtils] ... Including class MapHolder
[PackageUtils] Found class MarkupModel, seeing it if it's included or
excluded
[PackageUtils] ... Including class MarkupModel
[PackageUtils] Found class Node, seeing it if it's included or
excluded
[PackageUtils] ... Including class Node
[PackageUtils] Found class Raw, seeing it if it's included or excluded
[PackageUtils] ... Including class Raw
[PackageUtils] Found class Text, seeing it if it's included or
excluded
[PackageUtils] ... Including class Text
[PackageUtils] Found class Visitor, seeing it if it's included or
excluded
[PackageUtils] ... Including class Visitor
[PackageUtils] Found class XMLMarkupModel, seeing it if it's included
or excluded
[PackageUtils] ... Including class XMLMarkupModel
[PackageUtils] Looking for test classes in the directory: /Users/
Howard/work/t5-project/tapestry-core/target/test-classes/org/apache/
tapestry5/json
[PackageUtils] Found class JSONObjectTest$1, seeing it if it's
included or excluded
[PackageUtils] ... Including class JSONObjectTest$1
[PackageUtils] Found class JSONObjectTest, seeing it if it's included
or excluded
[PackageUtils] ... Including class JSONObjectTest
[PackageUtils] Looking for test classes in the directory: /Users/
Howard/work/t5-project/tapestry-core/target/classes/org/apache/
tapestry5/json
[PackageUtils] Found class JSONArray, seeing it if it's included or
excluded
[PackageUtils] ... Including class JSONArray
[PackageUtils] Found class JSONLiteral, seeing it if it's included or
excluded
[PackageUtils] ... Including class JSONLiteral
[PackageUtils] Found class JSONObject$Null, seeing it if it's included
or excluded
[PackageUtils] ... Including class JSONObject$Null
[PackageUtils] Found class JSONObject, seeing it if it's included or
excluded
[PackageUtils] ... Including class JSONObject
[PackageUtils] Found class JSONString, seeing it if it's included or
excluded
[PackageUtils] ... Including class JSONString
[PackageUtils] Found class JSONTokener, seeing it if it's included or
excluded
[PackageUtils] ... Including class JSONTokener
[PackageUtils] Looking for test classes in the directory: /Users/
Howard/work/t5-project/tapestry-core/target/classes/org/apache/
tapestry5/runtime
[PackageUtils] Found class Component, seeing it if it's included or
excluded
[PackageUtils] ... Including class Component
[PackageUtils] Found class ComponentEvent, seeing it if it's included
or excluded
[PackageUtils] ... Including class ComponentEvent
[PackageUtils] Found class ComponentEventException, seeing it if it's
included or excluded
[PackageUtils] ... Including class ComponentEventException
[PackageUtils] Found class ComponentResourcesAware, seeing it if it's
included or excluded
[PackageUtils] ... Including class ComponentResourcesAware
[PackageUtils] Found class Event, seeing it if it's included or
excluded
[PackageUtils] ... Including class Event
[PackageUtils] Found class PageLifecycleListener, seeing it if it's
included or excluded
[PackageUtils] ... Including class PageLifecycleListener
[PackageUtils] Found class RenderCommand, seeing it if it's included
or excluded
[PackageUtils] ... Including class RenderCommand
[PackageUtils] Found class RenderQueue, seeing it if it's included or
excluded
[PackageUtils] ... Including class RenderQueue
[PackageUtils] Looking for test classes in the directory: /Users/
Howard/work/t5-project/tapestry-core/target/test-classes/org/apache/
tapestry5/services
[PackageUtils] Found class AliasContributionTest, seeing it if it's
included or excluded
[PackageUtils] ... Including class AliasContributionTest
[PackageUtils] Found class SyncCostBench$BlockRunner, seeing it if
it's included or excluded
[PackageUtils] ... Including class SyncCostBench$BlockRunner
[PackageUtils] Found class SyncCostBench$ReadWriteLockAspectRunner,
seeing it if it's included or excluded
[PackageUtils] ... Including class SyncCostBench
$ReadWriteLockAspectRunner
[PackageUtils] Found class SyncCostBench$ReadWriteLockRunner, seeing
it if it's included or excluded
[PackageUtils] ... Including class SyncCostBench$ReadWriteLockRunner
[PackageUtils] Found class SyncCostBench$SimpleRunner, seeing it if
it's included or excluded
[PackageUtils] ... Including class SyncCostBench$SimpleRunner
[PackageUtils] Found class SyncCostBench$SynchronizedRunner, seeing it
if it's included or excluded
[PackageUtils] ... Including class SyncCostBench$SynchronizedRunner
[PackageUtils] Found class SyncCostBench$Worker, seeing it if it's
included or excluded
[PackageUtils] ... Including class SyncCostBench$Worker
[PackageUtils] Found class SyncCostBench, seeing it if it's included
or excluded
[PackageUtils] ... Including class SyncCostBench
[PackageUtils] Found class TransformMethodSignatureTest, seeing it if
it's included or excluded
[PackageUtils] ... Including class TransformMethodSignatureTest
[PackageUtils] Found class TransformUtilsTest, seeing it if it's
included or excluded
[PackageUtils] ... Including class TransformUtilsTest
[PackageUtils] Looking for test classes in the directory: /Users/
Howard/work/t5-project/tapestry-core/target/classes/org/apache/
tapestry5/services
[PackageUtils] Found class Ajax, seeing it if it's included or
excluded
[PackageUtils] ... Including class Ajax
[PackageUtils] Found class Alias, seeing it if it's included or
excluded
[PackageUtils] ... Including class Alias
[PackageUtils] Found class AliasContribution, seeing it if it's
included or excluded
[PackageUtils] ... Including class AliasContribution
[PackageUtils] Found class AliasManager, seeing it if it's included or
excluded
[PackageUtils] ... Including class AliasManager
[PackageUtils] Found class ApplicationGlobals, seeing it if it's
included or excluded
[PackageUtils] ... Including class ApplicationGlobals
[PackageUtils] Found class ApplicationInitializer, seeing it if it's
included or excluded
[PackageUtils] ... Including class ApplicationInitializer
[PackageUtils] Found class ApplicationInitializerFilter, seeing it if
it's included or excluded
[PackageUtils] ... Including class ApplicationInitializerFilter
[PackageUtils] Found class ApplicationStateContribution, seeing it if
it's included or excluded
[PackageUtils] ... Including class ApplicationStateContribution
[PackageUtils] Found class ApplicationStateCreator, seeing it if it's
included or excluded
[PackageUtils] ... Including class ApplicationStateCreator
[PackageUtils] Found class ApplicationStateManager, seeing it if it's
included or excluded
[PackageUtils] ... Including class ApplicationStateManager
[PackageUtils] Found class ApplicationStatePersistenceStrategy, seeing
it if it's included or excluded
[PackageUtils] ... Including class ApplicationStatePersistenceStrategy
[PackageUtils] Found class ApplicationStatePersistenceStrategySource,
seeing it if it's included or excluded
[PackageUtils] ... Including class
ApplicationStatePersistenceStrategySource
[PackageUtils] Found class AssetFactory, seeing it if it's included or
excluded
[PackageUtils] ... Including class AssetFactory
[PackageUtils] Found class AssetPathAuthorizer$Order, seeing it if
it's included or excluded
[PackageUtils] ... Including class AssetPathAuthorizer$Order
[PackageUtils] Found class AssetPathAuthorizer, seeing it if it's
included or excluded
[PackageUtils] ... Including class AssetPathAuthorizer
[PackageUtils] Found class AssetPathConverter, seeing it if it's
included or excluded
[PackageUtils] ... Including class AssetPathConverter
[PackageUtils] Found class AssetSource, seeing it if it's included or
excluded
[PackageUtils] ... Including class AssetSource
[PackageUtils] Found class BaseURLSource, seeing it if it's included
or excluded
[PackageUtils] ... Including class BaseURLSource
[PackageUtils] Found class BeanBlockContribution, seeing it if it's
included or excluded
[PackageUtils] ... Including class BeanBlockContribution
[PackageUtils] Found class BeanBlockOverrideSource, seeing it if it's
included or excluded
[PackageUtils] ... Including class BeanBlockOverrideSource
[PackageUtils] Found class BeanBlockSource, seeing it if it's included
or excluded
[PackageUtils] ... Including class BeanBlockSource
[PackageUtils] Found class BeanEditContext, seeing it if it's included
or excluded
[PackageUtils] ... Including class BeanEditContext
[PackageUtils] Found class BeanModelSource, seeing it if it's included
or excluded
[PackageUtils] ... Including class BeanModelSource
[PackageUtils] Found class BeanValidationContext, seeing it if it's
included or excluded
[PackageUtils] ... Including class BeanValidationContext
[PackageUtils] Found class BindingFactory, seeing it if it's included
or excluded
[PackageUtils] ... Including class BindingFactory
[PackageUtils] Found class BindingSource, seeing it if it's included
or excluded
[PackageUtils] ... Including class BindingSource
[PackageUtils] Found class ClasspathAssetAliasManager, seeing it if
it's included or excluded
[PackageUtils] ... Including class ClasspathAssetAliasManager
[PackageUtils] Found class ClasspathProvider, seeing it if it's
included or excluded
[PackageUtils] ... Including class ClasspathProvider
[PackageUtils] Found class ClassTransformation, seeing it if it's
included or excluded
[PackageUtils] ... Including class ClassTransformation
[PackageUtils] Found class ClientBehaviorSupport, seeing it if it's
included or excluded
[PackageUtils] ... Including class ClientBehaviorSupport
[PackageUtils] Found class ClientDataEncoder, seeing it if it's
included or excluded
[PackageUtils] ... Including class ClientDataEncoder
[PackageUtils] Found class ClientDataSink, seeing it if it's included
or excluded
[PackageUtils] ... Including class ClientDataSink
[PackageUtils] Found class ClientInfrastructure, seeing it if it's
included or excluded
[PackageUtils] ... Including class ClientInfrastructure
[PackageUtils] Found class ComponentClasses, seeing it if it's
included or excluded
[PackageUtils] ... Including class ComponentClasses
[PackageUtils] Found class ComponentClassResolver, seeing it if it's
included or excluded
[PackageUtils] ... Including class ComponentClassResolver
[PackageUtils] Found class ComponentClassTransformWorker, seeing it if
it's included or excluded
[PackageUtils] ... Including class ComponentClassTransformWorker
[PackageUtils] Found class ComponentDefaultProvider, seeing it if it's
included or excluded
[PackageUtils] ... Including class ComponentDefaultProvider
[PackageUtils] Found class ComponentEventLinkEncoder, seeing it if
it's included or excluded
[PackageUtils] ... Including class ComponentEventLinkEncoder
[PackageUtils] Found class ComponentEventRequestFilter, seeing it if
it's included or excluded
[PackageUtils] ... Including class ComponentEventRequestFilter
[PackageUtils] Found class ComponentEventRequestHandler, seeing it if
it's included or excluded
[PackageUtils] ... Including class ComponentEventRequestHandler
[PackageUtils] Found class ComponentEventRequestParameters, seeing it
if it's included or excluded
[PackageUtils] ... Including class ComponentEventRequestParameters
[PackageUtils] Found class ComponentEventResultProcessor, seeing it if
it's included or excluded
[PackageUtils] ... Including class ComponentEventResultProcessor
[PackageUtils] Found class ComponentLayer, seeing it if it's included
or excluded
[PackageUtils] ... Including class ComponentLayer
[PackageUtils] Found class ComponentMessages, seeing it if it's
included or excluded
[PackageUtils] ... Including class ComponentMessages
[PackageUtils] Found class ComponentMethodAdvice, seeing it if it's
included or excluded
[PackageUtils] ... Including class ComponentMethodAdvice
[PackageUtils] Found class ComponentMethodInvocation, seeing it if
it's included or excluded
[PackageUtils] ... Including class ComponentMethodInvocation
[PackageUtils] Found class ComponentRequestFilter, seeing it if it's
included or excluded
[PackageUtils] ... Including class ComponentRequestFilter
[PackageUtils] Found class ComponentRequestHandler, seeing it if it's
included or excluded
[PackageUtils] ... Including class ComponentRequestHandler
[PackageUtils] Found class ComponentSource, seeing it if it's included
or excluded
[PackageUtils] ... Including class ComponentSource
[PackageUtils] Found class ComponentTemplates, seeing it if it's
included or excluded
[PackageUtils] ... Including class ComponentTemplates
[PackageUtils] Found class Context, seeing it if it's included or
excluded
[PackageUtils] ... Including class Context
[PackageUtils] Found class ContextPathEncoder, seeing it if it's
included or excluded
[PackageUtils] ... Including class ContextPathEncoder
[PackageUtils] Found class ContextProvider, seeing it if it's included
or excluded
[PackageUtils] ... Including class ContextProvider
[PackageUtils] Found class ContextValueEncoder, seeing it if it's
included or excluded
[PackageUtils] ... Including class ContextValueEncoder
[PackageUtils] Found class Cookies, seeing it if it's included or
excluded
[PackageUtils] ... Including class Cookies
[PackageUtils] Found class Core, seeing it if it's included or
excluded
[PackageUtils] ... Including class Core
[PackageUtils] Found class DataTypeAnalyzer, seeing it if it's
included or excluded
[PackageUtils] ... Including class DataTypeAnalyzer
[PackageUtils] Found class DelegatingRequest, seeing it if it's
included or excluded
[PackageUtils] ... Including class DelegatingRequest
[PackageUtils] Found class Dispatcher, seeing it if it's included or
excluded
[PackageUtils] ... Including class Dispatcher
[PackageUtils] Found class Environment, seeing it if it's included or
excluded
[PackageUtils] ... Including class Environment
[PackageUtils] Found class EnvironmentalAccess, seeing it if it's
included or excluded
[PackageUtils] ... Including class EnvironmentalAccess
[PackageUtils] Found class EnvironmentalShadowBuilder, seeing it if
it's included or excluded
[PackageUtils] ... Including class EnvironmentalShadowBuilder
[PackageUtils] Found class ExceptionReporter, seeing it if it's
included or excluded
[PackageUtils] ... Including class ExceptionReporter
[PackageUtils] Found class FieldFilter, seeing it if it's included or
excluded
[PackageUtils] ... Including class FieldFilter
[PackageUtils] Found class FieldTranslatorSource, seeing it if it's
included or excluded
[PackageUtils] ... Including class FieldTranslatorSource
[PackageUtils] Found class FieldValidatorDefaultSource, seeing it if
it's included or excluded
[PackageUtils] ... Including class FieldValidatorDefaultSource
[PackageUtils] Found class FieldValidatorSource, seeing it if it's
included or excluded
[PackageUtils] ... Including class FieldValidatorSource
[PackageUtils] Found class FormSupport, seeing it if it's included or
excluded
[PackageUtils] ... Including class FormSupport
[PackageUtils] Found class Heartbeat, seeing it if it's included or
excluded
[PackageUtils] ... Including class Heartbeat
[PackageUtils] Found class HiddenFieldLocationRules, seeing it if it's
included or excluded
[PackageUtils] ... Including class HiddenFieldLocationRules
[PackageUtils] Found class HttpServletRequestFilter, seeing it if it's
included or excluded
[PackageUtils] ... Including class HttpServletRequestFilter
[PackageUtils] Found class HttpServletRequestHandler, seeing it if
it's included or excluded
[PackageUtils] ... Including class HttpServletRequestHandler
[PackageUtils] Found class InjectionProvider, seeing it if it's
included or excluded
[PackageUtils] ... Including class InjectionProvider
[PackageUtils] Found class InvalidationEventHub, seeing it if it's
included or excluded
[PackageUtils] ... Including class InvalidationEventHub
[PackageUtils] Found class InvalidationListener, seeing it if it's
included or excluded
[PackageUtils] ... Including class InvalidationListener
[PackageUtils] Found class LibraryMapping, seeing it if it's included
or excluded
[PackageUtils] ... Including class LibraryMapping
[PackageUtils] Found class LinkCreationHub, seeing it if it's included
or excluded
[PackageUtils] ... Including class LinkCreationHub
[PackageUtils] Found class LinkCreationListener, seeing it if it's
included or excluded
[PackageUtils] ... Including class LinkCreationListener
[PackageUtils] Found class LocalizationSetter, seeing it if it's
included or excluded
[PackageUtils] ... Including class LocalizationSetter
[PackageUtils] Found class MarkupRenderer, seeing it if it's included
or excluded
[PackageUtils] ... Including class MarkupRenderer
[PackageUtils] Found class MarkupRendererFilter, seeing it if it's
included or excluded
[PackageUtils] ... Including class MarkupRendererFilter
[PackageUtils] Found class MarkupWriterFactory, seeing it if it's
included or excluded
[PackageUtils] ... Including class MarkupWriterFactory
[PackageUtils] Found class MetaDataLocator, seeing it if it's included
or excluded
[PackageUtils] ... Including class MetaDataLocator
[PackageUtils] Found class MethodFilter, seeing it if it's included or
excluded
[PackageUtils] ... Including class MethodFilter
[PackageUtils] Found class NullFieldStrategySource, seeing it if it's
included or excluded
[PackageUtils] ... Including class NullFieldStrategySource
[PackageUtils] Found class ObjectRenderer, seeing it if it's included
or excluded
[PackageUtils] ... Including class ObjectRenderer
[PackageUtils] Found class PageDocumentGenerator, seeing it if it's
included or excluded
[PackageUtils] ... Including class PageDocumentGenerator
[PackageUtils] Found class PageRenderLinkSource, seeing it if it's
included or excluded
[PackageUtils] ... Including class PageRenderLinkSource
[PackageUtils] Found class PageRenderRequestFilter, seeing it if it's
included or excluded
[PackageUtils] ... Including class PageRenderRequestFilter
[PackageUtils] Found class PageRenderRequestHandler, seeing it if it's
included or excluded
[PackageUtils] ... Including class PageRenderRequestHandler
[PackageUtils] Found class PageRenderRequestParameters, seeing it if
it's included or excluded
[PackageUtils] ... Including class PageRenderRequestParameters
[PackageUtils] Found class PartialMarkupRenderer, seeing it if it's
included or excluded
[PackageUtils] ... Including class PartialMarkupRenderer
[PackageUtils] Found class PartialMarkupRendererFilter, seeing it if
it's included or excluded
[PackageUtils] ... Including class PartialMarkupRendererFilter
[PackageUtils] Found class PersistentFieldBundle, seeing it if it's
included or excluded
[PackageUtils] ... Including class PersistentFieldBundle
[PackageUtils] Found class PersistentFieldChange, seeing it if it's
included or excluded
[PackageUtils] ... Including class PersistentFieldChange
[PackageUtils] Found class PersistentFieldStrategy, seeing it if it's
included or excluded
[PackageUtils] ... Including class PersistentFieldStrategy
[PackageUtils] Found class PersistentLocale, seeing it if it's
included or excluded
[PackageUtils] ... Including class PersistentLocale
[PackageUtils] Found class PropertyConduitSource, seeing it if it's
included or excluded
[PackageUtils] ... Including class PropertyConduitSource
[PackageUtils] Found class PropertyEditContext, seeing it if it's
included or excluded
[PackageUtils] ... Including class PropertyEditContext
[PackageUtils] Found class PropertyOutputContext, seeing it if it's
included or excluded
[PackageUtils] ... Including class PropertyOutputContext
[PackageUtils] Found class RelativeElementPosition, seeing it if it's
included or excluded
[PackageUtils] ... Including class RelativeElementPosition
[PackageUtils] Found class Request, seeing it if it's included or
excluded
[PackageUtils] ... Including class Request
[PackageUtils] Found class RequestExceptionHandler, seeing it if it's
included or excluded
[PackageUtils] ... Including class RequestExceptionHandler
[PackageUtils] Found class RequestFilter, seeing it if it's included
or excluded
[PackageUtils] ... Including class RequestFilter
[PackageUtils] Found class RequestGlobals, seeing it if it's included
or excluded
[PackageUtils] ... Including class RequestGlobals
[PackageUtils] Found class RequestHandler, seeing it if it's included
or excluded
[PackageUtils] ... Including class RequestHandler
[PackageUtils] Found class ResourceDigestGenerator, seeing it if it's
included or excluded
[PackageUtils] ... Including class ResourceDigestGenerator
[PackageUtils] Found class Response, seeing it if it's included or
excluded
[PackageUtils] ... Including class Response
[PackageUtils] Found class ResponseCompressionAnalyzer, seeing it if
it's included or excluded
[PackageUtils] ... Including class ResponseCompressionAnalyzer
[PackageUtils] Found class ResponseRenderer, seeing it if it's
included or excluded
[PackageUtils] ... Including class ResponseRenderer
[PackageUtils] Found class ServletApplicationInitializer, seeing it if
it's included or excluded
[PackageUtils] ... Including class ServletApplicationInitializer
[PackageUtils] Found class ServletApplicationInitializerFilter, seeing
it if it's included or excluded
[PackageUtils] ... Including class ServletApplicationInitializerFilter
[PackageUtils] Found class Session, seeing it if it's included or
excluded
[PackageUtils] ... Including class Session
[PackageUtils] Found class SessionPersistedObjectAnalyzer, seeing it
if it's included or excluded
[PackageUtils] ... Including class SessionPersistedObjectAnalyzer
[PackageUtils] Found class StackTraceElementAnalyzer, seeing it if
it's included or excluded
[PackageUtils] ... Including class StackTraceElementAnalyzer
[PackageUtils] Found class StackTraceElementClassConstants, seeing it
if it's included or excluded
[PackageUtils] ... Including class StackTraceElementClassConstants
[PackageUtils] Found class TapestryModule$1, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryModule$1
[PackageUtils] Found class TapestryModule$10, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryModule$10
[PackageUtils] Found class TapestryModule$11, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryModule$11
[PackageUtils] Found class TapestryModule$12, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryModule$12
[PackageUtils] Found class TapestryModule$13, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryModule$13
[PackageUtils] Found class TapestryModule$14, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryModule$14
[PackageUtils] Found class TapestryModule$15, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryModule$15
[PackageUtils] Found class TapestryModule$16, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryModule$16
[PackageUtils] Found class TapestryModule$17$1, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryModule$17$1
[PackageUtils] Found class TapestryModule$17, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryModule$17
[PackageUtils] Found class TapestryModule$18, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryModule$18
[PackageUtils] Found class TapestryModule$19, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryModule$19
[PackageUtils] Found class TapestryModule$2, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryModule$2
[PackageUtils] Found class TapestryModule$20, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryModule$20
[PackageUtils] Found class TapestryModule$21, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryModule$21
[PackageUtils] Found class TapestryModule$22, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryModule$22
[PackageUtils] Found class TapestryModule$23, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryModule$23
[PackageUtils] Found class TapestryModule$24, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryModule$24
[PackageUtils] Found class TapestryModule$25, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryModule$25
[PackageUtils] Found class TapestryModule$26, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryModule$26
[PackageUtils] Found class TapestryModule$27, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryModule$27
[PackageUtils] Found class TapestryModule$28, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryModule$28
[PackageUtils] Found class TapestryModule$29, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryModule$29
[PackageUtils] Found class TapestryModule$3, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryModule$3
[PackageUtils] Found class TapestryModule$30, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryModule$30
[PackageUtils] Found class TapestryModule$31, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryModule$31
[PackageUtils] Found class TapestryModule$32, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryModule$32
[PackageUtils] Found class TapestryModule$33, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryModule$33
[PackageUtils] Found class TapestryModule$34, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryModule$34
[PackageUtils] Found class TapestryModule$35, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryModule$35
[PackageUtils] Found class TapestryModule$36, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryModule$36
[PackageUtils] Found class TapestryModule$37, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryModule$37
[PackageUtils] Found class TapestryModule$38, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryModule$38
[PackageUtils] Found class TapestryModule$39, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryModule$39
[PackageUtils] Found class TapestryModule$4, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryModule$4
[PackageUtils] Found class TapestryModule$5, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryModule$5
[PackageUtils] Found class TapestryModule$6, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryModule$6
[PackageUtils] Found class TapestryModule$7, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryModule$7
[PackageUtils] Found class TapestryModule$8, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryModule$8
[PackageUtils] Found class TapestryModule$9, seeing it if it's
included or excluded
[PackageUtils] ... Including class TapestryModule$9
[PackageUtils] Found class TapestryModule
$ApplicationInitializerTerminator, seeing it if it's included or
excluded
[PackageUtils] ... Including class TapestryModule
$ApplicationInitializerTerminator
[PackageUtils] Found class TapestryModule
$HttpServletRequestHandlerTerminator, seeing it if it's included or
excluded
[PackageUtils] ... Including class TapestryModule
$HttpServletRequestHandlerTerminator
[PackageUtils] Found class TapestryModule$RequestHandlerTerminator,
seeing it if it's included or excluded
[PackageUtils] ... Including class TapestryModule
$RequestHandlerTerminator
[PackageUtils] Found class TapestryModule
$ServletApplicationInitializerTerminator, seeing it if it's included
or excluded
[PackageUtils] ... Including class TapestryModule
$ServletApplicationInitializerTerminator
[PackageUtils] Found class TapestryModule, seeing it if it's included
or excluded
[PackageUtils] ... Including class TapestryModule
[PackageUtils] Found class Traditional, seeing it if it's included or
excluded
[PackageUtils] ... Including class Traditional
[PackageUtils] Found class TransformConstants, seeing it if it's
included or excluded
[PackageUtils] ... Including class TransformConstants
[PackageUtils] Found class TransformMethodSignature, seeing it if it's
included or excluded
[PackageUtils] ... Including class TransformMethodSignature
[PackageUtils] Found class TransformUtils$PrimitiveTypeInfo, seeing it
if it's included or excluded
[PackageUtils] ... Including class TransformUtils$PrimitiveTypeInfo
[PackageUtils] Found class TransformUtils, seeing it if it's included
or excluded
[PackageUtils] ... Including class TransformUtils
[PackageUtils] Found class TranslatorSource, seeing it if it's
included or excluded
[PackageUtils] ... Including class TranslatorSource
[PackageUtils] Found class UpdateListener, seeing it if it's included
or excluded
[PackageUtils] ... Including class UpdateListener
[PackageUtils] Found class UpdateListenerHub, seeing it if it's
included or excluded
[PackageUtils] ... Including class UpdateListenerHub
[PackageUtils] Found class URLEncoder, seeing it if it's included or
excluded
[PackageUtils] ... Including class URLEncoder
[PackageUtils] Found class URLRewriter, seeing it if it's included or
excluded
[PackageUtils] ... Including class URLRewriter
[PackageUtils] Found class ValidationConstraintGenerator, seeing it if
it's included or excluded
[PackageUtils] ... Including class ValidationConstraintGenerator
[PackageUtils] Found class ValidationMessagesSource, seeing it if it's
included or excluded
[PackageUtils] ... Including class ValidationMessagesSource
[PackageUtils] Found class ValueEncoderFactory, seeing it if it's
included or excluded
[PackageUtils] ... Including class ValueEncoderFactory
[PackageUtils] Found class ValueEncoderSource, seeing it if it's
included or excluded
[PackageUtils] ... Including class ValueEncoderSource
[PackageUtils] Looking for test classes in the directory: /Users/
Howard/work/t5-project/tapestry-core/target/test-classes/org/apache/
tapestry5/urlrewriter
[PackageUtils] Found class IntegrationTests, seeing it if it's
included or excluded
[PackageUtils] ... Including class IntegrationTests
[PackageUtils] Found class SimpleRequestWrapperTest, seeing it if it's
included or excluded
[PackageUtils] ... Including class SimpleRequestWrapperTest
[PackageUtils] Looking for test classes in the directory: /Users/
Howard/work/t5-project/tapestry-core/target/classes/org/apache/
tapestry5/urlrewriter
[PackageUtils] Found class RewriteRuleApplicability, seeing it if it's
included or excluded
[PackageUtils] ... Including class RewriteRuleApplicability
[PackageUtils] Found class SimpleRequestWrapper, seeing it if it's
included or excluded
[PackageUtils] ... Including class SimpleRequestWrapper
[PackageUtils] Found class URLRewriteContext, seeing it if it's
included or excluded
[PackageUtils] ... Including class URLRewriteContext
[PackageUtils] Found class URLRewriterRule, seeing it if it's included
or excluded
[PackageUtils] ... Including class URLRewriterRule
[PackageUtils] Looking for test classes in the directory: /Users/
Howard/work/t5-project/tapestry-core/target/test-classes/org/apache/
tapestry5/util
[PackageUtils] Found class DefaultPrimaryKeyEncoderTest$1, seeing it
if it's included or excluded
[PackageUtils] ... Including class DefaultPrimaryKeyEncoderTest$1
[PackageUtils] Found class DefaultPrimaryKeyEncoderTest
$IntStringEncoder, seeing it if it's included or excluded
[PackageUtils] ... Including class DefaultPrimaryKeyEncoderTest
$IntStringEncoder
[PackageUtils] Found class DefaultPrimaryKeyEncoderTest, seeing it if
it's included or excluded
[PackageUtils] ... Including class DefaultPrimaryKeyEncoderTest
[PackageUtils] Found class EnumSelectModelTest, seeing it if it's
included or excluded
[PackageUtils] ... Including class EnumSelectModelTest
[PackageUtils] Found class FindTheParameterizedType, seeing it if it's
included or excluded
[PackageUtils] ... Including class FindTheParameterizedType
[PackageUtils] Found class IdentifyTransformer, seeing it if it's
included or excluded
[PackageUtils] ... Including class IdentifyTransformer
[PackageUtils] Found class StringToEnumCoercionTest, seeing it if it's
included or excluded
[PackageUtils] ... Including class StringToEnumCoercionTest
[PackageUtils] Found class Transformer, seeing it if it's included or
excluded
[PackageUtils] ... Including class Transformer
[PackageUtils] Found class UppercaseTransformer, seeing it if it's
included or excluded
[PackageUtils] ... Including class UppercaseTransformer
[PackageUtils] Looking for test classes in the directory: /Users/
Howard/work/t5-project/tapestry-core/target/classes/org/apache/
tapestry5/util
[PackageUtils] Found class AbstractSelectModel, seeing it if it's
included or excluded
[PackageUtils] ... Including class AbstractSelectModel
[PackageUtils] Found class DefaultPrimaryKeyEncoder, seeing it if it's
included or excluded
[PackageUtils] ... Including class DefaultPrimaryKeyEncoder
[PackageUtils] Found class EnumSelectModel, seeing it if it's included
or excluded
[PackageUtils] ... Including class EnumSelectModel
[PackageUtils] Found class EnumValueEncoder, seeing it if it's
included or excluded
[PackageUtils] ... Including class EnumValueEncoder
[PackageUtils] Found class PublicUtilMessages, seeing it if it's
included or excluded
[PackageUtils] ... Including class PublicUtilMessages
[PackageUtils] Found class ResponseWrapper, seeing it if it's included
or excluded
[PackageUtils] ... Including class ResponseWrapper
[PackageUtils] Found class StringToEnumCoercion, seeing it if it's
included or excluded
[PackageUtils] ... Including class StringToEnumCoercion
[PackageUtils] Found class TextStreamResponse, seeing it if it's
included or excluded
[PackageUtils] ... Including class TextStreamResponse
[PackageUtils] Looking for test classes in the directory: /Users/
Howard/work/t5-project/tapestry-core/target/test-classes/org/apache/
tapestry5/validator
[PackageUtils] Found class EmailTest, seeing it if it's included or
excluded
[PackageUtils] ... Including class EmailTest
[PackageUtils] Found class MaxLengthTest, seeing it if it's included
or excluded
[PackageUtils] ... Including class MaxLengthTest
[PackageUtils] Found class MaxTest, seeing it if it's included or
excluded
[PackageUtils] ... Including class MaxTest
[PackageUtils] Found class MinLengthTest, seeing it if it's included
or excluded
[PackageUtils] ... Including class MinLengthTest
[PackageUtils] Found class MinTest, seeing it if it's included or
excluded
[PackageUtils] ... Including class MinTest
[PackageUtils] Found class RegexpTest, seeing it if it's included or
excluded
[PackageUtils] ... Including class RegexpTest
[PackageUtils] Found class RequiredTest, seeing it if it's included or
excluded
[PackageUtils] ... Including class RequiredTest
[PackageUtils] Looking for test classes in the directory: /Users/
Howard/work/t5-project/tapestry-core/target/classes/org/apache/
tapestry5/validator
[PackageUtils] Found class AbstractValidator, seeing it if it's
included or excluded
[PackageUtils] ... Including class AbstractValidator
[PackageUtils] Found class Email, seeing it if it's included or
excluded
[PackageUtils] ... Including class Email
[PackageUtils] Found class Max, seeing it if it's included or excluded
[PackageUtils] ... Including class Max
[PackageUtils] Found class MaxLength, seeing it if it's included or
excluded
[PackageUtils] ... Including class MaxLength
[PackageUtils] Found class Min, seeing it if it's included or excluded
[PackageUtils] ... Including class Min
[PackageUtils] Found class MinLength, seeing it if it's included or
excluded
[PackageUtils] ... Including class MinLength
[PackageUtils] Found class Regexp, seeing it if it's included or
excluded
[PackageUtils] ... Including class Regexp
[PackageUtils] Found class Required, seeing it if it's included or
excluded
[PackageUtils] ... Including class Required
[TestRunner] Running the tests in 'Public APIs' with parallel
mode:false
[RunInfo] Adding method selector:
org.testng.internal.XmlMethodSelector@a94884d priority: 10
[[Utils]] Unable to open class org.apache.tapestry5..ContentTypeTest -
unable to resolve class reference org/apache/tapestry5//
ContentTypeTest (wrong name: org/apache/tapestry5/ContentTypeTest)
[[Utils]] Unable to open class org.apache.tapestry5..FieldComponent -
unable to resolve class reference org/apache/tapestry5//FieldComponent
(wrong name: org/apache/tapestry5/FieldComponent)
[[Utils]] Unable to open class org.apache.tapestry5..MarkupUtilsTest -
unable to resolve class reference org/apache/tapestry5//
MarkupUtilsTest (wrong name: org/apache/tapestry5/MarkupUtilsTest)
[[Utils]] Unable to open class org.apache.tapestry5..Stooge - unable
to resolve class reference org/apache/tapestry5//Stooge (wrong name:
org/apache/tapestry5/Stooge)
[[Utils]] Unable to open class
org.apache.tapestry5..ValidationTrackerImplTest - unable to resolve
class reference org/apache/tapestry5//ValidationTrackerImplTest (wrong
name: org/apache/tapestry5/ValidationTrackerImplTest)
[[Utils]] Unable to open class org.apache.tapestry5..VersionUtilsTest
- unable to resolve class reference org/apache/tapestry5//
VersionUtilsTest (wrong name: org/apache/tapestry5/VersionUtilsTest)
[[Utils]] Unable to open class
org.apache.tapestry5..AbstractOptionModel - unable to resolve class
reference org/apache/tapestry5//AbstractOptionModel (wrong name: org/
apache/tapestry5/AbstractOptionModel)
[[Utils]] Unable to open class org.apache.tapestry5..Asset - unable to
resolve class reference org/apache/tapestry5//Asset (wrong name: org/
apache/tapestry5/Asset)
[[Utils]] Unable to open class org.apache.tapestry5..Asset2 - unable
to resolve class reference org/apache/tapestry5//Asset2 (wrong name:
org/apache/tapestry5/Asset2)
[[Utils]] Unable to open class
org.apache.tapestry5..BaseOptimizedApplicationStateObject - unable to
resolve class reference org/apache/tapestry5//
BaseOptimizedApplicationStateObject (wrong name: org/apache/tapestry5/
BaseOptimizedApplicationStateObject)
[[Utils]] Unable to open class
org.apache.tapestry5..BaseOptimizedSessionPersistedObject - unable to
resolve class reference org/apache/tapestry5//
BaseOptimizedSessionPersistedObject (wrong name: org/apache/tapestry5/
BaseOptimizedSessionPersistedObject)
[[Utils]] Unable to open class
org.apache.tapestry5..BaseValidationDecorator - unable to resolve
class reference org/apache/tapestry5//BaseValidationDecorator (wrong
name: org/apache/tapestry5/BaseValidationDecorator)
[[Utils]] Unable to open class org.apache.tapestry5..Binding - unable
to resolve class reference org/apache/tapestry5//Binding (wrong name:
org/apache/tapestry5/Binding)
[[Utils]] Unable to open class org.apache.tapestry5..BindingConstants
- unable to resolve class reference org/apache/tapestry5//
BindingConstants (wrong name: org/apache/tapestry5/BindingConstants)
[[Utils]] Unable to open class org.apache.tapestry5..Block - unable to
resolve class reference org/apache/tapestry5//Block (wrong name: org/
apache/tapestry5/Block)
[[Utils]] Unable to open class
org.apache.tapestry5..BlockNotFoundException - unable to resolve class
reference org/apache/tapestry5//BlockNotFoundException (wrong name:
org/apache/tapestry5/BlockNotFoundException)
[[Utils]] Unable to open class org.apache.tapestry5..ClientElement -
unable to resolve class reference org/apache/tapestry5//ClientElement
(wrong name: org/apache/tapestry5/ClientElement)
[[Utils]] Unable to open class org.apache.tapestry5..ComponentAction -
unable to resolve class reference org/apache/tapestry5//
ComponentAction (wrong name: org/apache/tapestry5/ComponentAction)
[[Utils]] Unable to open class
org.apache.tapestry5..ComponentEventCallback - unable to resolve class
reference org/apache/tapestry5//ComponentEventCallback (wrong name:
org/apache/tapestry5/ComponentEventCallback)
[[Utils]] Unable to open class
org.apache.tapestry5..ComponentResources - unable to resolve class
reference org/apache/tapestry5//ComponentResources (wrong name: org/
apache/tapestry5/ComponentResources)
[[Utils]] Unable to open class
org.apache.tapestry5..ComponentResourcesCommon - unable to resolve
class reference org/apache/tapestry5//ComponentResourcesCommon (wrong
name: org/apache/tapestry5/ComponentResourcesCommon)
[[Utils]] Unable to open class org.apache.tapestry5..ContentType -
unable to resolve class reference org/apache/tapestry5//ContentType
(wrong name: org/apache/tapestry5/ContentType)
[[Utils]] Unable to open class org.apache.tapestry5..CSSClassConstants
- unable to resolve class reference org/apache/tapestry5//
CSSClassConstants (wrong name: org/apache/tapestry5/CSSClassConstants)
[[Utils]] Unable to open class org.apache.tapestry5..EventConstants -
unable to resolve class reference org/apache/tapestry5//EventConstants
(wrong name: org/apache/tapestry5/EventConstants)
[[Utils]] Unable to open class org.apache.tapestry5..EventContext -
unable to resolve class reference org/apache/tapestry5//EventContext
(wrong name: org/apache/tapestry5/EventContext)
[[Utils]] Unable to open class org.apache.tapestry5..Field - unable to
resolve class reference org/apache/tapestry5//Field (wrong name: org/
apache/tapestry5/Field)
[[Utils]] Unable to open class
org.apache.tapestry5..FieldFocusPriority - unable to resolve class
reference org/apache/tapestry5//FieldFocusPriority (wrong name: org/
apache/tapestry5/FieldFocusPriority)
[[Utils]] Unable to open class org.apache.tapestry5..FieldTranslator -
unable to resolve class reference org/apache/tapestry5//
FieldTranslator (wrong name: org/apache/tapestry5/FieldTranslator)
[[Utils]] Unable to open class
org.apache.tapestry5..FieldValidationSupport - unable to resolve class
reference org/apache/tapestry5//FieldValidationSupport (wrong name:
org/apache/tapestry5/FieldValidationSupport)
[[Utils]] Unable to open class org.apache.tapestry5..FieldValidator -
unable to resolve class reference org/apache/tapestry5//FieldValidator
(wrong name: org/apache/tapestry5/FieldValidator)
[[Utils]] Unable to open class
org.apache.tapestry5..FormValidationControl - unable to resolve class
reference org/apache/tapestry5//FormValidationControl (wrong name: org/
apache/tapestry5/FormValidationControl)
[[Utils]] Unable to open class org.apache.tapestry5..Link - unable to
resolve class reference org/apache/tapestry5//Link (wrong name: org/
apache/tapestry5/Link)
[[Utils]] Unable to open class org.apache.tapestry5..MarkupConstants -
unable to resolve class reference org/apache/tapestry5//
MarkupConstants (wrong name: org/apache/tapestry5/MarkupConstants)
[[Utils]] Unable to open class org.apache.tapestry5..MarkupUtils -
unable to resolve class reference org/apache/tapestry5//MarkupUtils
(wrong name: org/apache/tapestry5/MarkupUtils)
[[Utils]] Unable to open class org.apache.tapestry5..MarkupWriter -
unable to resolve class reference org/apache/tapestry5//MarkupWriter
(wrong name: org/apache/tapestry5/MarkupWriter)
[[Utils]] Unable to open class
org.apache.tapestry5..MarkupWriterAdapter - unable to resolve class
reference org/apache/tapestry5//MarkupWriterAdapter (wrong name: org/
apache/tapestry5/MarkupWriterAdapter)
[[Utils]] Unable to open class
org.apache.tapestry5..MarkupWriterListener - unable to resolve class
reference org/apache/tapestry5//MarkupWriterListener (wrong name: org/
apache/tapestry5/MarkupWriterListener)
[[Utils]] Unable to open class org.apache.tapestry5..MetaDataConstants
- unable to resolve class reference org/apache/tapestry5//
MetaDataConstants (wrong name: org/apache/tapestry5/MetaDataConstants)
[[Utils]] Unable to open class org.apache.tapestry5..NullFieldStrategy
- unable to resolve class reference org/apache/tapestry5//
NullFieldStrategy (wrong name: org/apache/tapestry5/NullFieldStrategy)
[[Utils]] Unable to open class
org.apache.tapestry5..OptimizedApplicationStateObject - unable to
resolve class reference org/apache/tapestry5//
OptimizedApplicationStateObject (wrong name: org/apache/tapestry5/
OptimizedApplicationStateObject)
[[Utils]] Unable to open class
org.apache.tapestry5..OptimizedSessionPersistedObject - unable to
resolve class reference org/apache/tapestry5//
OptimizedSessionPersistedObject (wrong name: org/apache/tapestry5/
OptimizedSessionPersistedObject)
[[Utils]] Unable to open class org.apache.tapestry5..OptionGroupModel
- unable to resolve class reference org/apache/tapestry5//
OptionGroupModel (wrong name: org/apache/tapestry5/OptionGroupModel)
[[Utils]] Unable to open class org.apache.tapestry5..OptionModel -
unable to resolve class reference org/apache/tapestry5//OptionModel
(wrong name: org/apache/tapestry5/OptionModel)
[[Utils]] Unable to open class
org.apache.tapestry5..PersistenceConstants - unable to resolve class
reference org/apache/tapestry5//PersistenceConstants (wrong name: org/
apache/tapestry5/PersistenceConstants)
[[Utils]] Unable to open class org.apache.tapestry5..PrimaryKeyEncoder
- unable to resolve class reference org/apache/tapestry5//
PrimaryKeyEncoder (wrong name: org/apache/tapestry5/PrimaryKeyEncoder)
[[Utils]] Unable to open class org.apache.tapestry5..PropertyConduit -
unable to resolve class reference org/apache/tapestry5//
PropertyConduit (wrong name: org/apache/tapestry5/PropertyConduit)
[[Utils]] Unable to open class org.apache.tapestry5..PropertyOverrides
- unable to resolve class reference org/apache/tapestry5//
PropertyOverrides (wrong name: org/apache/tapestry5/PropertyOverrides)
[[Utils]] Unable to open class org.apache.tapestry5..RadioContainer -
unable to resolve class reference org/apache/tapestry5//RadioContainer
(wrong name: org/apache/tapestry5/RadioContainer)
[[Utils]] Unable to open class org.apache.tapestry5..Renderable -
unable to resolve class reference org/apache/tapestry5//Renderable
(wrong name: org/apache/tapestry5/Renderable)
[[Utils]] Unable to open class org.apache.tapestry5..RenderSupport -
unable to resolve class reference org/apache/tapestry5//RenderSupport
(wrong name: org/apache/tapestry5/RenderSupport)
[[Utils]] Unable to open class org.apache.tapestry5..SelectModel -
unable to resolve class reference org/apache/tapestry5//SelectModel
(wrong name: org/apache/tapestry5/SelectModel)
[[Utils]] Unable to open class
org.apache.tapestry5..SelectModelVisitor - unable to resolve class
reference org/apache/tapestry5//SelectModelVisitor (wrong name: org/
apache/tapestry5/SelectModelVisitor)
[[Utils]] Unable to open class org.apache.tapestry5..StreamResponse -
unable to resolve class reference org/apache/tapestry5//StreamResponse
(wrong name: org/apache/tapestry5/StreamResponse)
[[Utils]] Unable to open class org.apache.tapestry5..SymbolConstants -
unable to resolve class reference org/apache/tapestry5//
SymbolConstants (wrong name: org/apache/tapestry5/SymbolConstants)
[[Utils]] Unable to open class org.apache.tapestry5..TapestryFilter -
unable to resolve class reference org/apache/tapestry5//TapestryFilter
(wrong name: org/apache/tapestry5/TapestryFilter)
[[Utils]] Unable to open class org.apache.tapestry5..TapestryMarkers -
unable to resolve class reference org/apache/tapestry5//
TapestryMarkers (wrong name: org/apache/tapestry5/TapestryMarkers)
[[Utils]] Unable to open class org.apache.tapestry5..Translator -
unable to resolve class reference org/apache/tapestry5//Translator
(wrong name: org/apache/tapestry5/Translator)
[[Utils]] Unable to open class
org.apache.tapestry5..ValidationDecorator - unable to resolve class
reference org/apache/tapestry5//ValidationDecorator (wrong name: org/
apache/tapestry5/ValidationDecorator)
[[Utils]] Unable to open class
org.apache.tapestry5..ValidationException - unable to resolve class
reference org/apache/tapestry5//ValidationException (wrong name: org/
apache/tapestry5/ValidationException)
[[Utils]] Unable to open class org.apache.tapestry5..ValidationTracker
- unable to resolve class reference org/apache/tapestry5//
ValidationTracker (wrong name: org/apache/tapestry5/ValidationTracker)
[[Utils]] Unable to open class
org.apache.tapestry5..ValidationTrackerImpl$FieldTracker - unable to
resolve class reference org/apache/tapestry5//ValidationTrackerImpl
$FieldTracker (wrong name: org/apache/tapestry5/ValidationTrackerImpl
$FieldTracker)
[[Utils]] Unable to open class
org.apache.tapestry5..ValidationTrackerImpl - unable to resolve class
reference org/apache/tapestry5//ValidationTrackerImpl (wrong name: org/
apache/tapestry5/ValidationTrackerImpl)
[[Utils]] Unable to open class org.apache.tapestry5..Validator -
unable to resolve class reference org/apache/tapestry5//Validator
(wrong name: org/apache/tapestry5/Validator)
[[Utils]] Unable to open class org.apache.tapestry5..ValueEncoder -
unable to resolve class reference org/apache/tapestry5//ValueEncoder
(wrong name: org/apache/tapestry5/ValueEncoder)
[[Utils]] Unable to open class org.apache.tapestry5..VersionUtils -
unable to resolve class reference org/apache/tapestry5//VersionUtils
(wrong name: org/apache/tapestry5/VersionUtils)
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.services.TapestryIOCModule$24 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.FactoryDefaults no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.services.CoercionTuple no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.AbstractResource no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.InjectionProvider no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$6 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.MarkupRenderer no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.AssetPathConverter no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.test.ErrorReporterImpl no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.services.MethodIterator no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$13 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.ExceptionTrackerImpl no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.GenericsUtils no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.MethodAdviceReceiver no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.SyncCostBench$SynchronizedRunner no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.services.TapestryIOCModule$1 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$3 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.util.AbstractMessages$1 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.services.TapestryIOCModule$14 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.internal.services.CtClassSource no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.AdvisorStackBuilder no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.OrderedConfigurationOverride no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.Response no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.services.ClassFabUtils$PrimitiveInfo no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.AbstractInvocation no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.InternalUtils$4 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.OrderConstraintBuilder no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.SymbolSourceImpl no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.ModuleBuilderSource no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.StringLocation no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.util.Stack no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$29 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.json.JSONObject$Null no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.LazyAdvisorImpl$1$1 no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.IdToDependencyNode$1 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.RegistryImpl$4 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.DelegatingRequest no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.AspectDecorator no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.test.ErrorReportingCommandProcessor no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.AdvisorStackBuilder$1 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.internal.util.Orderer$DependencyLinker no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.urlrewriter.URLRewriterRule no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.Alias no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.util.PublicUtilMessages no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.BaseLocatable no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.internal.ServiceProxyProvider no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.StackTraceElementClassConstants no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.HttpServletRequestHandler no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.util.CaseInsensitiveMap no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TransformMethodSignature no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ComponentRequestHandler no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.dom.Element$1 no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.ServiceDecorator no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ComponentLayer no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.util.CaseInsensitiveMap$EntrySet no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.ConstantInjectorImpl$1 no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.internal.ObjectCreatorSource no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.LocalizedNameGenerator no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$38 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.PartialMarkupRenderer no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.internal.InternalRegistry no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.SerializationSupport no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.ServiceLifecycle no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.test.RandomDataSource no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.dom.EndTagStyle no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.services.TapestryIOCModule$19 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.services.TapestryIOCModule no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.LinkCreationHub no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.services.TapestryIOCModule$9 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.PersistentLocale no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.ServiceActivity no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.ScopeConstants no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.HttpServletRequestFilter no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.json.JSONTokener no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.PropertyShadowBuilder no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.annotations.Local no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.util.CaseInsensitiveMap$Position no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.util.DefaultPrimaryKeyEncoderTest
$IntStringEncoder no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.ParallelExecutorImpl$2 no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.ServiceBinderImpl$1 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.util.DefaultPrimaryKeyEncoderTest$1 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.MethodInfo no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.LibraryMapping no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.RegistryImpl$2 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.RegistryWrapper no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.services.Status no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.ServiceBinderImpl$2$1 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.urlrewriter.URLRewriteContext no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$12 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.RegistryStartup no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.IdMatcherImpl no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.ServiceActivityTrackerImpl no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.RequestHandler no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.ApplicationDefaults no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.PageRenderLinkSource no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.RegistryShutdownHub no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.util.AbstractSelectModel no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.IOCSymbols no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.internal.util.InjectionResources no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.TypeCoercerImpl
$TargetCoercion no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ValueEncoderFactory no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.URLRewriter no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.CollectionFactory no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.ConcurrentBarrier$1 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.annotations.Marker no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.LoggingAdvisorImpl no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.PropertyAccessImpl no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.ExceptionAnalysisImpl no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.services.TapestryIOCModule$13 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.OrIdMatcher no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.ServiceDecoratorImpl no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.json.JSONObjectTest$1 no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ComponentEventLinkEncoder no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ApplicationStatePersistenceStrategySource
no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.SyncCostBench$Worker no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.util.AbstractMessages no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.Traditional no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.ModuleImpl$6$1 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.InvalidationListener no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ComponentEventRequestFilter no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.ObjectCreator no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$30 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$21 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.DataTypeAnalyzer no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ApplicationStatePersistenceStrategy no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.ExceptionTracker no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ComponentClassResolver no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.annotations.UsesMappedConfiguration no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.services.TapestryIOCModule$15 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.URLEncoder no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.ModuleImpl$5 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.BeanValidationContext no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$17 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.ParallelExecutorImpl$1 no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.ModuleImpl$8 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.NullFieldStrategySource no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.OperationTrackerImpl$1 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.validator.AbstractValidator no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$31 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.RegistryImpl$7 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.MappedConfigurationOverride no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.dom.Element$1$1 no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.PerthreadManagerImpl
$MapHolder no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.Dispatcher no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$26 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.MasterObjectProviderImpl$1
no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.ChainBuilder no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.ValidatingMappedConfigurationWrapper
no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.ParallelExecutor no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.validator.Min no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ResponseCompressionAnalyzer no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.DefaultModuleDefImpl$2 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TransformUtils$PrimitiveTypeInfo no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.PersistentFieldStrategy no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.validator.Regexp no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.DummyLock no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.SyncCostBench$SimpleRunner no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.RegistryBuilder no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.def.ModuleDef no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.test.TestBase$ThreadLocalControl no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.PageRenderRequestParameters no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.MasterObjectProviderImpl no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.validator.Required no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.dom.AbstractMarkupModel no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.RequestFilter no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.ServiceBindingOptions no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.InternalUtils$5 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.ClassFactory no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.FilterMethodAnalyzer no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.OneShotLock no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.ThreadLocale no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.services.TapestryIOCModule$26 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$16 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$1 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ObjectRenderer no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.test.SeleniumLauncher$1 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.MapInjectionResources no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.ThunkCreatorImpl no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.SyncCostBench no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.Invokable no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.JDKUtils no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.PerthreadManager no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.MetaDataLocator no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.ServiceMessages no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ResourceDigestGenerator no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.annotations.InjectService no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$32 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule
$HttpServletRequestHandlerTerminator no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.dom.Document no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.Invocation no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$19 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ApplicationInitializerFilter no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.LocalizationSetter no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ClientBehaviorSupport no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.MarkupRendererFilter no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.Resource no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.AdvisedMethodInvocationBuilder
no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.services.TapestryIOCModule$4 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.dom.Comment no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.PerthreadManagerImpl$1 no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.annotations.Primary no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.runtime.ComponentEvent no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.services.TapestryIOCModule$6 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.util.ResponseWrapper no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.ServiceResourcesImpl$1 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.LoggerSource no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.CompoundCoercion no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.LocationImpl no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.QuietOperationTracker no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.util.StrategyRegistry no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.OrderedConfiguration no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.services.TapestryIOCModule$22 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.BeanBlockSource no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.MessageFormatter no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ApplicationInitializer no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.IdToDependencyNode$2 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.ConcurrentBarrier$ThreadBoolean
no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$9 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.services.ClassFabUtils no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.ConstantInjectorImpl no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ServletApplicationInitializerFilter no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.InternalUtils$9 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.MethodLogger no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.NonParallelExecutor$1 no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.InheritanceSearch no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.HiddenFieldLocationRules no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.dom.Visitor no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class org.apache.tapestry5.dom.Text
no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$22 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.ClassFab no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.AspectDecoratorImpl$1 no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$10 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.services.TapestryIOCModule$17 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.util.EnumSelectModel no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ExceptionReporter no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.DecoratorDefImpl no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.services.TapestryIOCModule$23 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.BaseURLSource no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.ServiceResourcesImpl$2 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.RequestExceptionHandler no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.AnnotationProvider no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.TypeCoercerImpl$1 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.ServiceLifecycle2 no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.InvalidationEventHub no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.RegistryImpl$1 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.BeanBlockOverrideSource no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.UpdateListenerHub no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.ChainBuilderImpl no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.ClasspathURLConverterImpl
no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.UpdateListener no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.TypeCoercerImpl no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ComponentEventRequestHandler no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.ClasspathResourceSymbolProvider
no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.InternalUtils$8 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.ConstructorServiceCreator no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.beaneditor.DataType no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.dom.DefaultMarkupModel no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.json.JSONLiteral no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.services.TapestryIOCModule$12 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.StrategyBuilderImpl no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.AbstractServiceInstrumenter no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.annotations.Value no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.ComponentEventRequestParameters no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.EnvironmentalAccess no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.PerThreadOperationTracker$1 no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.LazyAdvisorImpl$1 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.AdvisorDef no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.SymbolSourceImpl$1 no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ComponentSource no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.dom.MarkupModel no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.json.JSONArray no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.services.TapestryIOCModule$28 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$36 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ClientDataEncoder no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$5 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.PartialMarkupRendererFilter no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.Ajax no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.ClasspathURLConverter no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.InternalUtils no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.AssetSource no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.PropertyAdapterImpl no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.UtilMessages no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.beaneditor.ReorderProperties no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.FormSupport no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.BeanModelSource no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$34 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.annotations.IntermediateType no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.AssetFactory no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.ResourceSymbolProvider no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.internal.ServiceActivityTracker no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ContextValueEncoder no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.runtime.RenderQueue no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.annotations.Order no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.LoggingDecoratorImpl no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.validator.Max no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.TypeCoercer no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.ModuleImpl$3 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$24 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ComponentMethodInvocation no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.ConcurrentBarrier$2 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.LoggerSourceImpl no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.FieldTranslatorSource no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.annotations.ServiceId no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.AutobuildObjectProvider no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.SessionPersistedObjectAnalyzer no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.DefaultModuleDefImpl no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.SymbolSource no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.SymbolSourceImpl
$SymbolExpansion no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.OperationTrackingObjectCreator no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.PersistentFieldChange no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.Orderer$2 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ClientInfrastructure no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.ServiceDefImpl no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.Request no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.RegistryShutdownListener no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.FieldFilter no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.ClassNameLocator no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ServletApplicationInitializer no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.SymbolObjectProvider no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.internal.ServiceDefAccumulator no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.Orderer$1 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ContextPathEncoder no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.services.MethodSignature no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.DefaultImplementationBuilderImpl
no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.util.EnumValueEncoder no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.test.TapestryTestConstants no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.ServiceBinderImpl$2 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.annotations.PostInjection no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.services.TapestryIOCModule$27 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.def.ServiceDef2 no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.urlrewriter.RewriteRuleApplicability no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.PropertyEditContext no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.DelegatingInjectionResources no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.ModuleImpl no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.ClassFabImpl no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.beaneditor.RelativePosition no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.LinkCreationListener no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.PropertyAdapter no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.InheritanceSearch$1 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.ConfigurationType no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.MessagesImpl no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.PropertyAccess no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.ConcurrentBarrier no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.PropertyShadowBuilderImpl
no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$37 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.internal.services.ConstantInjector no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.IOCConstants no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.util.CaseInsensitiveMap$EntrySetIterator no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.json.JSONObject no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.IdAllocator no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ComponentClassTransformWorker no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.services.TapestryIOCModule$8 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$7 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.OperationTrackerImpl no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.dom.XMLMarkupModel no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.Builtin no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.ExceptionAnalysis no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ApplicationGlobals no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ResponseRenderer no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.ModuleImpl$2 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.ExceptionAnalyzerImpl no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.Core no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.util.UppercaseTransformer no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$8 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.BindingSource no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ClassTransformation no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.ModuleImpl$7 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.ServiceResourcesImpl$4 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.MethodFilter no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.annotations.NotLazy no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.Orderable no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.util.DefaultPrimaryKeyEncoder no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.OperationException no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.ModuleImpl$6 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.util.ExceptionUtils no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.AccessableObjectAnnotationProvider
no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.ServiceBinderImpl no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.ServiceResourcesImpl$3 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.annotations.Autobuild no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.validator.MinLength no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.runtime.ComponentEventException no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.test.MockTester$1 no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.SyncCostBench$ReadWriteLockRunner no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.AbstractServiceCreator$2 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.MappedConfiguration no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.CachingObjectCreator no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.ServiceAdvisorImpl no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.ServiceBuilderResources no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ComponentMessages no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.AssetPathAuthorizer$Order no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.ObjectProvider no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.MethodAdvice no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.ServiceOverrideImpl no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.SyncCostBench$BlockRunner no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.ServiceProxyToken no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ApplicationStateCreator no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.BeanEditContext no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.services.TapestryIOCModule$2 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.ClassNameLocatorImpl$Queued
no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.ModuleImpl$1 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.util.IdentifyTransformer no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.runtime.Component no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.validator.Email no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.annotations.SubModule no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$2 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.ObjectLocatorImpl no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.SingletonServiceLifecycle no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$39 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.BridgeBuilder no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TransformConstants no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.ExceptionAnalyzer no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.DependencyNode no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.test.JettyRunner no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.services.TapestryIOCModule$16 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.beaneditor.NonVisual no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.services.TapestryIOCModule$21 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.ServiceActivityTrackerImpl
$MutableServiceActivity no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$15 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.test.ErrorReporter no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.ClassFactoryImpl no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.Heartbeat no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.DefaultModuleDefImpl$1 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.RegistryImpl$8 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.services.TapestryIOCModule$18 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.WrongConfigurationTypeGuard no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.EnvironmentalShadowBuilder no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.AbstractFab no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.AspectInterceptorBuilderImpl
no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.ClassNameLocatorImpl no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.annotations.InjectResource no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.MasterObjectProvider no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.annotations.Inject no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.ServiceBuilder no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.BeanBlockContribution no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.PerThreadServiceCreator no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.PerThreadServiceLifecycle
no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.AssetPathAuthorizer no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.AliasContribution no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.services.TapestryIOCModule$20 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.services.CoercionTuple$CoercionWrapper no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.RegistryShutdownHubImpl no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.InternalUtils$10 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.dom.MapHolder no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.InterceptorStackBuilder no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ComponentEventResultProcessor no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.annotations.PreventServiceDecoration no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.Coercion no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.RegistryImpl$5 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.PerthreadManagerImpl no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.Registry no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.ServiceResourcesImpl no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.util.CaseInsensitiveMap$1 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$20 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.json.JSONString no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.AnnotationProviderChain no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.beaneditor.Validate no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.MarkupWriterFactory no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ContextProvider no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ComponentMethodAdvice no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.AbstractMethodInvokingInstrumenter
no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.ServiceOverrideImpl$1 no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.PageRenderRequestFilter no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.Location no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.NonParallelExecutor no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.annotations.Scope no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$35 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ComponentDefaultProvider no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.ClassPropertyAdapterImpl no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ValidationMessagesSource no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$RequestHandlerTerminator
no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$17$1 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.IdMatcher no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$18 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.FieldValidatorSource no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.RegistryImpl$3 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.def.DecoratorDef no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.ClassFactoryClassPool$1 no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.PerThreadOperationTracker no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.annotations.Symbol no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.DefaultImplementationBuilder no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.FieldValidatorDefaultSource no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.PipelineBuilderImpl no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.Environment no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.ThreadCleanupListener no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ValueEncoderSource no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.Messages no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.RelativeElementPosition no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.PropertyOutputContext no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class org.apache.tapestry5.dom.Raw
no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.ClasspathResource no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.LifecycleWrappedServiceCreator no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.util.TextStreamResponse no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class org.apache.tapestry5.dom.Node
no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.LoggingAdvice no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.RequestGlobals no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.dom.Element no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.MapSymbolProvider no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.NullAnnotationProvider no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.services.TapestryIOCModule$10 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ComponentClasses no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.urlrewriter.SimpleRequestWrapper no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.RegistryImpl$9 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.ModuleImpl$4 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.annotations.AnnotationUseContext no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.util.Transformer no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.ServiceLifecycleSource no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.InternalUtils$6 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.InternalUtils$1 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.AbstractServiceCreator$1 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$23 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ComponentTemplates no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ValidationConstraintGenerator no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.test.MockTester$ThreadLocalControl no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.internal.EagerLoadServiceProxy no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.SyncCostBench$ReadWriteLockAspectRunner
no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.dom.DomMessages no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ClientDataSink no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.ThunkCreator no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.InheritanceSearch$State no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.BindingFactory no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.Configuration no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$28 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TransformUtils no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.PageRenderRequestHandler no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.LazyAdvisor no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.ConstantInjectorImpl
$InjectedValue no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.util.StringToEnumCoercion no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.ValidatingOrderedConfigurationWrapper
no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$4 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.AspectDecoratorImpl no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.InterceptorStackBuilder$1 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.TapestryException no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.ContributionDefImpl no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$27 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.runtime.ComponentResourcesAware no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule
$ServletApplicationInitializerTerminator no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.dom.Attribute no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.ServiceBuilderMethodInvoker no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.internal.util.IdToDependencyNode
$DependencyLinker no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.InternalUtils$3 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.RegistryImpl$6 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.beaneditor.Width no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.def.ContributionDef no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.JustInTimeObjectCreator$1
no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.ThreadLocaleImpl no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.ClassFactoryClassPool no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ClasspathAssetAliasManager no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.util.TimeInterval no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.services.TapestryIOCModule$7 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.ValueObjectProvider no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.ServiceResources no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.Cookies no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.util.CaseInsensitiveMap$CIMEntry no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.annotations.EagerLoad no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.IOCUtilities no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.AbstractServiceCreator no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.Locatable no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.TranslatorSource no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.OperationTracker no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.PropertyConduitSource no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.IdAllocator$NameGenerator no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.internal.Module no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.ObjectLocator no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.PageDocumentGenerator no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.runtime.RenderCommand no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.AliasManager no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.test.MockTester no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.util.BodyBuilder no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.LazyAdvisorImpl no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.PersistentFieldBundle no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.RegistryImpl no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule
$ApplicationInitializerTerminator no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.annotations.UsesConfiguration no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.ValidatingConfigurationWrapper no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.PipelineBuilder no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.RecursiveServiceCreationCheckWrapper
no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.services.TapestryIOCModule$11 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.runtime.PageLifecycleListener no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ApplicationStateManager no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.ClassPropertyAdapter no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.LoggingAdvisor no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$25 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.annotations.UsesOrderedConfiguration no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.InternalUtils$7 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.ExceptionInfo no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.InternalUtils$2 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.annotations.Match no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.StrategyBuilder no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.LoggingDecorator no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.StackTraceElementAnalyzer no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.validator.MaxLength no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$33 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.def.ServiceDef no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.dom.DOMTest$1 no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.def.ModuleDef2 no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.MessageFormatterImpl no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.IdToDependencyNode no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.util.UtilMessages no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.services.TapestryIOCModule$3 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.IOCMessages no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.OperationTrackingObjectCreator$1 no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.AdvisorDefImpl no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ClasspathProvider no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.ServiceActivityScoreboard no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.ApplicationStateContribution no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class org.apache.tapestry5.dom.DTD
no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.JustInTimeObjectCreator no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.Session no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.runtime.Event no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.SymbolProvider no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.services.TapestryIOCModule$25 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.services.TapestryIOCModule$5 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.OrderConstraint no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.ServiceAdvisor no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.annotations.UseWith no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.services.MethodIterator$1 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.Defense no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.GlobPatternMatcher no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$11 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.util.FindTheParameterizedType no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.ServiceOverride no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.ExceptionInfoImpl no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.test.Jetty7Runner no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.CtClassSourceImpl no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.ParallelExecutorImpl no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ComponentRequestFilter no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.SystemPropertiesSymbolProvider
no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.Context no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.dom.CData no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.AspectInterceptorBuilder no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$14 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.ServiceBinder no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.Orderer no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.util.AbstractMessages$2 no TestNG annotations
found
[TestClass] Creating TestClass for [ClassImpl
org.apache.tapestry5.validator.RegexpTest]
[TestClass] Adding method
org.apache.tapestry5.validator.RegexpTest.input_mismatch() on
TestClass class org.apache.tapestry5.validator.RegexpTest
[TestClass] Adding method
org.apache.tapestry5.validator.RegexpTest.matching_pattern() on
TestClass class org.apache.tapestry5.validator.RegexpTest
[XmlMethodSelector] Including method
org.apache.tapestry5.internal.test.setup_registry()
[XmlMethodSelector] Including method
org.apache.tapestry5.internal.test.shutdown_registry()
[XmlMethodSelector] Including method
org.apache.tapestry5.internal.test.cleanupThread()
[MethodInheritance]
org.apache.tapestry5.ioc.test.TestBase.discardMockControl() DEPENDS ON
org.apache.tapestry5.internal.test.InternalBaseTestCase.cleanupThread
()
[TestClass] Creating TestClass for [ClassImpl
org.apache.tapestry5.ioc.internal.IOCInternalTestCase]
[XmlMethodSelector] Including method
org.apache.tapestry5.ioc.internal.setup_registry()
[XmlMethodSelector] Including method
org.apache.tapestry5.ioc.internal.shutdown_registry()
[XmlMethodSelector] Including method
org.apache.tapestry5.ioc.internal.cleanupThread()
[MethodInheritance]
org.apache.tapestry5.ioc.test.TestBase.discardMockControl() DEPENDS ON
org.apache.tapestry5.ioc.internal.IOCInternalTestCase.cleanupThread()
[TestClass] Creating TestClass for [ClassImpl
org.apache.tapestry5.util.EnumSelectModelTest]
[TestClass] Adding method
org.apache.tapestry5.util.EnumSelectModelTest.generated_labels() on
TestClass class org.apache.tapestry5.util.EnumSelectModelTest
[TestClass] Adding method
org.apache.tapestry5.util.EnumSelectModelTest.prefixed_name_in_message_catalog
() on TestClass class org.apache.tapestry5.util.EnumSelectModelTest
[TestClass] Adding method
org.apache.tapestry5.util.EnumSelectModelTest.unprefixed_name_in_message_catalog
() on TestClass class org.apache.tapestry5.util.EnumSelectModelTest
[TestClass] Creating TestClass for [ClassImpl
org.apache.tapestry5.services.TransformMethodSignatureTest]
[TestClass] Adding method
org.apache.tapestry5.services.TransformMethodSignatureTest.short_constructor
() on TestClass class
org.apache.tapestry5.services.TransformMethodSignatureTest
[TestClass] Adding method
org.apache.tapestry5.services.TransformMethodSignatureTest.sorting()
on TestClass class
org.apache.tapestry5.services.TransformMethodSignatureTest
[TestClass] Adding method
org.apache.tapestry5.services.TransformMethodSignatureTest.package_private_toString
() on TestClass class
org.apache.tapestry5.services.TransformMethodSignatureTest
[TestClass] Adding method
org.apache.tapestry5.services.TransformMethodSignatureTest.signature_toString
() on TestClass class
org.apache.tapestry5.services.TransformMethodSignatureTest
[TestClass] Adding method
org.apache.tapestry5.services.TransformMethodSignatureTest.medium_description
() on TestClass class
org.apache.tapestry5.services.TransformMethodSignatureTest
[TestClass] Adding method
org.apache.tapestry5.services.TransformMethodSignatureTest.getters()
on TestClass class
org.apache.tapestry5.services.TransformMethodSignatureTest
[TestClass] Adding method
org.apache.tapestry5.services.TransformMethodSignatureTest.hash_code_and_equals
() on TestClass class
org.apache.tapestry5.services.TransformMethodSignatureTest
[TestClass] Adding method
org.apache.tapestry5.services.TransformMethodSignatureTest.null_value_for_parameters_and_exceptions
() on TestClass class
org.apache.tapestry5.services.TransformMethodSignatureTest
[TestClass] Creating TestClass for [ClassImpl
org.apache.tapestry5.services.AliasContributionTest]
[TestClass] Adding method
org.apache.tapestry5.services.AliasContributionTest.to_string() on
TestClass class org.apache.tapestry5.services.AliasContributionTest
[TestClass] Adding method
org.apache.tapestry5.services.AliasContributionTest.default_for_mode()
on TestClass class org.apache.tapestry5.services.AliasContributionTest
[TestClass] Adding method
org.apache.tapestry5.services.AliasContributionTest.specific_mode() on
TestClass class org.apache.tapestry5.services.AliasContributionTest
[TestClass] Creating TestClass for [ClassImpl
org.apache.tapestry5.json.JSONObjectTest]
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.get_long_from_string() on
TestClass class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.non_finite_numbers_not_allowed
(java.lang.Number) on TestClass class
org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.parse_null() on TestClass
class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.names_is_null_if_no_properties
() on TestClass class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.double_to_string(double,
java.lang.String) on TestClass class
org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.comma_at_end_of_list_is_ignored
() on TestClass class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.get_json_object_at_index() on
TestClass class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.not_a_double_at_index() on
TestClass class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.get_json_array() on TestClass
class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.quote_null_is_empty_string()
on TestClass class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.character_escapes_in_quote()
on TestClass class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method org.apache.tapestry5.json.JSONObjectTest.has
() on TestClass class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.accumulate_with_initial_array
() on TestClass class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.get_long_from_number() on
TestClass class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.get_boolean(java.lang.Object,
boolean) on TestClass class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.json_array_from_values() on
TestClass class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.put_null_is_remove() on
TestClass class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.array_from_string() on
TestClass class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.emit_null() on TestClass
class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.output_json_string() on
TestClass class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.append() on TestClass class
org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.parse_escaped() on TestClass
class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.parse_nested_object() on
TestClass class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.append_existng_key_not_an_array
() on TestClass class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.alternate_key_value_seperators
() on TestClass class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.parse_empty_object() on
TestClass class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.empty_element_is_null() on
TestClass class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.put_overrides_existing_value_in_array
() on TestClass class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.put_at_negative_index_is_invalid
() on TestClass class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.names() on TestClass class
org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.get_json_object() on
TestClass class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.null_matches_java_null() on
TestClass class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.copy_from_object_constructor
() on TestClass class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.array_equality() on TestClass
class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.get_double_from_array() on
TestClass class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.get_double_string_invalid_format
() on TestClass class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.parse_number_forms() on
TestClass class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.get_nested_array() on
TestClass class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.not_a_boolean_at_index() on
TestClass class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.null_to_string() on TestClass
class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.not_a_json_object_at_index()
on TestClass class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.get_not_found() on TestClass
class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.not_a_nested_array_at_index()
on TestClass class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.get_string_from_number() on
TestClass class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.length() on TestClass class
org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.object_from_string() on
TestClass class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.get_long_from_array() on
TestClass class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.get_int(java.lang.Object,
int) on TestClass class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.invalid_object_added() on
TestClass class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.jsonobject_parse_errors
(java.lang.String, java.lang.String) on TestClass class
org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.quote_empty_string_is_empty_string
() on TestClass class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.accumulate_simple_values() on
TestClass class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.json_literal() on TestClass
class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.put_pads_short_array_with_nulls
() on TestClass class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.parse_true_and_false() on
TestClass class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.get_double_not_a_string() on
TestClass class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.get_double(java.lang.Object,
double) on TestClass class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.equals_implementation() on
TestClass class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.parse_empty_array() on
TestClass class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.array_must_start_with_bracket
() on TestClass class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.not_a_boolean_value() on
TestClass class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.number_to_string_conversion()
on TestClass class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Adding method
org.apache.tapestry5.json.JSONObjectTest.boolean_values() on TestClass
class org.apache.tapestry5.json.JSONObjectTest
[TestClass] Creating TestClass for [ClassImpl
org.apache.tapestry5.validator.EmailTest]
[TestClass] Adding method
org.apache.tapestry5.validator.EmailTest.input_mismatch() on TestClass
class org.apache.tapestry5.validator.EmailTest
[TestClass] Adding method
org.apache.tapestry5.validator.EmailTest.matching_pattern() on
TestClass class org.apache.tapestry5.validator.EmailTest
[MethodInheritance]
org.apache.tapestry5.ioc.test.TestBase.discardMockControl() DEPENDS ON
org.apache.tapestry5.internal.test.InternalBaseTestCase.cleanupThread
()
[TestClass] Creating TestClass for [ClassImpl
org.apache.tapestry5.ioc.test.TestBase]
[TestClass] Creating TestClass for [ClassImpl
org.apache.tapestry5.urlrewriter.SimpleRequestWrapperTest]
[TestClass] Adding method
org.apache.tapestry5.urlrewriter.SimpleRequestWrapperTest.constructor_without_servername
() on TestClass class
org.apache.tapestry5.urlrewriter.SimpleRequestWrapperTest
[TestClass] Adding method
org.apache.tapestry5.urlrewriter.SimpleRequestWrapperTest.constructor_with_servername
() on TestClass class
org.apache.tapestry5.urlrewriter.SimpleRequestWrapperTest
[TestClass] Adding method
org.apache.tapestry5.urlrewriter.SimpleRequestWrapperTest.constructor_and_nulls
() on TestClass class
org.apache.tapestry5.urlrewriter.SimpleRequestWrapperTest
[TestClass] Adding method
org.apache.tapestry5.urlrewriter.SimpleRequestWrapperTest.delegating_methods
() on TestClass class
org.apache.tapestry5.urlrewriter.SimpleRequestWrapperTest
[TestClass] Creating TestClass for [ClassImpl
org.apache.tapestry5.validator.MinTest]
[TestClass] Adding method
org.apache.tapestry5.validator.MinTest.value_too_small() on TestClass
class org.apache.tapestry5.validator.MinTest
[TestClass] Adding method
org.apache.tapestry5.validator.MinTest.large_enough() on TestClass
class org.apache.tapestry5.validator.MinTest
[MethodInheritance]
org.apache.tapestry5.ioc.test.TestBase.discardMockControl() DEPENDS ON
org.apache.tapestry5.internal.test.InternalBaseTestCase.cleanupThread
()
[TestClass] Creating TestClass for [ClassImpl
org.apache.tapestry5.urlrewriter.IntegrationTests]
[TestClass] Adding method
org.apache.tapestry5.urlrewriter.IntegrationTests.test_url_rewriter_without_virtual_host
() on TestClass class
org.apache.tapestry5.urlrewriter.IntegrationTests
[TestClass] Adding method
org.apache.tapestry5.urlrewriter.IntegrationTests.test_link_rewriting_without_virtual_host
() on TestClass class
org.apache.tapestry5.urlrewriter.IntegrationTests
[TestClass] Adding method
org.apache.tapestry5.urlrewriter.IntegrationTests.test_url_rewriter_using_context
() on TestClass class
org.apache.tapestry5.urlrewriter.IntegrationTests
[TestClass] Creating TestClass for [ClassImpl
org.apache.tapestry5.test.SeleniumTestCase]
[XmlMethodSelector] Including method org.apache.tapestry5.test.setup()
[XmlMethodSelector] Including method org.apache.tapestry5.test.cleanup
()
[XmlMethodSelector] Including method
org.apache.tapestry5.test.indicateTestMethodName()
[XmlMethodSelector] Including method
org.apache.tapestry5.test.cleanupTestMethod()
[TestClass] Creating TestClass for [ClassImpl
org.apache.tapestry5.ioc.test.IOCTestCase]
[TestClass] Creating TestClass for [ClassImpl
org.apache.tapestry5.test.AbstractIntegrationTestSuite]
[TestClass] Creating TestClass for [ClassImpl
org.apache.tapestry5.services.TransformUtilsTest]
[TestClass] Adding method
org.apache.tapestry5.services.TransformUtilsTest.wrapper_type_by_class
() on TestClass class org.apache.tapestry5.services.TransformUtilsTest
[TestClass] Adding method
org.apache.tapestry5.services.TransformUtilsTest.default_value() on
TestClass class org.apache.tapestry5.services.TransformUtilsTest
[TestClass] Adding method
org.apache.tapestry5.services.TransformUtilsTest.wrapper_type_by_name
() on TestClass class org.apache.tapestry5.services.TransformUtilsTest
[TestClass] Adding method
org.apache.tapestry5.services.TransformUtilsTest.is_primitive() on
TestClass class org.apache.tapestry5.services.TransformUtilsTest
[TestClass] Adding method
org.apache.tapestry5.services.TransformUtilsTest.unwrapper_method_name
() on TestClass class org.apache.tapestry5.services.TransformUtilsTest
[TestClass] Creating TestClass for [ClassImpl
org.apache.tapestry5.test.SeleniumLauncher]
[XmlMethodSelector] Including method org.apache.tapestry5.test.startup
()
[TestClass] Creating TestClass for [ClassImpl
org.apache.tapestry5.validator.MaxLengthTest]
[TestClass] Adding method
org.apache.tapestry5.validator.MaxLengthTest.long_value() on TestClass
class org.apache.tapestry5.validator.MaxLengthTest
[TestClass] Adding method
org.apache.tapestry5.validator.MaxLengthTest.short_enough() on
TestClass class org.apache.tapestry5.validator.MaxLengthTest
[MethodInheritance]
org.apache.tapestry5.ioc.test.TestBase.discardMockControl() DEPENDS ON
org.apache.tapestry5.internal.test.InternalBaseTestCase.cleanupThread
()
[TestClass] Creating TestClass for [ClassImpl
org.apache.tapestry5.dom.DOMTest]
[TestClass] Adding method
org.apache.tapestry5.dom.DOMTest.attribute_names_may_not_be_blank() on
TestClass class org.apache.tapestry5.dom.DOMTest
[TestClass] Adding method
org.apache.tapestry5.dom.DOMTest.force_attributes_changes_attribute_value
() on TestClass class org.apache.tapestry5.dom.DOMTest
[TestClass] Adding method
org.apache.tapestry5.dom.DOMTest.dtd_with_markup() on TestClass class
org.apache.tapestry5.dom.DOMTest
[TestClass] Adding method org.apache.tapestry5.dom.DOMTest.pop() on
TestClass class org.apache.tapestry5.dom.DOMTest
[TestClass] Adding method org.apache.tapestry5.dom.DOMTest.is_empty()
on TestClass class org.apache.tapestry5.dom.DOMTest
[TestClass] Adding method
org.apache.tapestry5.dom.DOMTest.document_find_root_is_match() on
TestClass class org.apache.tapestry5.dom.DOMTest
[TestClass] Adding method
org.apache.tapestry5.dom.DOMTest.text_with_control_characters() on
TestClass class org.apache.tapestry5.dom.DOMTest
[TestClass] Adding method org.apache.tapestry5.dom.DOMTest.move_to_top
() on TestClass class org.apache.tapestry5.dom.DOMTest
[TestClass] Adding method
org.apache.tapestry5.dom.DOMTest.move_an_node_into_itself() on
TestClass class org.apache.tapestry5.dom.DOMTest
[TestClass] Adding method
org.apache.tapestry5.dom.DOMTest.get_child_markup() on TestClass class
org.apache.tapestry5.dom.DOMTest
[TestClass] Adding method
org.apache.tapestry5.dom.DOMTest.encoding_specified() on TestClass
class org.apache.tapestry5.dom.DOMTest
[TestClass] Adding method
org.apache.tapestry5.dom.DOMTest.force_null_for_first_attribute_is_noop
() on TestClass class org.apache.tapestry5.dom.DOMTest
[TestClass] Adding method
org.apache.tapestry5.dom.DOMTest.namespaced_elements() on TestClass
class org.apache.tapestry5.dom.DOMTest
[TestClass] Adding method
org.apache.tapestry5.dom.DOMTest.document_find_no_root_element() on
TestClass class org.apache.tapestry5.dom.DOMTest
[TestClass] Adding method org.apache.tapestry5.dom.DOMTest.wrap() on
TestClass class org.apache.tapestry5.dom.DOMTest
[TestClass] Adding method org.apache.tapestry5.dom.DOMTest.text() on
TestClass class org.apache.tapestry5.dom.DOMTest
[TestClass] Adding method
org.apache.tapestry5.dom.DOMTest.element_name_may_not_be_blank() on
TestClass class org.apache.tapestry5.dom.DOMTest
[TestClass] Adding method
org.apache.tapestry5.dom.DOMTest.quote_using_apostrophes() on
TestClass class org.apache.tapestry5.dom.DOMTest
[TestClass] Adding method
org.apache.tapestry5.dom.DOMTest.get_attributes() on TestClass class
org.apache.tapestry5.dom.DOMTest
[TestClass] Adding method
org.apache.tapestry5.dom.DOMTest.namespace_element_without_a_prefix()
on TestClass class org.apache.tapestry5.dom.DOMTest
[TestClass] Adding method
org.apache.tapestry5.dom.DOMTest.defaults_for_xml_defined_namespaces()
on TestClass class org.apache.tapestry5.dom.DOMTest
[TestClass] Adding method
org.apache.tapestry5.dom.DOMTest.writef_with_text() on TestClass class
org.apache.tapestry5.dom.DOMTest
[TestClass] Adding method
org.apache.tapestry5.dom.DOMTest.remove_children() on TestClass class
org.apache.tapestry5.dom.DOMTest
[TestClass] Adding method org.apache.tapestry5.dom.DOMTest.visit_order
() on TestClass class org.apache.tapestry5.dom.DOMTest
[TestClass] Adding method
org.apache.tapestry5.dom.DOMTest.apostrophes_are_escaped() on
TestClass class org.apache.tapestry5.dom.DOMTest
[TestClass] Adding method
org.apache.tapestry5.dom.DOMTest.get_element_by_id() on TestClass
class org.apache.tapestry5.dom.DOMTest
[TestClass] Adding method
org.apache.tapestry5.dom.DOMTest.specify_attributes_with_new_element()
on TestClass class org.apache.tapestry5.dom.DOMTest
[TestClass] Adding method
org.apache.tapestry5.dom.DOMTest.cdata_in_HTML_document() on TestClass
class org.apache.tapestry5.dom.DOMTest
[TestClass] Adding method
org.apache.tapestry5.dom.DOMTest.force_attributes_overrides_existing()
on TestClass class org.apache.tapestry5.dom.DOMTest
[TestClass] Adding method
org.apache.tapestry5.dom.DOMTest.add_class_names() on TestClass class
org.apache.tapestry5.dom.DOMTest
[TestClass] Adding method
org.apache.tapestry5.dom.DOMTest.nested_elements() on TestClass class
org.apache.tapestry5.dom.DOMTest
[TestClass] Adding method
org.apache.tapestry5.dom.DOMTest.dtd_with_nullids() on TestClass class
org.apache.tapestry5.dom.DOMTest
[TestClass] Adding method
org.apache.tapestry5.dom.DOMTest.document_find_no_match() on TestClass
class org.apache.tapestry5.dom.DOMTest
[TestClass] Adding method
org.apache.tapestry5.dom.DOMTest.document_with_root_element_and_attributes
() on TestClass class org.apache.tapestry5.dom.DOMTest
[TestClass] Adding method
org.apache.tapestry5.dom.DOMTest.document_find_not_a_match() on
TestClass class org.apache.tapestry5.dom.DOMTest
[TestClass] Adding method org.apache.tapestry5.dom.DOMTest.raw_output
() on TestClass class org.apache.tapestry5.dom.DOMTest
[TestClass] Adding method
org.apache.tapestry5.dom.DOMTest.remove_while_rendering() on TestClass
class org.apache.tapestry5.dom.DOMTest
[TestClass] Adding method
org.apache.tapestry5.dom.DOMTest.move_to_bottom() on TestClass class
org.apache.tapestry5.dom.DOMTest
[TestClass] Adding method
org.apache.tapestry5.dom.DOMTest.document_find_match() on TestClass
class org.apache.tapestry5.dom.DOMTest
[TestClass] Adding method
org.apache.tapestry5.dom.DOMTest.to_string_on_empty_document() on
TestClass class org.apache.tapestry5.dom.DOMTest
[TestClass] Adding method
org.apache.tapestry5.dom.DOMTest.later_updates_to_same_attribute_are_ignored
() on TestClass class org.apache.tapestry5.dom.DOMTest
[TestClass] Adding method
org.apache.tapestry5.dom.DOMTest.default_namespace() on TestClass
class org.apache.tapestry5.dom.DOMTest
[TestClass] Adding method
org.apache.tapestry5.dom.DOMTest.document_with_empty_root_element() on
TestClass class org.apache.tapestry5.dom.DOMTest
[TestClass] Adding method org.apache.tapestry5.dom.DOMTest.move_before
() on TestClass class org.apache.tapestry5.dom.DOMTest
[TestClass] Adding method
org.apache.tapestry5.dom.DOMTest.attribute_value_null_is_no_op() on
TestClass class org.apache.tapestry5.dom.DOMTest
[TestClass] Adding method
org.apache.tapestry5.dom.DOMTest.empty_html_elements() on TestClass
class org.apache.tapestry5.dom.DOMTest
[TestClass] Adding method
org.apache.tapestry5.dom.DOMTest.xml_style_empty_element() on
TestClass class org.apache.tapestry5.dom.DOMTest
[TestClass] Adding method
org.apache.tapestry5.dom.DOMTest.cdata_in_XML_document() on TestClass
class org.apache.tapestry5.dom.DOMTest
[TestClass] Adding method
org.apache.tapestry5.dom.DOMTest.markup_characters_inside_attributes_are_escaped
() on TestClass class org.apache.tapestry5.dom.DOMTest
[TestClass] Adding method
org.apache.tapestry5.dom.DOMTest.force_attributes_to_null_removes_attribute
() on TestClass class org.apache.tapestry5.dom.DOMTest
[TestClass] Adding method org.apache.tapestry5.dom.DOMTest.move_after
() on TestClass class org.apache.tapestry5.dom.DOMTest
[TestClass] Adding method
org.apache.tapestry5.dom.DOMTest.insert_element_at() on TestClass
class org.apache.tapestry5.dom.DOMTest
[TestClass] Adding method org.apache.tapestry5.dom.DOMTest.comments()
on TestClass class org.apache.tapestry5.dom.DOMTest
[MethodInheritance]
org.apache.tapestry5.ioc.test.TestBase.discardMockControl() DEPENDS ON
org.apache.tapestry5.internal.test.InternalBaseTestCase.cleanupThread
()
[TestClass] Creating TestClass for [ClassImpl
org.apache.tapestry5.validator.RequiredTest]
[TestClass] Adding method
org.apache.tapestry5.validator.RequiredTest.empty_collection_value()
on TestClass class org.apache.tapestry5.validator.RequiredTest
[TestClass] Adding method
org.apache.tapestry5.validator.RequiredTest.not_empty_collection_value
() on TestClass class org.apache.tapestry5.validator.RequiredTest
[TestClass] Adding method
org.apache.tapestry5.validator.RequiredTest.null_value() on TestClass
class org.apache.tapestry5.validator.RequiredTest
[TestClass] Adding method
org.apache.tapestry5.validator.RequiredTest.blank_value() on TestClass
class org.apache.tapestry5.validator.RequiredTest
[TestClass] Adding method
org.apache.tapestry5.validator.RequiredTest.non_blank_value() on
TestClass class org.apache.tapestry5.validator.RequiredTest
[TestClass] Creating TestClass for [ClassImpl
org.apache.tapestry5.util.DefaultPrimaryKeyEncoderTest]
[TestClass] Adding method
org.apache.tapestry5.util.DefaultPrimaryKeyEncoderTest.unknown_key_to_value
() on TestClass class
org.apache.tapestry5.util.DefaultPrimaryKeyEncoderTest
[TestClass] Adding method
org.apache.tapestry5.util.DefaultPrimaryKeyEncoderTest.set_delete_false_when_nothing_yet_deleted
() on TestClass class
org.apache.tapestry5.util.DefaultPrimaryKeyEncoderTest
[TestClass] Adding method
org.apache.tapestry5.util.DefaultPrimaryKeyEncoderTest.value_orderer_maintained
() on TestClass class
org.apache.tapestry5.util.DefaultPrimaryKeyEncoderTest
[TestClass] Adding method
org.apache.tapestry5.util.DefaultPrimaryKeyEncoderTest.empty_encoder_has_no_values
() on TestClass class
org.apache.tapestry5.util.DefaultPrimaryKeyEncoderTest
[TestClass] Adding method
org.apache.tapestry5.util.DefaultPrimaryKeyEncoderTest.missing_key_to_provided_object
() on TestClass class
org.apache.tapestry5.util.DefaultPrimaryKeyEncoderTest
[TestClass] Adding method
org.apache.tapestry5.util.DefaultPrimaryKeyEncoderTest.undelete_a_value
() on TestClass class
org.apache.tapestry5.util.DefaultPrimaryKeyEncoderTest
[TestClass] Adding method
org.apache.tapestry5.util.DefaultPrimaryKeyEncoderTest.known_key_to_value
() on TestClass class
org.apache.tapestry5.util.DefaultPrimaryKeyEncoderTest
[TestClass] Adding method
org.apache.tapestry5.util.DefaultPrimaryKeyEncoderTest.value_to_key()
on TestClass class
org.apache.tapestry5.util.DefaultPrimaryKeyEncoderTest
[TestClass] Adding method
org.apache.tapestry5.util.DefaultPrimaryKeyEncoderTest.difference_between_get_values_and_get_all_values
() on TestClass class
org.apache.tapestry5.util.DefaultPrimaryKeyEncoderTest
[TestClass] Adding method
org.apache.tapestry5.util.DefaultPrimaryKeyEncoderTest.extract_key_for_missing_value
() on TestClass class
org.apache.tapestry5.util.DefaultPrimaryKeyEncoderTest
[TestClass] Adding method
org.apache.tapestry5.util.DefaultPrimaryKeyEncoderTest.keys_must_be_unique
() on TestClass class
org.apache.tapestry5.util.DefaultPrimaryKeyEncoderTest
[MethodInheritance]
org.apache.tapestry5.ioc.test.TestBase.discardMockControl() DEPENDS ON
org.apache.tapestry5.internal.test.InternalBaseTestCase.cleanupThread
()
[TestClass] Creating TestClass for [ClassImpl
org.apache.tapestry5.validator.MinLengthTest]
[TestClass] Adding method
org.apache.tapestry5.validator.MinLengthTest.long_enough() on
TestClass class org.apache.tapestry5.validator.MinLengthTest
[TestClass] Adding method
org.apache.tapestry5.validator.MinLengthTest.short_value() on
TestClass class org.apache.tapestry5.validator.MinLengthTest
[MethodInheritance]
org.apache.tapestry5.ioc.test.TestBase.discardMockControl() DEPENDS ON
org.apache.tapestry5.internal.test.InternalBaseTestCase.cleanupThread
()
[TestClass] Creating TestClass for [ClassImpl
org.apache.tapestry5.util.StringToEnumCoercionTest]
[TestClass] Adding method
org.apache.tapestry5.util.StringToEnumCoercionTest.value_not_found()
on TestClass class org.apache.tapestry5.util.StringToEnumCoercionTest
[TestClass] Adding method
org.apache.tapestry5.util.StringToEnumCoercionTest.value_found() on
TestClass class org.apache.tapestry5.util.StringToEnumCoercionTest
[TestClass] Adding method
org.apache.tapestry5.util.StringToEnumCoercionTest.blank_is_null() on
TestClass class org.apache.tapestry5.util.StringToEnumCoercionTest
[TestClass] Creating TestClass for [ClassImpl
org.apache.tapestry5.validator.MaxTest]
[TestClass] Adding method
org.apache.tapestry5.validator.MaxTest.value_too_large() on TestClass
class org.apache.tapestry5.validator.MaxTest
[TestClass] Adding method
org.apache.tapestry5.validator.MaxTest.small_enough() on TestClass
class org.apache.tapestry5.validator.MaxTest
[MethodInheritance]
org.apache.tapestry5.ioc.test.TestBase.discardMockControl() DEPENDS ON
org.apache.tapestry5.internal.test.InternalBaseTestCase.cleanupThread
()
[XmlMethodSelector] Including method
org.apache.tapestry5.validator.input_mismatch()
[XmlMethodSelector] Including method
org.apache.tapestry5.validator.matching_pattern()
[XmlMethodSelector] Including method
org.apache.tapestry5.util.generated_labels()
[XmlMethodSelector] Including method
org.apache.tapestry5.util.prefixed_name_in_message_catalog()
[XmlMethodSelector] Including method
org.apache.tapestry5.util.unprefixed_name_in_message_catalog()
[XmlMethodSelector] Including method
org.apache.tapestry5.services.short_constructor()
[XmlMethodSelector] Including method
org.apache.tapestry5.services.sorting()
[XmlMethodSelector] Including method
org.apache.tapestry5.services.package_private_toString()
[XmlMethodSelector] Including method
org.apache.tapestry5.services.signature_toString()
[XmlMethodSelector] Including method
org.apache.tapestry5.services.medium_description()
[XmlMethodSelector] Including method
org.apache.tapestry5.services.getters()
[XmlMethodSelector] Including method
org.apache.tapestry5.services.hash_code_and_equals()
[XmlMethodSelector] Including method
org.apache.tapestry5.services.null_value_for_parameters_and_exceptions
()
[XmlMethodSelector] Including method
org.apache.tapestry5.services.to_string()
[XmlMethodSelector] Including method
org.apache.tapestry5.services.default_for_mode()
[XmlMethodSelector] Including method
org.apache.tapestry5.services.specific_mode()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.get_long_from_string()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.non_finite_numbers_not_allowed()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.parse_null()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.names_is_null_if_no_properties()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.double_to_string()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.comma_at_end_of_list_is_ignored()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.get_json_object_at_index()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.not_a_double_at_index()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.get_json_array()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.quote_null_is_empty_string()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.character_escapes_in_quote()
[XmlMethodSelector] Including method org.apache.tapestry5.json.has()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.accumulate_with_initial_array()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.get_long_from_number()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.get_boolean()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.json_array_from_values()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.put_null_is_remove()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.array_from_string()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.emit_null()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.output_json_string()
[XmlMethodSelector] Including method org.apache.tapestry5.json.append
()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.parse_escaped()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.parse_nested_object()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.append_existng_key_not_an_array()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.alternate_key_value_seperators()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.parse_empty_object()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.empty_element_is_null()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.put_overrides_existing_value_in_array()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.put_at_negative_index_is_invalid()
[XmlMethodSelector] Including method org.apache.tapestry5.json.names()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.get_json_object()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.null_matches_java_null()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.copy_from_object_constructor()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.array_equality()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.get_double_from_array()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.get_double_string_invalid_format()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.parse_number_forms()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.get_nested_array()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.not_a_boolean_at_index()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.null_to_string()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.not_a_json_object_at_index()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.get_not_found()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.not_a_nested_array_at_index()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.get_string_from_number()
[XmlMethodSelector] Including method org.apache.tapestry5.json.length
()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.object_from_string()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.get_long_from_array()
[XmlMethodSelector] Including method org.apache.tapestry5.json.get_int
()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.invalid_object_added()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.jsonobject_parse_errors()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.quote_empty_string_is_empty_string()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.accumulate_simple_values()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.json_literal()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.put_pads_short_array_with_nulls()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.parse_true_and_false()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.get_double_not_a_string()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.get_double()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.equals_implementation()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.parse_empty_array()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.array_must_start_with_bracket()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.not_a_boolean_value()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.number_to_string_conversion()
[XmlMethodSelector] Including method
org.apache.tapestry5.json.boolean_values()
[XmlMethodSelector] Including method
org.apache.tapestry5.urlrewriter.constructor_without_servername()
[XmlMethodSelector] Including method
org.apache.tapestry5.urlrewriter.constructor_with_servername()
[XmlMethodSelector] Including method
org.apache.tapestry5.urlrewriter.constructor_and_nulls()
[XmlMethodSelector] Including method
org.apache.tapestry5.urlrewriter.delegating_methods()
[XmlMethodSelector] Including method
org.apache.tapestry5.validator.value_too_small()
[XmlMethodSelector] Including method
org.apache.tapestry5.validator.large_enough()
[XmlMethodSelector] Including method
org.apache.tapestry5.urlrewriter.test_url_rewriter_without_virtual_host
()
[XmlMethodSelector] Including method
org.apache.tapestry5.urlrewriter.test_link_rewriting_without_virtual_host
()
[XmlMethodSelector] Including method
org.apache.tapestry5.urlrewriter.test_url_rewriter_using_context()
[XmlMethodSelector] Including method
org.apache.tapestry5.services.wrapper_type_by_class()
[XmlMethodSelector] Including method
org.apache.tapestry5.services.default_value()
[XmlMethodSelector] Including method
org.apache.tapestry5.services.wrapper_type_by_name()
[XmlMethodSelector] Including method
org.apache.tapestry5.services.is_primitive()
[XmlMethodSelector] Including method
org.apache.tapestry5.services.unwrapper_method_name()
[XmlMethodSelector] Including method
org.apache.tapestry5.validator.long_value()
[XmlMethodSelector] Including method
org.apache.tapestry5.validator.short_enough()
[XmlMethodSelector] Including method
org.apache.tapestry5.validator.empty_collection_value()
[XmlMethodSelector] Including method
org.apache.tapestry5.validator.not_empty_collection_value()
[XmlMethodSelector] Including method
org.apache.tapestry5.validator.null_value()
[XmlMethodSelector] Including method
org.apache.tapestry5.validator.blank_value()
[XmlMethodSelector] Including method
org.apache.tapestry5.validator.non_blank_value()
[XmlMethodSelector] Including method
org.apache.tapestry5.dom.attribute_names_may_not_be_blank()
[XmlMethodSelector] Including method
org.apache.tapestry5.dom.force_attributes_changes_attribute_value()
[XmlMethodSelector] Including method
org.apache.tapestry5.dom.dtd_with_markup()
[XmlMethodSelector] Including method org.apache.tapestry5.dom.pop()
[XmlMethodSelector] Including method org.apache.tapestry5.dom.is_empty
()
[XmlMethodSelector] Including method
org.apache.tapestry5.dom.document_find_root_is_match()
[XmlMethodSelector] Including method
org.apache.tapestry5.dom.text_with_control_characters()
[XmlMethodSelector] Including method
org.apache.tapestry5.dom.move_to_top()
[XmlMethodSelector] Including method
org.apache.tapestry5.dom.move_an_node_into_itself()
[XmlMethodSelector] Including method
org.apache.tapestry5.dom.get_child_markup()
[XmlMethodSelector] Including method
org.apache.tapestry5.dom.encoding_specified()
[XmlMethodSelector] Including method
org.apache.tapestry5.dom.force_null_for_first_attribute_is_noop()
[XmlMethodSelector] Including method
org.apache.tapestry5.dom.namespaced_elements()
[XmlMethodSelector] Including method
org.apache.tapestry5.dom.document_find_no_root_element()
[XmlMethodSelector] Including method org.apache.tapestry5.dom.wrap()
[XmlMethodSelector] Including method org.apache.tapestry5.dom.text()
[XmlMethodSelector] Including method
org.apache.tapestry5.dom.element_name_may_not_be_blank()
[XmlMethodSelector] Including method
org.apache.tapestry5.dom.quote_using_apostrophes()
[XmlMethodSelector] Including method
org.apache.tapestry5.dom.get_attributes()
[XmlMethodSelector] Including method
org.apache.tapestry5.dom.namespace_element_without_a_prefix()
[XmlMethodSelector] Including method
org.apache.tapestry5.dom.defaults_for_xml_defined_namespaces()
[XmlMethodSelector] Including method
org.apache.tapestry5.dom.writef_with_text()
[XmlMethodSelector] Including method
org.apache.tapestry5.dom.remove_children()
[XmlMethodSelector] Including method
org.apache.tapestry5.dom.visit_order()
[XmlMethodSelector] Including method
org.apache.tapestry5.dom.apostrophes_are_escaped()
[XmlMethodSelector] Including method
org.apache.tapestry5.dom.get_element_by_id()
[XmlMethodSelector] Including method
org.apache.tapestry5.dom.specify_attributes_with_new_element()
[XmlMethodSelector] Including method
org.apache.tapestry5.dom.cdata_in_HTML_document()
[XmlMethodSelector] Including method
org.apache.tapestry5.dom.force_attributes_overrides_existing()
[XmlMethodSelector] Including method
org.apache.tapestry5.dom.add_class_names()
[XmlMethodSelector] Including method
org.apache.tapestry5.dom.nested_elements()
[XmlMethodSelector] Including method
org.apache.tapestry5.dom.dtd_with_nullids()
[XmlMethodSelector] Including method
org.apache.tapestry5.dom.document_find_no_match()
[XmlMethodSelector] Including method
org.apache.tapestry5.dom.document_with_root_element_and_attributes()
[XmlMethodSelector] Including method
org.apache.tapestry5.dom.document_find_not_a_match()
[XmlMethodSelector] Including method
org.apache.tapestry5.dom.raw_output()
[XmlMethodSelector] Including method
org.apache.tapestry5.dom.remove_while_rendering()
[XmlMethodSelector] Including method
org.apache.tapestry5.dom.move_to_bottom()
[XmlMethodSelector] Including method
org.apache.tapestry5.dom.document_find_match()
[XmlMethodSelector] Including method
org.apache.tapestry5.dom.to_string_on_empty_document()
[XmlMethodSelector] Including method
org.apache.tapestry5.dom.later_updates_to_same_attribute_are_ignored()
[XmlMethodSelector] Including method
org.apache.tapestry5.dom.default_namespace()
[XmlMethodSelector] Including method
org.apache.tapestry5.dom.document_with_empty_root_element()
[XmlMethodSelector] Including method
org.apache.tapestry5.dom.move_before()
[XmlMethodSelector] Including method
org.apache.tapestry5.dom.attribute_value_null_is_no_op()
[XmlMethodSelector] Including method
org.apache.tapestry5.dom.empty_html_elements()
[XmlMethodSelector] Including method
org.apache.tapestry5.dom.xml_style_empty_element()
[XmlMethodSelector] Including method
org.apache.tapestry5.dom.cdata_in_XML_document()
[XmlMethodSelector] Including method
org.apache.tapestry5.dom.markup_characters_inside_attributes_are_escaped
()
[XmlMethodSelector] Including method
org.apache.tapestry5.dom.force_attributes_to_null_removes_attribute()
[XmlMethodSelector] Including method
org.apache.tapestry5.dom.move_after()
[XmlMethodSelector] Including method
org.apache.tapestry5.dom.insert_element_at()
[XmlMethodSelector] Including method org.apache.tapestry5.dom.comments
()
[XmlMethodSelector] Including method
org.apache.tapestry5.validator.long_enough()
[XmlMethodSelector] Including method
org.apache.tapestry5.validator.short_value()
[XmlMethodSelector] Including method
org.apache.tapestry5.util.unknown_key_to_value()
[XmlMethodSelector] Including method
org.apache.tapestry5.util.set_delete_false_when_nothing_yet_deleted()
[XmlMethodSelector] Including method
org.apache.tapestry5.util.value_orderer_maintained()
[XmlMethodSelector] Including method
org.apache.tapestry5.util.empty_encoder_has_no_values()
[XmlMethodSelector] Including method
org.apache.tapestry5.util.missing_key_to_provided_object()
[XmlMethodSelector] Including method
org.apache.tapestry5.util.undelete_a_value()
[XmlMethodSelector] Including method
org.apache.tapestry5.util.known_key_to_value()
[XmlMethodSelector] Including method
org.apache.tapestry5.util.value_to_key()
[XmlMethodSelector] Including method
org.apache.tapestry5.util.difference_between_get_values_and_get_all_values
()
[XmlMethodSelector] Including method
org.apache.tapestry5.util.extract_key_for_missing_value()
[XmlMethodSelector] Including method
org.apache.tapestry5.util.keys_must_be_unique()
[XmlMethodSelector] Including method
org.apache.tapestry5.util.value_not_found()
[XmlMethodSelector] Including method
org.apache.tapestry5.util.value_found()
[XmlMethodSelector] Including method
org.apache.tapestry5.util.blank_is_null()
[XmlMethodSelector] Including method
org.apache.tapestry5.validator.value_too_large()
[XmlMethodSelector] Including method
org.apache.tapestry5.validator.small_enough()
[Invoker 1977026981] Invoking @BeforeSuite
org.apache.tapestry5.internal.test.InternalBaseTestCase.setup_registry
()
[INFO] RegistryBuilder Adding module definition for class
org.apache.tapestry5.ioc.services.TapestryIOCModule
[INFO] RegistryBuilder Adding module definition for class
org.apache.tapestry5.services.TapestryModule
[INFO] RegistryBuilder Adding module definition for class
org.apache.tapestry5.internal.services.InternalModule
[Invoker 1977026981] Invoking @BeforeSuite
org.apache.tapestry5.ioc.internal.IOCInternalTestCase.setup_registry()
[INFO] RegistryBuilder Adding module definition for class
org.apache.tapestry5.ioc.services.TapestryIOCModule
[ERROR] SerializationSupport Setting a new service proxy provider when
there's already an existing provider. This may indicate that you have
multiple IoC Registries.
[SuiteRunner] Created 1 TestRunners
[TestRunner] Running test Public APIs on 23 classes, included groups:
[] excluded groups:[]
[TestClass]
======
TESTCLASS: org.apache.tapestry5.validator.RegexpTest
[TestClass] Test :
org.apache.tapestry5.validator.RegexpTest.input_mismatch()
[TestClass] Test :
org.apache.tapestry5.validator.RegexpTest.matching_pattern()
[TestClass] AfterMethod :
org.apache.tapestry5.internal.test.InternalBaseTestCase.cleanupThread
()
[TestClass] AfterMethod :
org.apache.tapestry5.ioc.test.TestBase.discardMockControl()
[TestClass]
======

[TestClass]
======
TESTCLASS: org.apache.tapestry5.ioc.internal.IOCInternalTestCase
[TestClass] AfterMethod :
org.apache.tapestry5.ioc.internal.IOCInternalTestCase.cleanupThread()
[TestClass] AfterMethod :
org.apache.tapestry5.ioc.test.TestBase.discardMockControl()
[TestClass]
======

[TestClass]
======
TESTCLASS: org.apache.tapestry5.util.EnumSelectModelTest
[TestClass] Test :
org.apache.tapestry5.util.EnumSelectModelTest.generated_labels()
[TestClass] Test :
org.apache.tapestry5.util.EnumSelectModelTest.prefixed_name_in_message_catalog
()
[TestClass] Test :
org.apache.tapestry5.util.EnumSelectModelTest.unprefixed_name_in_message_catalog
()
[TestClass] AfterMethod :
org.apache.tapestry5.ioc.test.TestBase.discardMockControl()
[TestClass]
======

[TestClass]
======
TESTCLASS: org.apache.tapestry5.services.TransformMethodSignatureTest
[TestClass] Test :
org.apache.tapestry5.services.TransformMethodSignatureTest.short_constructor
()
[TestClass] Test :
org.apache.tapestry5.services.TransformMethodSignatureTest.sorting()
[TestClass] Test :
org.apache.tapestry5.services.TransformMethodSignatureTest.package_private_toString
()
[TestClass] Test :
org.apache.tapestry5.services.TransformMethodSignatureTest.signature_toString
()
[TestClass] Test :
org.apache.tapestry5.services.TransformMethodSignatureTest.medium_description
()
[TestClass] Test :
org.apache.tapestry5.services.TransformMethodSignatureTest.getters()
[TestClass] Test :
org.apache.tapestry5.services.TransformMethodSignatureTest.hash_code_and_equals
()
[TestClass] Test :
org.apache.tapestry5.services.TransformMethodSignatureTest.null_value_for_parameters_and_exceptions
()
[TestClass]
======

[TestClass]
======
TESTCLASS: org.apache.tapestry5.services.AliasContributionTest
[TestClass] Test :
org.apache.tapestry5.services.AliasContributionTest.to_string()
[TestClass] Test :
org.apache.tapestry5.services.AliasContributionTest.default_for_mode()
[TestClass] Test :
org.apache.tapestry5.services.AliasContributionTest.specific_mode()
[TestClass] AfterMethod :
org.apache.tapestry5.ioc.test.TestBase.discardMockControl()
[TestClass]
======

[TestClass]
======
TESTCLASS: org.apache.tapestry5.json.JSONObjectTest
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.get_long_from_string()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.non_finite_numbers_not_allowed
(java.lang.Number)
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.parse_null()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.names_is_null_if_no_properties
()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.double_to_string(double,
java.lang.String)
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.comma_at_end_of_list_is_ignored
()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.get_json_object_at_index()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.not_a_double_at_index()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.get_json_array()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.quote_null_is_empty_string()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.character_escapes_in_quote()
[TestClass] Test : org.apache.tapestry5.json.JSONObjectTest.has
()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.accumulate_with_initial_array
()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.get_long_from_number()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.get_boolean(java.lang.Object,
boolean)
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.json_array_from_values()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.put_null_is_remove()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.array_from_string()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.emit_null()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.output_json_string()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.append()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.parse_escaped()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.parse_nested_object()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.append_existng_key_not_an_array
()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.alternate_key_value_seperators
()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.parse_empty_object()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.empty_element_is_null()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.put_overrides_existing_value_in_array
()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.put_at_negative_index_is_invalid
()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.names()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.get_json_object()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.null_matches_java_null()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.copy_from_object_constructor
()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.array_equality()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.get_double_from_array()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.get_double_string_invalid_format
()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.parse_number_forms()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.get_nested_array()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.not_a_boolean_at_index()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.null_to_string()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.not_a_json_object_at_index()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.get_not_found()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.not_a_nested_array_at_index()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.get_string_from_number()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.length()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.object_from_string()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.get_long_from_array()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.get_int(java.lang.Object,
int)
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.invalid_object_added()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.jsonobject_parse_errors
(java.lang.String, java.lang.String)
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.quote_empty_string_is_empty_string
()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.accumulate_simple_values()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.json_literal()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.put_pads_short_array_with_nulls
()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.parse_true_and_false()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.get_double_not_a_string()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.get_double(java.lang.Object,
double)
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.equals_implementation()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.parse_empty_array()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.array_must_start_with_bracket
()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.not_a_boolean_value()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.number_to_string_conversion()
[TestClass] Test :
org.apache.tapestry5.json.JSONObjectTest.boolean_values()
[TestClass]
======

[TestClass]
======
TESTCLASS: org.apache.tapestry5.validator.EmailTest
[TestClass] Test :
org.apache.tapestry5.validator.EmailTest.input_mismatch()
[TestClass] Test :
org.apache.tapestry5.validator.EmailTest.matching_pattern()
[TestClass] AfterMethod :
org.apache.tapestry5.internal.test.InternalBaseTestCase.cleanupThread
()
[TestClass] AfterMethod :
org.apache.tapestry5.ioc.test.TestBase.discardMockControl()
[TestClass]
======

[TestClass]
======
TESTCLASS: org.apache.tapestry5.ioc.test.TestBase
[TestClass] AfterMethod :
org.apache.tapestry5.ioc.test.TestBase.discardMockControl()
[TestClass]
======

[TestClass]
======
TESTCLASS: org.apache.tapestry5.urlrewriter.SimpleRequestWrapperTest
[TestClass] Test :
org.apache.tapestry5.urlrewriter.SimpleRequestWrapperTest.constructor_without_servername
()
[TestClass] Test :
org.apache.tapestry5.urlrewriter.SimpleRequestWrapperTest.constructor_with_servername
()
[TestClass] Test :
org.apache.tapestry5.urlrewriter.SimpleRequestWrapperTest.constructor_and_nulls
()
[TestClass] Test :
org.apache.tapestry5.urlrewriter.SimpleRequestWrapperTest.delegating_methods
()
[TestClass] AfterMethod :
org.apache.tapestry5.ioc.test.TestBase.discardMockControl()
[TestClass]
======

[TestClass]
======
TESTCLASS: org.apache.tapestry5.validator.MinTest
[TestClass] Test :
org.apache.tapestry5.validator.MinTest.value_too_small()
[TestClass] Test :
org.apache.tapestry5.validator.MinTest.large_enough()
[TestClass] AfterMethod :
org.apache.tapestry5.internal.test.InternalBaseTestCase.cleanupThread
()
[TestClass] AfterMethod :
org.apache.tapestry5.ioc.test.TestBase.discardMockControl()
[TestClass]
======

[TestClass]
======
TESTCLASS: org.apache.tapestry5.urlrewriter.IntegrationTests
[TestClass] BeforeClass :
org.apache.tapestry5.test.AbstractIntegrationTestSuite.setup
(org.testng.ITestContext)
[TestClass] Test :
org.apache.tapestry5.urlrewriter.IntegrationTests.test_url_rewriter_without_virtual_host
()
[TestClass] Test :
org.apache.tapestry5.urlrewriter.IntegrationTests.test_link_rewriting_without_virtual_host
()
[TestClass] Test :
org.apache.tapestry5.urlrewriter.IntegrationTests.test_url_rewriter_using_context
()
[TestClass] AfterClass :
org.apache.tapestry5.test.AbstractIntegrationTestSuite.cleanup()
[TestClass]
======

[TestClass]
======
TESTCLASS: org.apache.tapestry5.test.SeleniumTestCase
[TestClass] BeforeClass :
org.apache.tapestry5.test.SeleniumTestCase.setup
(org.testng.ITestContext)
[TestClass] BeforeMethod:
org.apache.tapestry5.test.SeleniumTestCase.indicateTestMethodName
(java.lang.reflect.Method)
[TestClass] AfterMethod :
org.apache.tapestry5.test.SeleniumTestCase.cleanupTestMethod()
[TestClass] AfterClass :
org.apache.tapestry5.test.SeleniumTestCase.cleanup()
[TestClass]
======

[TestClass]
======
TESTCLASS: org.apache.tapestry5.ioc.test.IOCTestCase
[TestClass] AfterMethod :
org.apache.tapestry5.ioc.test.TestBase.discardMockControl()
[TestClass]
======

[TestClass]
======
TESTCLASS: org.apache.tapestry5.test.AbstractIntegrationTestSuite
[TestClass] BeforeClass :
org.apache.tapestry5.test.AbstractIntegrationTestSuite.setup
(org.testng.ITestContext)
[TestClass] AfterClass :
org.apache.tapestry5.test.AbstractIntegrationTestSuite.cleanup()
[TestClass]
======

[TestClass]
======
TESTCLASS: org.apache.tapestry5.services.TransformUtilsTest
[TestClass] Test :
org.apache.tapestry5.services.TransformUtilsTest.wrapper_type_by_class
()
[TestClass] Test :
org.apache.tapestry5.services.TransformUtilsTest.default_value()
[TestClass] Test :
org.apache.tapestry5.services.TransformUtilsTest.wrapper_type_by_name
()
[TestClass] Test :
org.apache.tapestry5.services.TransformUtilsTest.is_primitive()
[TestClass] Test :
org.apache.tapestry5.services.TransformUtilsTest.unwrapper_method_name
()
[TestClass]
======

[TestClass]
======
TESTCLASS: org.apache.tapestry5.test.SeleniumLauncher
[TestClass]
======

[TestClass]
======
TESTCLASS: org.apache.tapestry5.validator.MaxLengthTest
[TestClass] Test :
org.apache.tapestry5.validator.MaxLengthTest.long_value()
[TestClass] Test :
org.apache.tapestry5.validator.MaxLengthTest.short_enough()
[TestClass] AfterMethod :
org.apache.tapestry5.internal.test.InternalBaseTestCase.cleanupThread
()
[TestClass] AfterMethod :
org.apache.tapestry5.ioc.test.TestBase.discardMockControl()
[TestClass]
======

[TestClass]
======
TESTCLASS: org.apache.tapestry5.validator.RequiredTest
[TestClass] Test :
org.apache.tapestry5.validator.RequiredTest.empty_collection_value()
[TestClass] Test :
org.apache.tapestry5.validator.RequiredTest.not_empty_collection_value
()
[TestClass] Test :
org.apache.tapestry5.validator.RequiredTest.null_value()
[TestClass] Test :
org.apache.tapestry5.validator.RequiredTest.blank_value()
[TestClass] Test :
org.apache.tapestry5.validator.RequiredTest.non_blank_value()
[TestClass] AfterMethod :
org.apache.tapestry5.ioc.test.TestBase.discardMockControl()
[TestClass]
======

[TestClass]
======
TESTCLASS: org.apache.tapestry5.dom.DOMTest
[TestClass] Test :
org.apache.tapestry5.dom.DOMTest.attribute_names_may_not_be_blank()
[TestClass] Test :
org.apache.tapestry5.dom.DOMTest.force_attributes_changes_attribute_value
()
[TestClass] Test :
org.apache.tapestry5.dom.DOMTest.dtd_with_markup()
[TestClass] Test : org.apache.tapestry5.dom.DOMTest.pop()
[TestClass] Test : org.apache.tapestry5.dom.DOMTest.is_empty()
[TestClass] Test :
org.apache.tapestry5.dom.DOMTest.document_find_root_is_match()
[TestClass] Test :
org.apache.tapestry5.dom.DOMTest.text_with_control_characters()
[TestClass] Test : org.apache.tapestry5.dom.DOMTest.move_to_top
()
[TestClass] Test :
org.apache.tapestry5.dom.DOMTest.move_an_node_into_itself()
[TestClass] Test :
org.apache.tapestry5.dom.DOMTest.get_child_markup()
[TestClass] Test :
org.apache.tapestry5.dom.DOMTest.encoding_specified()
[TestClass] Test :
org.apache.tapestry5.dom.DOMTest.force_null_for_first_attribute_is_noop
()
[TestClass] Test :
org.apache.tapestry5.dom.DOMTest.namespaced_elements()
[TestClass] Test :
org.apache.tapestry5.dom.DOMTest.document_find_no_root_element()
[TestClass] Test : org.apache.tapestry5.dom.DOMTest.wrap()
[TestClass] Test : org.apache.tapestry5.dom.DOMTest.text()
[TestClass] Test :
org.apache.tapestry5.dom.DOMTest.element_name_may_not_be_blank()
[TestClass] Test :
org.apache.tapestry5.dom.DOMTest.quote_using_apostrophes()
[TestClass] Test :
org.apache.tapestry5.dom.DOMTest.get_attributes()
[TestClass] Test :
org.apache.tapestry5.dom.DOMTest.namespace_element_without_a_prefix()
[TestClass] Test :
org.apache.tapestry5.dom.DOMTest.defaults_for_xml_defined_namespaces()
[TestClass] Test :
org.apache.tapestry5.dom.DOMTest.writef_with_text()
[TestClass] Test :
org.apache.tapestry5.dom.DOMTest.remove_children()
[TestClass] Test : org.apache.tapestry5.dom.DOMTest.visit_order
()
[TestClass] Test :
org.apache.tapestry5.dom.DOMTest.apostrophes_are_escaped()
[TestClass] Test :
org.apache.tapestry5.dom.DOMTest.get_element_by_id()
[TestClass] Test :
org.apache.tapestry5.dom.DOMTest.specify_attributes_with_new_element()
[TestClass] Test :
org.apache.tapestry5.dom.DOMTest.cdata_in_HTML_document()
[TestClass] Test :
org.apache.tapestry5.dom.DOMTest.force_attributes_overrides_existing()
[TestClass] Test :
org.apache.tapestry5.dom.DOMTest.add_class_names()
[TestClass] Test :
org.apache.tapestry5.dom.DOMTest.nested_elements()
[TestClass] Test :
org.apache.tapestry5.dom.DOMTest.dtd_with_nullids()
[TestClass] Test :
org.apache.tapestry5.dom.DOMTest.document_find_no_match()
[TestClass] Test :
org.apache.tapestry5.dom.DOMTest.document_with_root_element_and_attributes
()
[TestClass] Test :
org.apache.tapestry5.dom.DOMTest.document_find_not_a_match()
[TestClass] Test : org.apache.tapestry5.dom.DOMTest.raw_output
()
[TestClass] Test :
org.apache.tapestry5.dom.DOMTest.remove_while_rendering()
[TestClass] Test :
org.apache.tapestry5.dom.DOMTest.move_to_bottom()
[TestClass] Test :
org.apache.tapestry5.dom.DOMTest.document_find_match()
[TestClass] Test :
org.apache.tapestry5.dom.DOMTest.to_string_on_empty_document()
[TestClass] Test :
org.apache.tapestry5.dom.DOMTest.later_updates_to_same_attribute_are_ignored
()
[TestClass] Test :
org.apache.tapestry5.dom.DOMTest.default_namespace()
[TestClass] Test :
org.apache.tapestry5.dom.DOMTest.document_with_empty_root_element()
[TestClass] Test : org.apache.tapestry5.dom.DOMTest.move_before
()
[TestClass] Test :
org.apache.tapestry5.dom.DOMTest.attribute_value_null_is_no_op()
[TestClass] Test :
org.apache.tapestry5.dom.DOMTest.empty_html_elements()
[TestClass] Test :
org.apache.tapestry5.dom.DOMTest.xml_style_empty_element()
[TestClass] Test :
org.apache.tapestry5.dom.DOMTest.cdata_in_XML_document()
[TestClass] Test :
org.apache.tapestry5.dom.DOMTest.markup_characters_inside_attributes_are_escaped
()
[TestClass] Test :
org.apache.tapestry5.dom.DOMTest.force_attributes_to_null_removes_attribute
()
[TestClass] Test : org.apache.tapestry5.dom.DOMTest.move_after
()
[TestClass] Test :
org.apache.tapestry5.dom.DOMTest.insert_element_at()
[TestClass] Test : org.apache.tapestry5.dom.DOMTest.comments()
[TestClass] AfterMethod :
org.apache.tapestry5.internal.test.InternalBaseTestCase.cleanupThread
()
[TestClass] AfterMethod :
org.apache.tapestry5.ioc.test.TestBase.discardMockControl()
[TestClass]
======

[TestClass]
======
TESTCLASS: org.apache.tapestry5.validator.MinLengthTest
[TestClass] Test :
org.apache.tapestry5.validator.MinLengthTest.long_enough()
[TestClass] Test :
org.apache.tapestry5.validator.MinLengthTest.short_value()
[TestClass] AfterMethod :
org.apache.tapestry5.internal.test.InternalBaseTestCase.cleanupThread
()
[TestClass] AfterMethod :
org.apache.tapestry5.ioc.test.TestBase.discardMockControl()
[TestClass]
======

[TestClass]
======
TESTCLASS: org.apache.tapestry5.util.DefaultPrimaryKeyEncoderTest
[TestClass] Test :
org.apache.tapestry5.util.DefaultPrimaryKeyEncoderTest.unknown_key_to_value
()
[TestClass] Test :
org.apache.tapestry5.util.DefaultPrimaryKeyEncoderTest.set_delete_false_when_nothing_yet_deleted
()
[TestClass] Test :
org.apache.tapestry5.util.DefaultPrimaryKeyEncoderTest.value_orderer_maintained
()
[TestClass] Test :
org.apache.tapestry5.util.DefaultPrimaryKeyEncoderTest.empty_encoder_has_no_values
()
[TestClass] Test :
org.apache.tapestry5.util.DefaultPrimaryKeyEncoderTest.missing_key_to_provided_object
()
[TestClass] Test :
org.apache.tapestry5.util.DefaultPrimaryKeyEncoderTest.undelete_a_value
()
[TestClass] Test :
org.apache.tapestry5.util.DefaultPrimaryKeyEncoderTest.known_key_to_value
()
[TestClass] Test :
org.apache.tapestry5.util.DefaultPrimaryKeyEncoderTest.value_to_key()
[TestClass] Test :
org.apache.tapestry5.util.DefaultPrimaryKeyEncoderTest.difference_between_get_values_and_get_all_values
()
[TestClass] Test :
org.apache.tapestry5.util.DefaultPrimaryKeyEncoderTest.extract_key_for_missing_value
()
[TestClass] Test :
org.apache.tapestry5.util.DefaultPrimaryKeyEncoderTest.keys_must_be_unique
()
[TestClass] AfterMethod :
org.apache.tapestry5.internal.test.InternalBaseTestCase.cleanupThread
()
[TestClass] AfterMethod :
org.apache.tapestry5.ioc.test.TestBase.discardMockControl()
[TestClass]
======

[TestClass]
======
TESTCLASS: org.apache.tapestry5.util.StringToEnumCoercionTest
[TestClass] Test :
org.apache.tapestry5.util.StringToEnumCoercionTest.value_not_found()
[TestClass] Test :
org.apache.tapestry5.util.StringToEnumCoercionTest.value_found()
[TestClass] Test :
org.apache.tapestry5.util.StringToEnumCoercionTest.blank_is_null()
[TestClass]
======

[TestClass]
======
TESTCLASS: org.apache.tapestry5.validator.MaxTest
[TestClass] Test :
org.apache.tapestry5.validator.MaxTest.value_too_large()
[TestClass] Test :
org.apache.tapestry5.validator.MaxTest.small_enough()
[TestClass] AfterMethod :
org.apache.tapestry5.internal.test.InternalBaseTestCase.cleanupThread
()
[TestClass] AfterMethod :
org.apache.tapestry5.ioc.test.TestBase.discardMockControl()
[TestClass]
======

[Invoker 1977026981] Invoking @BeforeTest
org.apache.tapestry5.test.SeleniumLauncher.startup(java.lang.String,
java.lang.String, int, java.lang.String, org.testng.ITestContext)
[INFO] log Logging to org.slf4j.impl.Log4jLoggerAdapter
(org.eclipse.jetty.util.log) via org.eclipse.jetty.util.log.Slf4jLog
[INFO] log jetty-7.0.0.v20091005
[WARN] log Web application not found /Users/Howard/work/t5-project/
tapestry-core/src/main/webapp
[WARN] log Failed startup of context
WebAppContext@25861086@25861086,null,/Users/Howard/work/t5-project/
tapestry-core/src/main/webapp
java.io.FileNotFoundException: /Users/Howard/work/t5-project/tapestry-
core/src/main/webapp
at org.eclipse.jetty.webapp.WebInfConfiguration.unpack
(WebInfConfiguration.java:440)
at org.eclipse.jetty.webapp.WebInfConfiguration.preConfigure
(WebInfConfiguration.java:46)
at org.eclipse.jetty.webapp.WebAppContext.doStart(WebAppContext.java:
339)
at org.eclipse.jetty.util.component.AbstractLifeCycle.start
(AbstractLifeCycle.java:55)
at org.eclipse.jetty.server.handler.HandlerWrapper.doStart
(HandlerWrapper.java:92)
at org.eclipse.jetty.server.Server.doStart(Server.java:232)
at org.eclipse.jetty.util.component.AbstractLifeCycle.start
(AbstractLifeCycle.java:55)
at org.apache.tapestry5.test.Jetty7Runner.<init>(Jetty7Runner.java:
51)
at org.apache.tapestry5.test.SeleniumLauncher.launchWebServer
(SeleniumLauncher.java:205)
at org.apache.tapestry5.test.SeleniumLauncher.startup
(SeleniumLauncher.java:140)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke
(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke
(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.testng.internal.MethodHelper.invokeMethod(MethodHelper.java:
609)
at org.testng.internal.Invoker.invokeConfigurationMethod(Invoker.java:
421)
at org.testng.internal.Invoker.invokeConfigurations(Invoker.java:158)
at org.testng.internal.Invoker.invokeConfigurations(Invoker.java:89)
at org.testng.TestRunner.beforeRun(TestRunner.java:510)
at org.testng.TestRunner.run(TestRunner.java:478)
at org.testng.SuiteRunner.runTest(SuiteRunner.java:332)
at org.testng.SuiteRunner.runSequentially(SuiteRunner.java:327)
at org.testng.SuiteRunner.privateRun(SuiteRunner.java:299)
at org.testng.SuiteRunner.run(SuiteRunner.java:204)
at org.testng.TestNG.createAndRunSuiteRunners(TestNG.java:912)
at org.testng.TestNG.runSuitesLocally(TestNG.java:876)
at org.testng.TestNG.run(TestNG.java:784)
at org.apache.maven.surefire.testng.TestNGExecutor.run
(TestNGExecutor.java:74)
at org.apache.maven.surefire.testng.TestNGXmlTestSuite.execute
(TestNGXmlTestSuite.java:92)
at org.apache.maven.surefire.Surefire.run(Surefire.java:177)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke
(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke
(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.apache.maven.surefire.booter.SurefireBooter.runSuitesInProcess
(SurefireBooter.java:345)
at org.apache.maven.surefire.booter.SurefireBooter.main
(SurefireBooter.java:1009)
[INFO] log Started SelectChann...@0.0.0.0:9999
[INFO] SeleniumServer Java: Apple Inc. 14.3-b01-101
[INFO] SeleniumServer OS: Mac OS X 10.6.2 x86_64
[INFO] SeleniumServer v1.0.1 [2697], with Core v@VERSION@ [@REVISION@]
[INFO] HttpServer Version Jetty/5.1.12
[INFO] Container Started HttpContext[/selenium-server/driver,/selenium-
server/driver]
[INFO] Container Started HttpContext[/selenium-server,/selenium-
server]
[INFO] Container Started HttpContext[/,/]
[INFO] SocketListener Started SocketListener on 0.0.0.0:4444
[INFO] Container Started org.mortbay.jetty.Server@78d23e53
[INFO] Credential Checking Resource aliases
[INFO] SeleniumDriverResourceHandler Command request:
getNewBrowserSession[*firefox, http://localhost:9999/, ] on session
null
[INFO] BrowserSessionFactory creating new remote session
[INFO] BrowserSessionFactory Allocated session
ee3b8486d1964f719f7de10aed91eb84 for http://localhost:9999/,
launching...
[INFO] FirefoxChromeLauncher Preparing Firefox profile...

> ...
>
> read more »

Mark Derricutt

unread,
Dec 17, 2009, 2:26:42 PM12/17/09
to testng...@googlegroups.com
One thing I was just thinking of, which I was doing myself last week
to trace a similar issue - was throw/catch/print a stacktrace in the
constructor of test. This let me see what my tests were being created
by both TestNG and several rogue factories.

It might help - or might at least give you a pointer to where in the
TestNG code you might look for some digging?


--
Pull me down under...

hls...@gmail.com

unread,
Dec 17, 2009, 2:36:44 PM12/17/09
to testng-users
I'm hoping there's something obvious here; I can't imagine I'm the
only one having this problem, and you'd think that the TestNG class
searching code would be pretty solid after all this time. So far,
though, it's looking like a bug in TestNG (or Surefire, the Maven
plugin).

Jek

unread,
Dec 17, 2009, 7:43:37 PM12/17/09
to testng-users
Hello,

As it happens, we just sorted through this problem this week. You hit
it on the head when you said that your test classes are in a jar
file. TestNG seemingly treats these different than straight up .class
files. We had the opposite problem. We moved from running out of a
Jar to .class files in a directory. All of the sudden we were missing
tests. So the fix for us was to add ".*" to our package names.
Unfortunately it's not so simple for you. One workaround is to expand
your jar and then run the tests. We were quite surprised that test
classes in a jar made a behavior difference.

-John

Cédric Beust ♔

unread,
Dec 17, 2009, 8:09:26 PM12/17/09
to testng...@googlegroups.com
Hi John, and everyone else who saw this problem.

I'd like to make sure it's a TestNG and not a Maven problem:   can you run just the command line (java org.testng.TestNg testng.xml) and tell me if you're still seeing the problem?

Thanks!

-- 
Cedric



--

You received this message because you are subscribed to the Google Groups "testng-users" group.
To post to this group, send email to testng...@googlegroups.com.
To unsubscribe from this group, send email to testng-users...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/testng-users?hl=en.





--
Cédric


hls...@gmail.com

unread,
Dec 17, 2009, 8:28:55 PM12/17/09
to testng-users
I'll try; it's tricky with this code because it builds under Maven and
has dozens of dependencies.

> > testng-users...@googlegroups.com<testng-users%2Bunsubscribe@google groups.com>


> > .
> > For more options, visit this group at
> >http://groups.google.com/group/testng-users?hl=en.
>
> --

> ***Cédric
> *

hls...@gmail.com

unread,
Dec 17, 2009, 9:03:22 PM12/17/09
to testng-users
I think it is a TestNG bug:

$ java -classpath target/classes:target/test-classes/:/Users/
Howard/.m2/repository/bouncycastle/bcprov-jdk15/135/bcprov-
jdk15-135.jar:/Users/Howard/.m2/repository/commons-codec/commons-codec/
1.3/commons-codec-1.3.jar:/Users/Howard/.m2/repository/commons-logging/
commons-logging/1.0.4/commons-logging-1.0.4.jar:/Users/Howard/.m2/
repository/javassist/javassist/3.9.0.GA/javassist-3.9.0.GA.jar:/Users/
Howard/.m2/repository/javax/mail/mail/1.4/mail-1.4.jar:/Users/
Howard/.m2/repository/javax/servlet/servlet-api/2.4/servlet-
api-2.4.jar:/Users/Howard/.m2/repository/jetty/org.mortbay.jetty/
5.1.12/org.mortbay.jetty-5.1.12.jar:/Users/Howard/.m2/repository/junit/
junit/3.8.1/junit-3.8.1.jar:/Users/Howard/.m2/repository/log4j/log4j/
1.2.14/log4j-1.2.14.jar:/Users/Howard/.m2/repository/org/antlr/antlr-
runtime/3.1.1/antlr-runtime-3.1.1.jar:/Users/Howard/.m2/repository/org/
apache/ant/ant/1.7.1/ant-1.7.1.jar:/Users/Howard/.m2/repository/org/
apache/ant/ant-launcher/1.7.1/ant-launcher-1.7.1.jar:/Users/Howard/.m2/
repository/org/apache/geronimo/specs/geronimo-jta_1.1_spec/1.1.1/
geronimo-jta_1.1_spec-1.1.1.jar:/Users/Howard/.m2/repository/org/
apache/tapestry/tapestry-ioc/5.2.0-SNAPSHOT/tapestry-ioc-5.2.0-
SNAPSHOT.jar:/Users/Howard/.m2/repository/org/apache/tapestry/tapestry-
test/5.2.0-SNAPSHOT/tapestry-test-5.2.0-SNAPSHOT.jar:/Users/Howard/.m2/
repository/org/apache/tapestry/tapestry5-annotations/5.2.0-SNAPSHOT/
tapestry5-annotations-5.2.0-SNAPSHOT.jar:/Users/Howard/.m2/repository/
org/easymock/easymock/2.4/easymock-2.4.jar:/Users/Howard/.m2/
repository/org/eclipse/jetty/jetty-continuation/7.0.0.v20091005/jetty-
continuation-7.0.0.v20091005.jar:/Users/Howard/.m2/repository/org/
eclipse/jetty/jetty-http/7.0.0.v20091005/jetty-
http-7.0.0.v20091005.jar:/Users/Howard/.m2/repository/org/eclipse/
jetty/jetty-io/7.0.0.v20091005/jetty-io-7.0.0.v20091005.jar:/Users/
Howard/.m2/repository/org/eclipse/jetty/jetty-jndi/7.0.0.v20091005/
jetty-jndi-7.0.0.v20091005.jar:/Users/Howard/.m2/repository/org/
eclipse/jetty/jetty-plus/7.0.0.v20091005/jetty-
plus-7.0.0.v20091005.jar:/Users/Howard/.m2/repository/org/eclipse/
jetty/jetty-security/7.0.0.v20091005/jetty-
security-7.0.0.v20091005.jar:/Users/Howard/.m2/repository/org/eclipse/
jetty/jetty-server/7.0.0.v20091005/jetty-server-7.0.0.v20091005.jar:/
Users/Howard/.m2/repository/org/eclipse/jetty/jetty-servlet/
7.0.0.v20091005/jetty-servlet-7.0.0.v20091005.jar:/Users/Howard/.m2/
repository/org/eclipse/jetty/jetty-util/7.0.0.v20091005/jetty-
util-7.0.0.v20091005.jar:/Users/Howard/.m2/repository/org/eclipse/
jetty/jetty-webapp/7.0.0.v20091005/jetty-webapp-7.0.0.v20091005.jar:/
Users/Howard/.m2/repository/org/eclipse/jetty/jetty-xml/
7.0.0.v20091005/jetty-xml-7.0.0.v20091005.jar:/Users/Howard/.m2/
repository/org/seleniumhq/selenium/client-drivers/selenium-java-client-
driver/1.0.1/selenium-java-client-driver-1.0.1.jar:/Users/Howard/.m2/
repository/org/seleniumhq/selenium/core/selenium-core/1.0.1/selenium-
core-1.0.1.jar:/Users/Howard/.m2/repository/org/seleniumhq/selenium/
server/selenium-server/1.0.1/selenium-server-1.0.1.jar:/Users/
Howard/.m2/repository/org/seleniumhq/selenium/server/selenium-server-
coreless/1.0.1/selenium-server-coreless-1.0.1.jar:/Users/Howard/.m2/
repository/org/slf4j/slf4j-api/1.5.2/slf4j-api-1.5.2.jar:/Users/
Howard/.m2/repository/org/slf4j/slf4j-log4j12/1.5.2/slf4j-
log4j12-1.5.2.jar:/Users/Howard/.m2/repository/org/testng/testng/5.10/
testng-5.10-jdk15.jar org.testng.TestNG src/test/conf/testng.xml
[Parser] Running:
/Users/Howard/work/t5-project/tapestry-core/src/test/conf/testng.xml

tapestry5/urlrewriter
[PackageUtils] Found class RewriteRuleApplicability, seeing it if it's
included or excluded
[PackageUtils] ... Including class RewriteRuleApplicability
[PackageUtils] Found class SimpleRequestWrapper, seeing it if it's
included or excluded
[PackageUtils] ... Including class SimpleRequestWrapper
[PackageUtils] Found class URLRewriteContext, seeing it if it's
included or excluded
[PackageUtils] ... Including class URLRewriteContext
[PackageUtils] Found class URLRewriterRule, seeing it if it's included
or excluded
[PackageUtils] ... Including class URLRewriterRule
[PackageUtils] Looking for test classes in the directory: /Users/
Howard/work/t5-project/tapestry-core/target/test-classes/org/apache/
tapestry5/urlrewriter
[PackageUtils] Found class IntegrationTests, seeing it if it's
included or excluded
[PackageUtils] ... Including class IntegrationTests
[PackageUtils] Found class SimpleRequestWrapperTest, seeing it if it's
included or excluded
[PackageUtils] ... Including class SimpleRequestWrapperTest
[PackageUtils] Looking for test classes in the directory: /Users/
Howard/work/t5-project/tapestry-core/target/classes/org/apache/

tapestry5/validator
[PackageUtils] Found class AbstractValidator, seeing it if it's
included or excluded
[PackageUtils] ... Including class AbstractValidator
[PackageUtils] Found class Email, seeing it if it's included or
excluded
[PackageUtils] ... Including class Email
[PackageUtils] Found class Max, seeing it if it's included or excluded
[PackageUtils] ... Including class Max
[PackageUtils] Found class MaxLength, seeing it if it's included or
excluded
[PackageUtils] ... Including class MaxLength
[PackageUtils] Found class Min, seeing it if it's included or excluded
[PackageUtils] ... Including class Min
[PackageUtils] Found class MinLength, seeing it if it's included or
excluded
[PackageUtils] ... Including class MinLength
[PackageUtils] Found class Regexp, seeing it if it's included or
excluded
[PackageUtils] ... Including class Regexp
[PackageUtils] Found class Required, seeing it if it's included or
excluded
[PackageUtils] ... Including class Required

[PackageUtils] Looking for test classes in the directory: /Users/
Howard/work/t5-project/tapestry-core/target/test-classes/org/apache/
tapestry5/validator
[PackageUtils] Found class EmailTest, seeing it if it's included or
excluded
[PackageUtils] ... Including class EmailTest
[PackageUtils] Found class MaxLengthTest, seeing it if it's included
or excluded
[PackageUtils] ... Including class MaxLengthTest
[PackageUtils] Found class MaxTest, seeing it if it's included or
excluded
[PackageUtils] ... Including class MaxTest
[PackageUtils] Found class MinLengthTest, seeing it if it's included
or excluded
[PackageUtils] ... Including class MinLengthTest
[PackageUtils] Found class MinTest, seeing it if it's included or
excluded
[PackageUtils] ... Including class MinTest
[PackageUtils] Found class RegexpTest, seeing it if it's included or
excluded
[PackageUtils] ... Including class RegexpTest
[PackageUtils] Found class RequiredTest, seeing it if it's included or
excluded
[PackageUtils] ... Including class RequiredTest

[TestRunner] Running the tests in 'Public APIs' with parallel
mode:false
[RunInfo] Adding method selector:

org.testng.internal.XmlMethodSelector@52cc95d priority: 10


[[Utils]] Unable to open class

[[Utils]] Unable to open class org.apache.tapestry5..ContentTypeTest -
unable to resolve class reference org/apache/tapestry5//
ContentTypeTest (wrong name: org/apache/tapestry5/ContentTypeTest)
[[Utils]] Unable to open class org.apache.tapestry5..FieldComponent -
unable to resolve class reference org/apache/tapestry5//FieldComponent
(wrong name: org/apache/tapestry5/FieldComponent)
[[Utils]] Unable to open class org.apache.tapestry5..MarkupUtilsTest -
unable to resolve class reference org/apache/tapestry5//
MarkupUtilsTest (wrong name: org/apache/tapestry5/MarkupUtilsTest)
[[Utils]] Unable to open class org.apache.tapestry5..Stooge - unable
to resolve class reference org/apache/tapestry5//Stooge (wrong name:
org/apache/tapestry5/Stooge)
[[Utils]] Unable to open class
org.apache.tapestry5..ValidationTrackerImplTest - unable to resolve
class reference org/apache/tapestry5//ValidationTrackerImplTest (wrong
name: org/apache/tapestry5/ValidationTrackerImplTest)
[[Utils]] Unable to open class org.apache.tapestry5..VersionUtilsTest
- unable to resolve class reference org/apache/tapestry5//
VersionUtilsTest (wrong name: org/apache/tapestry5/VersionUtilsTest)

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.test.TestBase$ThreadLocalControl no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.services.ServiceOverrideImpl$1 no
TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.dom.DOMTest$1 no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.PropertyAccessImpl no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.services.ConstantInjectorImpl no
TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.validator.MaxLength no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.services.MethodIterator$1 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.services.TapestryModule$8 no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.ScopeConstants no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.ioc.services.ClassNameLocator no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.services.PageRenderRequestFilter no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.JustInTimeObjectCreator no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.services.ContextProvider no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.ioc.annotations.Local no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.AbstractServiceInstrumenter no
TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$25 no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.ModuleImpl$1 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.services.ResourceSymbolProvider no
TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.PerthreadManagerImpl no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.services.ContextPathEncoder no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.AssetSource no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.IOCConstants no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.services.PipelineBuilderImpl no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.ioc.ServiceLifecycle2 no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.dom.EndTagStyle no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.services.StrategyBuilderImpl no
TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ExceptionReporter no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.internal.ObjectCreatorSource no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.MessageFormatter no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.ioc.ObjectProvider no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.ClassFactoryClassPool no
TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$10 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.ServiceAdvisorImpl no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.services.Ajax no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.ioc.services.ApplicationDefaults no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.InternalUtils no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.util.ResponseWrapper no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.PerThreadOperationTracker$1 no
TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.MarkupWriterFactory no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.services.BeanValidationContext no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.PropertyAccess no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.json.JSONTokener no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$30 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.services.TapestryIOCModule$3 no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.BindingFactory no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.services.CoercionTuple$CoercionWrapper no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.util.InternalUtils$1 no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.ServiceActivity no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.validator.Max no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.FilterMethodAnalyzer no
TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.PropertyShadowBuilder no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.urlrewriter.SimpleRequestWrapper no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.RequestFilter no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.ClasspathResourceSymbolProvider
no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.services.SyncCostBench$Worker no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.services.NonParallelExecutor$1 no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.test.Jetty7Runner no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ComponentClassTransformWorker no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.json.JSONObjectTest$1 no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.JDKUtils no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.services.ComponentRequestFilter no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.OrderedConfiguration no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.IdMatcher no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.MethodFilter no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.services.RequestHandler no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.services.TapestryIOCModule$18 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.SingletonServiceLifecycle no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.services.MethodInfo no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.validator.Required no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.ModuleImpl$6$1 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.ioc.services.ChainBuilder no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.RegistryImpl$2 no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.annotations.NotLazy no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.ThunkCreator no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.validator.Email no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$13 no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.ParallelExecutor no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.services.ExceptionAnalyzerImpl no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.services.MarkupRendererFilter no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.AbstractInvocation no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.test.RandomDataSource no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.services.ComponentEventRequestParameters no
TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.RegistryImpl$8 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.validator.Regexp no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.services.TapestryIOCModule$9 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.ioc.internal.util.InjectionResources no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.util.InternalUtils$4 no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ApplicationStatePersistenceStrategy no
TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.RegistryShutdownHubImpl no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.services.BeanBlockContribution no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.ObjectLocatorImpl no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.services.ApplicationStateContribution no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.PersistentFieldBundle no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.services.SymbolSourceImpl
$SymbolExpansion no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.services.MasterObjectProviderImpl$1
no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.Orderable no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.ServiceAdvisor no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.ioc.annotations.UsesMappedConfiguration no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.json.JSONObject no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.ClassPropertyAdapter no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.ServiceResourcesImpl no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.dom.Element$1$1 no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.ServiceBinder no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.runtime.PageLifecycleListener no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.IdToDependencyNode no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.PerThreadOperationTracker no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.ServiceActivityTrackerImpl no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.ioc.Location no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.services.ClassPropertyAdapterImpl no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.services.BeanEditContext no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.util.ConcurrentBarrier$1 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.ioc.services.ServiceActivityScoreboard no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.SessionPersistedObjectAnalyzer no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.services.SyncCostBench$BlockRunner no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.services.TapestryModule$4 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.services.TapestryIOCModule$4 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.services.TapestryModule$26 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.services.PerthreadManagerImpl
$MapHolder no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.InternalUtils$5 no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.validator.MinLength no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.BaseLocatable no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.SyncCostBench$ReadWriteLockAspectRunner
no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.EnvironmentalShadowBuilder no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.services.TapestryModule$29 no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.AdvisorDef no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.util.PublicUtilMessages no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.services.TapestryModule$39 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.services.LazyAdvisorImpl$1$1 no
TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ValueEncoderFactory no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.util.CaseInsensitiveMap$1 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.services.ExceptionInfoImpl no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.services.AbstractFab no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.util.TimeInterval no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.def.ModuleDef no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.ModuleImpl$2 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.services.TransformConstants no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.ioc.services.DefaultImplementationBuilder no
TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.services.TapestryIOCModule$25 no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.Invokable no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.util.DummyLock no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ComponentMethodAdvice no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.services.TapestryIOCModule no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.Orderer$1 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.services.ApplicationInitializerFilter no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.services.RequestExceptionHandler no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.test.ErrorReporter no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.util.StringToEnumCoercion no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.ModuleImpl$3 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.ServiceBinderImpl$2$1 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.services.BeanBlockSource no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.ParallelExecutorImpl$1 no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.util.DelegatingInjectionResources no
TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.runtime.RenderCommand no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.ioc.ServiceBindingOptions no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.services.TapestryModule$24 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.ioc.annotations.PreventServiceDecoration no
TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.RegistryImpl$3 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.ioc.internal.ServiceDefAccumulator no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.ServiceLifecycle no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.OrderedConfigurationOverride no
TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.PageRenderRequestParameters no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.services.CoercionTuple no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.PersistentFieldChange no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.MasterObjectProvider no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.json.JSONLiteral no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.annotations.Match no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.ModuleImpl$8 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.ioc.ModuleBuilderSource no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.json.JSONString no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.ValidatingOrderedConfigurationWrapper
no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.services.PropertyShadowBuilderImpl
no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.services.TapestryIOCModule$15 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.ioc.services.ExceptionAnalysis no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.services.MetaDataLocator no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.runtime.RenderQueue no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.ioc.ServiceResources no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$27 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.services.Core no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.runtime.Component no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.services.MethodLogger no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.OperationTrackerImpl no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.StrategyBuilder no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.services.HiddenFieldLocationRules no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.util.AbstractMessages$2 no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.PropertyOutputContext no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.LoggerSource no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.services.TypeCoercerImpl no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$35 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.services.UpdateListenerHub no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.util.Stack no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.ServiceDecorator no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.ioc.services.LoggingDecorator no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.test.MockTester$1 no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.annotations.Marker no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.AdvisorDefImpl no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.RecursiveServiceCreationCheckWrapper
no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.PropertyConduitSource no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.FactoryDefaults no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.internal.EagerLoadServiceProxy no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.Resource no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.services.TapestryIOCModule$8 no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.LinkCreationHub no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.ExceptionAnalyzer no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.services.TapestryModule$15 no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.ClassFactoryImpl no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.ioc.services.PipelineBuilder no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.util.MessagesImpl no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.TapestryException no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.Configuration no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ComponentEventRequestFilter no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.OperationTrackingObjectCreator no
TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.ParallelExecutorImpl$2 no
TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.ExceptionTracker no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.InterceptorStackBuilder$1 no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.ExceptionInfo no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.services.RegistryStartup no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.services.TapestryModule
$ServletApplicationInitializerTerminator no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.Cookies no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.services.TapestryModule$34 no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS class org.apache.tapestry5.dom.Node
no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.ServiceLifecycleSource no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.AnnotationProvider no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.dom.DomMessages no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.CtClassSourceImpl no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.ConfigurationType no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class org.apache.tapestry5.dom.Raw
no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.DefaultModuleDefImpl no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.ioc.ObjectCreator no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.validator.AbstractValidator no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ServletApplicationInitializerFilter no
TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ServletApplicationInitializer no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.services.LoggingAdvisorImpl no
TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.beaneditor.ReorderProperties no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.IOCMessages no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.services.TapestryIOCModule$14 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.ioc.services.AspectInterceptorBuilder no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.BaseURLSource no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.def.ServiceDef2 no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.OperationTrackingObjectCreator$1 no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.services.TapestryModule
$ApplicationInitializerTerminator no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.util.BodyBuilder no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.IOCUtilities no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.test.MockTester no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ClientBehaviorSupport no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.services.TapestryIOCModule$23 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.services.Environment no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.ioc.annotations.Symbol no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.ioc.annotations.UsesOrderedConfiguration no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.validator.Min no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.services.ComponentTemplates no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$RequestHandlerTerminator
no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.AdvisorStackBuilder$1 no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.LifecycleWrappedServiceCreator no
TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.beaneditor.Width no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.SyncCostBench$ReadWriteLockRunner no
TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.annotations.InjectService no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.Alias no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.FieldFilter no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.InternalUtils$3 no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.PropertyEditContext no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.services.TapestryModule$1 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.ioc.def.DecoratorDef no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.Context no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.services.ChainBuilderImpl no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.beaneditor.DataType no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.MarkupRenderer no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.services.TapestryIOCModule$2 no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.PerthreadManager no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.SyncCostBench$SimpleRunner no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.util.DefaultPrimaryKeyEncoderTest$1 no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.internal.util.Orderer$DependencyLinker no
TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.RegistryImpl$1 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.ioc.annotations.ServiceId no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.services.TapestryIOCModule$17 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.ServiceDefImpl no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.urlrewriter.URLRewriteContext no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.Response no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.services.StackTraceElementClassConstants no
TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.JustInTimeObjectCreator$1
no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.URLEncoder no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.services.TapestryModule$3 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.services.TapestryIOCModule$6 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.dom.MapHolder no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.util.AbstractMessages no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.LazyAdvisorImpl no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$9 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.IdMatcherImpl no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.FieldTranslatorSource no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.runtime.ComponentEvent no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.util.Transformer no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.services.Traditional no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.HttpServletRequestHandler no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.services.TapestryModule$5 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.services.AssetPathConverter no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.Locatable no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.util.DefaultPrimaryKeyEncoder no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.services.TapestryModule$2 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.util.ConcurrentBarrier$2 no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.ThreadCleanupListener no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.test.TapestryTestConstants no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.services.LoggingAdvice no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.IdToDependencyNode$1 no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.Coercion no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.annotations.Primary no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.InternalUtils$2 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.ioc.services.RegistryShutdownListener no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.CollectionFactory no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.util.FindTheParameterizedType no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.IdAllocator$NameGenerator no
TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.test.ErrorReportingCommandProcessor no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ComponentSource no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.AdvisedMethodInvocationBuilder
no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.TypeCoercer no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.util.CaseInsensitiveMap$CIMEntry no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.test.MockTester$ThreadLocalControl no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.services.ClasspathAssetAliasManager no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.GlobPatternMatcher no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.annotations.Autobuild no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ValidationConstraintGenerator no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ClasspathProvider no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.ioc.Registry no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.ServiceResourcesImpl$4 no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.PerThreadServiceLifecycle
no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.OrIdMatcher no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.dom.Visitor no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.util.ConcurrentBarrier$ThreadBoolean
no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.services.TapestryModule$20 no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.beaneditor.RelativePosition no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.ServiceBuilderMethodInvoker no
TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.util.ExceptionUtils no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ObjectRenderer no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.LinkCreationListener no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.services.ClientDataEncoder no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.services.CachingObjectCreator no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.ServiceResourcesImpl$1 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.services.ClientDataSink no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.runtime.ComponentEventException no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.Heartbeat no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.AbstractMethodInvokingInstrumenter
no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ComponentClassResolver no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class org.apache.tapestry5.dom.DTD
no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.services.TapestryIOCModule$1 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.dom.Comment no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.services.PropertyAdapterImpl no
TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.annotations.Value no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.OperationTrackerImpl$1 no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.EnvironmentalAccess no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.annotations.IntermediateType no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.AutobuildObjectProvider no
TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$11 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.json.JSONArray no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ValueEncoderSource no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.MapSymbolProvider no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.services.ClassFabUtils no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ComponentLayer no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.ServiceOverride no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.Session no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.NullAnnotationProvider no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.services.TapestryModule$33 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.services.AliasManager no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.MethodAdvice no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.ServiceResourcesImpl$3 no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.util.EnumValueEncoder no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.services.TransformUtils$PrimitiveTypeInfo no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.services.UpdateListener no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.util.InternalUtils$7 no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.AbstractResource no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.ioc.services.ThreadLocale no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.services.AspectDecoratorImpl$1 no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.util.GenericsUtils no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.services.ComponentEventLinkEncoder no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.ioc.services.SymbolSource no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ApplicationGlobals no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.ioc.ObjectLocator no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.ioc.internal.services.CtClassSource no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.util.InheritanceSearch$1 no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.BindingSource no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.LibraryMapping no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.services.TapestryModule$16 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.ModuleImpl$7 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.services.TapestryModule$23 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.ioc.services.LazyAdvisor no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.util.Defense no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.annotations.SubModule no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ApplicationStateManager no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.ModuleImpl$6 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.ConstructorServiceCreator no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.ioc.MappedConfiguration no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.services.SyncCostBench no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$6 no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.DefaultImplementationBuilderImpl
no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.services.TapestryIOCModule$21 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.services.SystemPropertiesSymbolProvider
no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.test.SeleniumLauncher$1 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.services.TapestryModule$21 no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.InheritanceSearch$State no
TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$37 no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.AbstractServiceCreator$2 no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.ServiceResourcesImpl$2 no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.InternalUtils$8 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.services.TapestryModule$14 no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.MessageFormatterImpl no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ClassTransformation no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.util.LocationImpl no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.util.AbstractMessages$1 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.AbstractServiceCreator no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.MasterObjectProviderImpl no
TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.SymbolProvider no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.dom.Attribute no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.PageRenderRequestHandler no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.ModuleImpl$4 no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.FieldValidatorDefaultSource no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.def.ContributionDef no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.services.TapestryIOCModule$10 no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.ExceptionTrackerImpl no
TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ComponentDefaultProvider no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.services.TapestryIOCModule$16 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.services.PageDocumentGenerator no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.ioc.Messages no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.RegistryImpl$5 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.util.UppercaseTransformer no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.AssetFactory no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ComponentMethodInvocation no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.services.PerThreadServiceCreator no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.dom.Element$1 no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.util.DefaultPrimaryKeyEncoderTest
$IntStringEncoder no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.annotations.InjectResource no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.ioc.OperationTracker no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.RegistryImpl$6 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.services.HttpServletRequestFilter no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.InvalidationEventHub no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.services.ClassNameLocatorImpl no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.ioc.annotations.UsesConfiguration no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.services.TapestryModule
$HttpServletRequestHandlerTerminator no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.ServiceBinderImpl$1 no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.internal.ServiceProxyProvider no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.services.TapestryModule$7 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.services.TapestryModule$31 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.services.ServiceMessages no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.ioc.annotations.UseWith no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.services.SymbolObjectProvider no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.ioc.internal.Module no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.services.ResourceDigestGenerator no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.IdToDependencyNode$2 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.services.SyncCostBench$SynchronizedRunner no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.services.TypeCoercerImpl
$TargetCoercion no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.ConcurrentBarrier no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.ServiceBuilder no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ApplicationInitializer no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.ServiceActivityTrackerImpl
$MutableServiceActivity no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.services.ParallelExecutorImpl no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.services.ClientInfrastructure no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.Builtin no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.ClassFabImpl no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.RegistryBuilder no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.IOCSymbols no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$12 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.OperationException no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.FormSupport no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.ioc.services.ClasspathURLConverter no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.services.TapestryIOCModule$27 no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.util.AbstractSelectModel no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.LoggingAdvisor no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.AspectDecorator no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.util.IdAllocator no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.ioc.MethodAdviceReceiver no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.DataTypeAnalyzer no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.ModuleImpl no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.internal.util.IdToDependencyNode
$DependencyLinker no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.RegistryImpl$9 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.services.ClassFabUtils$PrimitiveInfo no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.util.InternalUtils$6 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.RegistryImpl$4 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.util.InternalUtils$9 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.AbstractServiceCreator$1 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.services.TapestryIOCModule$28 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.services.TapestryModule$28 no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ComponentClasses no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.InjectionProvider no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.services.AspectInterceptorBuilderImpl
no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.services.MethodIterator no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.services.TapestryIOCModule$20 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.util.IdentifyTransformer no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.AdvisorStackBuilder no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.util.TextStreamResponse no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.services.PerthreadManagerImpl$1 no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.ioc.annotations.Scope no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ResponseRenderer no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.def.ModuleDef2 no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ComponentRequestHandler no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.runtime.Event no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.services.ResponseCompressionAnalyzer no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.DecoratorDefImpl no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.PropertyAdapter no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.RequestGlobals no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.DefaultModuleDefImpl$1 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.services.BridgeBuilder no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.util.UtilMessages no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.services.ValidationMessagesSource no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.services.AssetPathAuthorizer$Order no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.services.LocalizationSetter no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.OneShotLock no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.services.TapestryIOCModule$12 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.RegistryImpl no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.dom.CData no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.ioc.services.ClassFactory no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ComponentMessages no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.dom.DefaultMarkupModel no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.urlrewriter.URLRewriterRule no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.services.ApplicationStateCreator no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.LoggerSourceImpl no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$22 no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.RelativeElementPosition no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.util.CaseInsensitiveMap no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.URLRewriter no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.dom.MarkupModel no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.services.ExceptionAnalysisImpl no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.services.TransformMethodSignature no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.ioc.annotations.Order no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.services.ClassFactoryClassPool$1 no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.ValidatingMappedConfigurationWrapper
no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.services.TapestryIOCModule$5 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.util.Orderer no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.services.Status no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.beaneditor.NonVisual no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.util.WrongConfigurationTypeGuard no
TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class org.apache.tapestry5.dom.Text
no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.BeanModelSource no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.NullFieldStrategySource no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.OrderConstraintBuilder no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.services.TapestryIOCModule$11 no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$17$1 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.services.PartialMarkupRenderer no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.services.PersistentFieldStrategy no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.util.InheritanceSearch no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.annotations.AnnotationUseContext no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.services.ApplicationStatePersistenceStrategySource
no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.dom.Element no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.FieldValidatorSource no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.services.ClassFab no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.ServiceProxyToken no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.ioc.internal.ServiceActivityTracker no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.services.TapestryIOCModule$19 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.ServiceBinderImpl$2 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.ioc.services.RegistryShutdownHub no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.services.TapestryIOCModule$26 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.test.ErrorReporterImpl no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.services.TransformUtils no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.ModuleImpl$5 no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.AccessableObjectAnnotationProvider
no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.test.JettyRunner no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.services.DelegatingRequest no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.util.EnumSelectModel no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.LoggingDecoratorImpl no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.services.TypeCoercerImpl$1 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.services.AssetPathAuthorizer no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.services.ThunkCreatorImpl no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.Dispatcher no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.ContextValueEncoder no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.services.ComponentEventRequestHandler no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.annotations.Inject no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.AspectDecoratorImpl no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.util.CaseInsensitiveMap$EntrySetIterator no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.services.TapestryModule$19 no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$32 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.ServiceBinderImpl no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.services.ValueObjectProvider no
TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.SerializationSupport no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.LocalizedNameGenerator no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.util.CaseInsensitiveMap$Position no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.internal.services.ConstantInjector no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.services.AliasContribution no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.services.SymbolSourceImpl no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.SymbolSourceImpl$1 no
TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.MapInjectionResources no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.services.TapestryModule$18 no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.services.TapestryModule$38 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.services.StackTraceElementAnalyzer no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.DefaultModuleDefImpl$2 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.services.StringLocation no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.util.InternalUtils$10 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.dom.Document no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.dom.XMLMarkupModel no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.ServiceDecoratorImpl no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.services.AnnotationProviderChain no
TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.util.Orderer$2 no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.RegistryImpl$7 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.util.CaseInsensitiveMap$EntrySet no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.RegistryWrapper no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.PartialMarkupRendererFilter no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.InterceptorStackBuilder no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.dom.AbstractMarkupModel no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.ioc.annotations.PostInjection no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.services.ClassNameLocatorImpl$Queued
no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.services.ConstantInjectorImpl$1 no
TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.services.TapestryIOCModule$13 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.util.ClasspathResource no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.ValidatingConfigurationWrapper no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.services.ComponentEventResultProcessor no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.services.TranslatorSource no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.services.TapestryIOCModule$7 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.services.CompoundCoercion no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.services.TapestryModule$36 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.services.Request no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.MappedConfigurationOverride no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.services.TapestryModule$17 no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.services.ConstantInjectorImpl
$InjectedValue no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.services.LazyAdvisorImpl$1 no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.ioc.internal.InternalRegistry no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.OrderConstraint no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.ioc.Invocation no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.util.DependencyNode no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.InvalidationListener no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.services.TapestryIOCModule$24 no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.NonParallelExecutor no
TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.services.BeanBlockOverrideSource no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.json.JSONObject$Null no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.services.ClasspathURLConverterImpl
no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.util.UtilMessages no TestNG annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.internal.ContributionDefImpl no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.def.ServiceDef no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.services.PageRenderLinkSource no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.QuietOperationTracker no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.beaneditor.Validate no TestNG annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.urlrewriter.RewriteRuleApplicability no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.services.PersistentLocale no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.services.MethodSignature no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.services.TapestryIOCModule$22 no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.ThreadLocaleImpl no TestNG
annotations found
[TestNGClassFinder] SKIPPING CLASS class

org.apache.tapestry5.ioc.util.StrategyRegistry no TestNG annotations
found
[TestNGClassFinder] SKIPPING CLASS interface

org.apache.tapestry5.ioc.annotations.EagerLoad no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.runtime.ComponentResourcesAware no TestNG
annotations found

[TestNGClassFinder] SKIPPING CLASS interface
org.apache.tapestry5.ioc.ServiceBuilderResources no TestNG annotations
found

[TestNGClassFinder] SKIPPING CLASS class
org.apache.tapestry5.ioc.internal.services.ServiceOverrideImpl no
TestNG annotations found

[TestClass] Creating TestClass for [ClassImpl
org.apache.tapestry5.services.TransformUtilsTest]
[TestClass] Adding method
org.apache.tapestry5.services.TransformUtilsTest.wrapper_type_by_class
() on TestClass class org.apache.tapestry5.services.TransformUtilsTest
[TestClass] Adding method
org.apache.tapestry5.services.TransformUtilsTest.default_value() on
TestClass class org.apache.tapestry5.services.TransformUtilsTest
[TestClass] Adding method
org.apache.tapestry5.services.TransformUtilsTest.wrapper_type_by_name
() on TestClass class org.apache.tapestry5.services.TransformUtilsTest
[TestClass] Adding method
org.apache.tapestry5.services.TransformUtilsTest.is_primitive() on
TestClass class org.apache.tapestry5.services.TransformUtilsTest
[TestClass] Adding method
org.apache.tapestry5.services.TransformUtilsTest.unwrapper_method_name
() on TestClass class org.apache.tapestry5.services.TransformUtilsTest
[TestClass] Creating TestClass for [ClassImpl

org.apache.tapestry5.validator.RequiredTest]
[TestClass] Adding method
org.apache.tapestry5.validator.RequiredTest.empty_collection_value()
on TestClass class org.apache.tapestry5.validator.RequiredTest
[TestClass] Adding method
org.apache.tapestry5.validator.RequiredTest.not_empty_collection_value
() on TestClass class org.apache.tapestry5.validator.RequiredTest
[TestClass] Adding method
org.apache.tapestry5.validator.RequiredTest.null_value() on TestClass
class org.apache.tapestry5.validator.RequiredTest
[TestClass] Adding method
org.apache.tapestry5.validator.RequiredTest.blank_value() on TestClass
class org.apache.tapestry5.validator.RequiredTest
[TestClass] Adding method
org.apache.tapestry5.validator.RequiredTest.non_blank_value() on
TestClass class org.apache.tapestry5.validator.RequiredTest
[TestClass] Creating TestClass for [ClassImpl

org.apache.tapestry5.validator.MinTest]
[TestClass] Adding method
org.apache.tapestry5.validator.MinTest.value_too_small() on TestClass
class org.apache.tapestry5.validator.MinTest
[TestClass] Adding method
org.apache.tapestry5.validator.MinTest.large_enough() on TestClass
class org.apache.tapestry5.validator.MinTest

[XmlMethodSelector] Including method
org.apache.tapestry5.internal.test.setup_registry()
[XmlMethodSelector] Including method
org.apache.tapestry5.internal.test.shutdown_registry()
[XmlMethodSelector] Including method
org.apache.tapestry5.internal.test.cleanupThread()
[MethodInheritance]
org.apache.tapestry5.ioc.test.TestBase.discardMockControl() DEPENDS ON
org.apache.tapestry5.internal.test.InternalBaseTestCase.cleanupThread
()
[TestClass] Creating TestClass for [ClassImpl

org.apache.tapestry5.urlrewriter.SimpleRequestWrapperTest]
[TestClass] Adding method
org.apache.tapestry5.urlrewriter.SimpleRequestWrapperTest.constructor_without_servername
() on TestClass class
org.apache.tapestry5.urlrewriter.SimpleRequestWrapperTest
[TestClass] Adding method
org.apache.tapestry5.urlrewriter.SimpleRequestWrapperTest.constructor_with_servername
() on TestClass class
org.apache.tapestry5.urlrewriter.SimpleRequestWrapperTest
[TestClass] Adding method
org.apache.tapestry5.urlrewriter.SimpleRequestWrapperTest.constructor_and_nulls
() on TestClass class
org.apache.tapestry5.urlrewriter.SimpleRequestWrapperTest
[TestClass] Adding method
org.apache.tapestry5.urlrewriter.SimpleRequestWrapperTest.delegating_methods
() on TestClass class
org.apache.tapestry5.urlrewriter.SimpleRequestWrapperTest
[TestClass] Creating TestClass for [ClassImpl

org.apache.tapestry5.validator.MaxTest]
[TestClass] Adding method
org.apache.tapestry5.validator.MaxTest.value_too_large() on TestClass
class org.apache.tapestry5.validator.MaxTest
[TestClass] Adding method
org.apache.tapestry5.validator.MaxTest.small_enough() on TestClass
class org.apache.tapestry5.validator.MaxTest
[MethodInheritance]
org.apache.tapestry5.ioc.test.TestBase.discardMockControl() DEPENDS ON
org.apache.tapestry5.internal.test.InternalBaseTestCase.cleanupThread
()

org.apache.tapestry5.ioc.test.IOCTestCase]
[TestClass] Creating TestClass for [ClassImpl
org.apache.tapestry5.test.SeleniumTestCase]
[XmlMethodSelector] Including method org.apache.tapestry5.test.setup()
[XmlMethodSelector] Including method org.apache.tapestry5.test.cleanup
()
[XmlMethodSelector] Including method
org.apache.tapestry5.test.indicateTestMethodName()
[XmlMethodSelector] Including method
org.apache.tapestry5.test.cleanupTestMethod()
[TestClass] Creating TestClass for [ClassImpl

org.apache.tapestry5.validator.MaxLengthTest]
[TestClass] Adding method
org.apache.tapestry5.validator.MaxLengthTest.long_value() on TestClass
class org.apache.tapestry5.validator.MaxLengthTest
[TestClass] Adding method
org.apache.tapestry5.validator.MaxLengthTest.short_enough() on
TestClass class org.apache.tapestry5.validator.MaxLengthTest
[MethodInheritance]
org.apache.tapestry5.ioc.test.TestBase.discardMockControl() DEPENDS ON
org.apache.tapestry5.internal.test.InternalBaseTestCase.cleanupThread
()
[TestClass] Creating TestClass for [ClassImpl

org.apache.tapestry5.services.AliasContributionTest]
[TestClass] Adding method
org.apache.tapestry5.services.AliasContributionTest.to_string() on
TestClass class org.apache.tapestry5.services.AliasContributionTest
[TestClass] Adding method
org.apache.tapestry5.services.AliasContributionTest.default_for_mode()
on TestClass class org.apache.tapestry5.services.AliasContributionTest
[TestClass] Adding method
org.apache.tapestry5.services.AliasContributionTest.specific_mode() on
TestClass class org.apache.tapestry5.services.AliasContributionTest
[TestClass] Creating TestClass for [ClassImpl

org.apache.tapestry5.test.SeleniumLauncher]
[XmlMethodSelector] Including method org.apache.tapestry5.test.startup
()
[TestClass] Creating TestClass for [ClassImpl

org.apache.tapestry5.ioc.internal.IOCInternalTestCase]
[XmlMethodSelector] Including method
org.apache.tapestry5.ioc.internal.setup_registry()
[XmlMethodSelector] Including method
org.apache.tapestry5.ioc.internal.shutdown_registry()
[XmlMethodSelector] Including method
org.apache.tapestry5.ioc.internal.cleanupThread()
[MethodInheritance]
org.apache.tapestry5.ioc.test.TestBase.discardMockControl() DEPENDS ON
org.apache.tapestry5.ioc.internal.IOCInternalTestCase.cleanupThread()
[TestClass] Creating TestClass for [ClassImpl

org.apache.tapestry5.validator.MinLengthTest]
[TestClass] Adding method
org.apache.tapestry5.validator.MinLengthTest.long_enough() on
TestClass class org.apache.tapestry5.validator.MinLengthTest
[TestClass] Adding method
org.apache.tapestry5.validator.MinLengthTest.short_value() on
TestClass class org.apache.tapestry5.validator.MinLengthTest
[MethodInheritance]
org.apache.tapestry5.ioc.test.TestBase.discardMockControl() DEPENDS ON
org.apache.tapestry5.internal.test.InternalBaseTestCase.cleanupThread
()
[TestClass] Creating TestClass for [ClassImpl

org.apache.tapestry5.ioc.test.TestBase]
[TestClass] Creating TestClass for [ClassImpl

org.apache.tapestry5.urlrewriter.IntegrationTests]
[TestClass] Adding method
org.apache.tapestry5.urlrewriter.IntegrationTests.test_url_rewriter_without_virtual_host
() on TestClass class
org.apache.tapestry5.urlrewriter.IntegrationTests
[TestClass] Adding method
org.apache.tapestry5.urlrewriter.IntegrationTests.test_link_rewriting_without_virtual_host
() on TestClass class
org.apache.tapestry5.urlrewriter.IntegrationTests
[TestClass] Adding method
org.apache.tapestry5.urlrewriter.IntegrationTests.test_url_rewriter_using_context
() on TestClass class
org.apache.tapestry5.urlrewriter.IntegrationTests
[TestClass] Creating TestClass for [ClassImpl

org.apache.tapestry5.test.AbstractIntegrationTestSuite]
[TestClass] Creating TestClass for [ClassImpl

org.apache.tapestry5.util.StringToEnumCoercionTest]
[TestClass] Adding method
org.apache.tapestry5.util.StringToEnumCoercionTest.value_not_found()
on TestClass class org.apache.tapestry5.util.StringToEnumCoercionTest
[TestClass] Adding method
org.apache.tapestry5.util.StringToEnumCoercionTest.value_found() on
TestClass class org.apache.tapestry5.util.StringToEnumCoercionTest
[TestClass] Adding method
org.apache.tapestry5.util.StringToEnumCoercionTest.blank_is_null() on
TestClass class org.apache.tapestry5.util.StringToEnumCoercionTest
[TestClass] Creating TestClass for [ClassImpl

org.apache.tapestry5.util.EnumSelectModelTest]
[TestClass] Adding method
org.apache.tapestry5.util.EnumSelectModelTest.generated_labels() on
TestClass class org.apache.tapestry5.util.EnumSelectModelTest
[TestClass] Adding method
org.apache.tapestry5.util.EnumSelectModelTest.prefixed_name_in_message_catalog
() on TestClass class org.apache.tapestry5.util.EnumSelectModelTest
[TestClass] Adding method
org.apache.tapestry5.util.EnumSelectModelTest.unprefixed_name_in_message_catalog
() on TestClass class org.apache.tapestry5.util.EnumSelectModelTest
[TestClass] Creating TestClass for [ClassImpl

org.apache.tapestry5.validator.EmailTest]
[TestClass] Adding method
org.apache.tapestry5.validator.EmailTest.input_mismatch() on TestClass
class org.apache.tapestry5.validator.EmailTest
[TestClass] Adding method
org.apache.tapestry5.validator.EmailTest.matching_pattern() on
TestClass class org.apache.tapestry5.validator.EmailTest
[MethodInheritance]
org.apache.tapestry5.ioc.test.TestBase.discardMockControl() DEPENDS ON
org.apache.tapestry5.internal.test.InternalBaseTestCase.cleanupThread
()
[TestClass] Creating TestClass for [ClassImpl

org.apache.tapestry5.validator.RegexpTest]
[TestClass] Adding method
org.apache.tapestry5.validator.RegexpTest.input_mismatch() on
TestClass class org.apache.tapestry5.validator.RegexpTest
[TestClass] Adding method
org.apache.tapestry5.validator.RegexpTest.matching_pattern() on
TestClass class org.apache.tapestry5.validator.RegexpTest

[MethodInheritance]
org.apache.tapestry5.ioc.test.TestBase.discardMockControl() DEPENDS ON
org.apache.tapestry5.internal.test.InternalBaseTestCase.cleanupThread
()
[XmlMethodSelector] Including method

org.apache.tapestry5.services.wrapper_type_by_class()
[XmlMethodSelector] Including method
org.apache.tapestry5.services.default_value()
[XmlMethodSelector] Including method
org.apache.tapestry5.services.wrapper_type_by_name()
[XmlMethodSelector] Including method
org.apache.tapestry5.services.is_primitive()
[XmlMethodSelector] Including method
org.apache.tapestry5.services.unwrapper_method_name()
[XmlMethodSelector] Including method

org.apache.tapestry5.validator.empty_collection_value()
[XmlMethodSelector] Including method
org.apache.tapestry5.validator.not_empty_collection_value()
[XmlMethodSelector] Including method
org.apache.tapestry5.validator.null_value()
[XmlMethodSelector] Including method
org.apache.tapestry5.validator.blank_value()
[XmlMethodSelector] Including method
org.apache.tapestry5.validator.non_blank_value()
[XmlMethodSelector] Including method

org.apache.tapestry5.validator.value_too_small()
[XmlMethodSelector] Including method
org.apache.tapestry5.validator.large_enough()
[XmlMethodSelector] Including method
org.apache.tapestry5.urlrewriter.constructor_without_servername()
[XmlMethodSelector] Including method
org.apache.tapestry5.urlrewriter.constructor_with_servername()
[XmlMethodSelector] Including method
org.apache.tapestry5.urlrewriter.constructor_and_nulls()
[XmlMethodSelector] Including method
org.apache.tapestry5.urlrewriter.delegating_methods()
[XmlMethodSelector] Including method

org.apache.tapestry5.services.short_constructor()
[XmlMethodSelector] Including method
org.apache.tapestry5.services.sorting()
[XmlMethodSelector] Including method
org.apache.tapestry5.services.package_private_toString()
[XmlMethodSelector] Including method
org.apache.tapestry5.services.signature_toString()
[XmlMethodSelector] Including method
org.apache.tapestry5.services.medium_description()
[XmlMethodSelector] Including method
org.apache.tapestry5.services.getters()
[XmlMethodSelector] Including method
org.apache.tapestry5.services.hash_code_and_equals()
[XmlMethodSelector] Including method
org.apache.tapestry5.services.null_value_for_parameters_and_exceptions
()
[XmlMethodSelector] Including method

org.apache.tapestry5.validator.value_too_large()
[XmlMethodSelector] Including method
org.apache.tapestry5.validator.small_enough()

[XmlMethodSelector] Including method
org.apache.tapestry5.util.unknown_key_to_value()
[XmlMethodSelector] Including method
org.apache.tapestry5.util.set_delete_false_when_nothing_yet_deleted()
[XmlMethodSelector] Including method
org.apache.tapestry5.util.value_orderer_maintained()
[XmlMethodSelector] Including method
org.apache.tapestry5.util.empty_encoder_has_no_values()
[XmlMethodSelector] Including method
org.apache.tapestry5.util.missing_key_to_provided_object()
[XmlMethodSelector] Including method
org.apache.tapestry5.util.undelete_a_value()
[XmlMethodSelector] Including method
org.apache.tapestry5.util.known_key_to_value()
[XmlMethodSelector] Including method
org.apache.tapestry5.util.value_to_key()
[XmlMethodSelector] Including method
org.apache.tapestry5.util.difference_between_get_values_and_get_all_values
()
[XmlMethodSelector] Including method
org.apache.tapestry5.util.extract_key_for_missing_value()
[XmlMethodSelector] Including method
org.apache.tapestry5.util.keys_must_be_unique()
[XmlMethodSelector] Including method

org.apache.tapestry5.validator.long_value()
[XmlMethodSelector] Including method
org.apache.tapestry5.validator.short_enough()
[XmlMethodSelector] Including method

org.apache.tapestry5.services.to_string()
[XmlMethodSelector] Including method
org.apache.tapestry5.services.default_for_mode()
[XmlMethodSelector] Including method
org.apache.tapestry5.services.specific_mode()
[XmlMethodSelector] Including method

org.apache.tapestry5.validator.long_enough()
[XmlMethodSelector] Including method
org.apache.tapestry5.validator.short_value()
[XmlMethodSelector] Including method

org.apache.tapestry5.urlrewriter.test_url_rewriter_without_virtual_host
()
[XmlMethodSelector] Including method
org.apache.tapestry5.urlrewriter.test_link_rewriting_without_virtual_host
()
[XmlMethodSelector] Including method
org.apache.tapestry5.urlrewriter.test_url_rewriter_using_context()
[XmlMethodSelector] Including method

org.apache.tapestry5.util.value_not_found()
[XmlMethodSelector] Including method
org.apache.tapestry5.util.value_found()
[XmlMethodSelector] Including method
org.apache.tapestry5.util.blank_is_null()
[XmlMethodSelector] Including method

org.apache.tapestry5.util.generated_labels()
[XmlMethodSelector] Including method
org.apache.tapestry5.util.prefixed_name_in_message_catalog()
[XmlMethodSelector] Including method
org.apache.tapestry5.util.unprefixed_name_in_message_catalog()
[XmlMethodSelector] Including method

org.apache.tapestry5.validator.input_mismatch()
[XmlMethodSelector] Including method
org.apache.tapestry5.validator.matching_pattern()
[XmlMethodSelector] Including method

[Invoker 1611508769] Invoking @BeforeSuite


org.apache.tapestry5.internal.test.InternalBaseTestCase.setup_registry
()
[INFO] RegistryBuilder Adding module definition for class
org.apache.tapestry5.ioc.services.TapestryIOCModule
[INFO] RegistryBuilder Adding module definition for class
org.apache.tapestry5.services.TapestryModule
[INFO] RegistryBuilder Adding module definition for class
org.apache.tapestry5.internal.services.InternalModule

[Invoker 1611508769] Invoking @BeforeSuite


org.apache.tapestry5.ioc.internal.IOCInternalTestCase.setup_registry()
[INFO] RegistryBuilder Adding module definition for class
org.apache.tapestry5.ioc.services.TapestryIOCModule
[ERROR] SerializationSupport Setting a new service proxy provider when
there's already an existing provider. This may indicate that you have
multiple IoC Registries.
[SuiteRunner] Created 1 TestRunners
[TestRunner] Running test Public APIs on 23 classes, included groups:
[] excluded groups:[]
[TestClass]
======

TESTCLASS: org.apache.tapestry5.services.TransformUtilsTest
[TestClass] Test :
org.apache.tapestry5.services.TransformUtilsTest.wrapper_type_by_class
()
[TestClass] Test :
org.apache.tapestry5.services.TransformUtilsTest.default_value()
[TestClass] Test :
org.apache.tapestry5.services.TransformUtilsTest.wrapper_type_by_name
()
[TestClass] Test :
org.apache.tapestry5.services.TransformUtilsTest.is_primitive()
[TestClass] Test :
org.apache.tapestry5.services.TransformUtilsTest.unwrapper_method_name
()
[TestClass]
======

[TestClass]
======


TESTCLASS: org.apache.tapestry5.validator.RequiredTest
[TestClass] Test :
org.apache.tapestry5.validator.RequiredTest.empty_collection_value()
[TestClass] Test :
org.apache.tapestry5.validator.RequiredTest.not_empty_collection_value
()
[TestClass] Test :
org.apache.tapestry5.validator.RequiredTest.null_value()
[TestClass] Test :
org.apache.tapestry5.validator.RequiredTest.blank_value()
[TestClass] Test :
org.apache.tapestry5.validator.RequiredTest.non_blank_value()
[TestClass] AfterMethod :
org.apache.tapestry5.ioc.test.TestBase.discardMockControl()
[TestClass]
======

[TestClass]
======

[TestClass]
======

[TestClass]
======


TESTCLASS: org.apache.tapestry5.validator.MaxTest
[TestClass] Test :
org.apache.tapestry5.validator.MaxTest.value_too_large()
[TestClass] Test :
org.apache.tapestry5.validator.MaxTest.small_enough()
[TestClass] AfterMethod :
org.apache.tapestry5.internal.test.InternalBaseTestCase.cleanupThread
()
[TestClass] AfterMethod :
org.apache.tapestry5.ioc.test.TestBase.discardMockControl()
[TestClass]
======

[TestClass]

[TestClass]
======


TESTCLASS: org.apache.tapestry5.ioc.test.IOCTestCase
[TestClass] AfterMethod :
org.apache.tapestry5.ioc.test.TestBase.discardMockControl()
[TestClass]
======

[TestClass]
======
TESTCLASS: org.apache.tapestry5.test.SeleniumTestCase
[TestClass] BeforeClass :
org.apache.tapestry5.test.SeleniumTestCase.setup
(org.testng.ITestContext)
[TestClass] BeforeMethod:
org.apache.tapestry5.test.SeleniumTestCase.indicateTestMethodName
(java.lang.reflect.Method)
[TestClass] AfterMethod :
org.apache.tapestry5.test.SeleniumTestCase.cleanupTestMethod()
[TestClass] AfterClass :
org.apache.tapestry5.test.SeleniumTestCase.cleanup()
[TestClass]
======

[TestClass]
======


TESTCLASS: org.apache.tapestry5.validator.MaxLengthTest
[TestClass] Test :
org.apache.tapestry5.validator.MaxLengthTest.long_value()
[TestClass] Test :
org.apache.tapestry5.validator.MaxLengthTest.short_enough()
[TestClass] AfterMethod :
org.apache.tapestry5.internal.test.InternalBaseTestCase.cleanupThread
()
[TestClass] AfterMethod :
org.apache.tapestry5.ioc.test.TestBase.discardMockControl()
[TestClass]
======

[TestClass]
======


TESTCLASS: org.apache.tapestry5.services.AliasContributionTest
[TestClass] Test :
org.apache.tapestry5.services.AliasContributionTest.to_string()
[TestClass] Test :
org.apache.tapestry5.services.AliasContributionTest.default_for_mode()
[TestClass] Test :
org.apache.tapestry5.services.AliasContributionTest.specific_mode()
[TestClass] AfterMethod :
org.apache.tapestry5.ioc.test.TestBase.discardMockControl()
[TestClass]
======

[TestClass]
======
TESTCLASS: org.apache.tapestry5.test.SeleniumLauncher
[TestClass]
======

[TestClass]
======


TESTCLASS: org.apache.tapestry5.ioc.internal.IOCInternalTestCase
[TestClass] AfterMethod :
org.apache.tapestry5.ioc.internal.IOCInternalTestCase.cleanupThread()
[TestClass] AfterMethod :
org.apache.tapestry5.ioc.test.TestBase.discardMockControl()
[TestClass]
======

[TestClass]
======


TESTCLASS: org.apache.tapestry5.validator.MinLengthTest
[TestClass] Test :
org.apache.tapestry5.validator.MinLengthTest.long_enough()
[TestClass] Test :
org.apache.tapestry5.validator.MinLengthTest.short_value()
[TestClass] AfterMethod :
org.apache.tapestry5.internal.test.InternalBaseTestCase.cleanupThread
()
[TestClass] AfterMethod :
org.apache.tapestry5.ioc.test.TestBase.discardMockControl()
[TestClass]
======

[TestClass]
======


TESTCLASS: org.apache.tapestry5.ioc.test.TestBase
[TestClass] AfterMethod :
org.apache.tapestry5.ioc.test.TestBase.discardMockControl()
[TestClass]
======

[TestClass]
======


TESTCLASS: org.apache.tapestry5.urlrewriter.IntegrationTests
[TestClass] BeforeClass :
org.apache.tapestry5.test.AbstractIntegrationTestSuite.setup
(org.testng.ITestContext)
[TestClass] Test :
org.apache.tapestry5.urlrewriter.IntegrationTests.test_url_rewriter_without_virtual_host
()
[TestClass] Test :
org.apache.tapestry5.urlrewriter.IntegrationTests.test_link_rewriting_without_virtual_host
()
[TestClass] Test :
org.apache.tapestry5.urlrewriter.IntegrationTests.test_url_rewriter_using_context
()
[TestClass] AfterClass :
org.apache.tapestry5.test.AbstractIntegrationTestSuite.cleanup()
[TestClass]
======

[TestClass]
======


TESTCLASS: org.apache.tapestry5.test.AbstractIntegrationTestSuite
[TestClass] BeforeClass :
org.apache.tapestry5.test.AbstractIntegrationTestSuite.setup
(org.testng.ITestContext)
[TestClass] AfterClass :
org.apache.tapestry5.test.AbstractIntegrationTestSuite.cleanup()
[TestClass]
======

[TestClass]
======


TESTCLASS: org.apache.tapestry5.util.StringToEnumCoercionTest
[TestClass] Test :
org.apache.tapestry5.util.StringToEnumCoercionTest.value_not_found()
[TestClass] Test :
org.apache.tapestry5.util.StringToEnumCoercionTest.value_found()
[TestClass] Test :
org.apache.tapestry5.util.StringToEnumCoercionTest.blank_is_null()
[TestClass]
======

[TestClass]
======


TESTCLASS: org.apache.tapestry5.util.EnumSelectModelTest
[TestClass] Test :
org.apache.tapestry5.util.EnumSelectModelTest.generated_labels()
[TestClass] Test :
org.apache.tapestry5.util.EnumSelectModelTest.prefixed_name_in_message_catalog
()
[TestClass] Test :
org.apache.tapestry5.util.EnumSelectModelTest.unprefixed_name_in_message_catalog
()
[TestClass] AfterMethod :
org.apache.tapestry5.ioc.test.TestBase.discardMockControl()
[TestClass]
======

[TestClass]
======

[TestClass]
======

[TestClass]
======


TESTCLASS: org.apache.tapestry5.validator.RegexpTest
[TestClass] Test :
org.apache.tapestry5.validator.RegexpTest.input_mismatch()
[TestClass] Test :
org.apache.tapestry5.validator.RegexpTest.matching_pattern()
[TestClass] AfterMethod :
org.apache.tapestry5.internal.test.InternalBaseTestCase.cleanupThread
()
[TestClass] AfterMethod :
org.apache.tapestry5.ioc.test.TestBase.discardMockControl()
[TestClass]
======

[Invoker 1611508769] Invoking @BeforeTest


org.apache.tapestry5.test.SeleniumLauncher.startup(java.lang.String,
java.lang.String, int, java.lang.String, org.testng.ITestContext)
[INFO] log Logging to org.slf4j.impl.Log4jLoggerAdapter
(org.eclipse.jetty.util.log) via org.eclipse.jetty.util.log.Slf4jLog
[INFO] log jetty-7.0.0.v20091005
[WARN] log Web application not found /Users/Howard/work/t5-project/
tapestry-core/src/main/webapp
[WARN] log Failed startup of context

WebAppContext@3d3c33b7@3d3c33b7,null,/Users/Howard/work/t5-project/

at org.testng.TestNG.privateMain(TestNG.java:949)
at org.testng.TestNG.main(TestNG.java:922)


[INFO] log Started SelectChann...@0.0.0.0:9999
[INFO] SeleniumServer Java: Apple Inc. 14.3-b01-101
[INFO] SeleniumServer OS: Mac OS X 10.6.2 x86_64

[INFO] SeleniumServer vnull [null], with Core v@VERSION@ [@REVISION@]


[INFO] HttpServer Version Jetty/5.1.12
[INFO] Container Started HttpContext[/selenium-server/driver,/selenium-
server/driver]
[INFO] Container Started HttpContext[/selenium-server,/selenium-
server]
[INFO] Container Started HttpContext[/,/]
[INFO] SocketListener Started SocketListener on 0.0.0.0:4444

[INFO] Container Started org.mortbay.jetty.Server@566a2f81


[INFO] Credential Checking Resource aliases
[INFO] SeleniumDriverResourceHandler Command request:
getNewBrowserSession[*firefox, http://localhost:9999/, ] on session
null
[INFO] BrowserSessionFactory creating new remote session
[INFO] BrowserSessionFactory Allocated session

4dec937e507a436693c299252e070f79 for http://localhost:9999/,


launching...
[INFO] FirefoxChromeLauncher Preparing Firefox profile...

[INFO] FirefoxChromeLauncher Launching Firefox...


i.e. same results as before.

I'd love a workaround for this as a fix looks to be a ways out. I hope
I don't have to rebuild some of my testng to use <classes> instead of
<packages>!


On Dec 17, 5:09 pm, Cédric Beust ♔ <cbe...@google.com> wrote:

> > testng-users...@googlegroups.com<testng-users%2Bunsubscribe@google groups.com>


> > .
> > For more options, visit this group at
> >http://groups.google.com/group/testng-users?hl=en.
>
> --

> ***Cédric
> *

Cédric Beust ♔

unread,
Dec 17, 2009, 10:22:42 PM12/17/09
to testng...@googlegroups.com
Thanks Howard.

Could you create a JIRA issue and attach a command line project allowing me to reproduce the problem?  It should be easy to track down but my time is very scarce right now :-)

-- 
Cedric


To unsubscribe from this group, send email to testng-users...@googlegroups.com.

For more options, visit this group at http://groups.google.com/group/testng-users?hl=en.





--
Cédric


Jek

unread,
Dec 18, 2009, 12:54:07 PM12/18/09
to testng-users
Hi,

We're not using Maven. In fact, we're using the TestNG API directly.
Here's a snippet:

TestNG testng = new TestNG();

XmlSuite suite = new XmlSuite();

XmlTest test = new XmlTest( suite );
XmlPackage xmlPackage = new XmlPackage();
xmlPackage.setName( "chow.*" ); // was "chow" when we
used a jar file
test.setXmlPackages( Arrays.asList( xmlPackage ));

testng.setXmlSuites( Arrays.asList( suite ));

-John

On Dec 17, 5:09 pm, Cédric Beust ♔ <cbe...@google.com> wrote:

> > testng-users...@googlegroups.com<testng-users%2Bunsu...@googlegroups.com>


> > .
> > For more options, visit this group at
> >http://groups.google.com/group/testng-users?hl=en.
>
> --

> ***Cédric
> *

hls...@gmail.com

unread,
Dec 18, 2009, 1:12:28 PM12/18/09
to testng-users
I'll add a JIRA issue shortly.

I think I have a work-around; I've moved some of my test cases out of
the root package and into a leaf package (org.apache.tapestry5.root);
this prevents the scan from continuing down into the
org.apache.tapestry5.test package that comes out of the tapestry-
test.jar. Thus, only the proper and expected code executes.

> ...
>
> read more »

hls...@gmail.com

unread,
Dec 18, 2009, 1:23:30 PM12/18/09
to testng-users
Reply all
Reply to author
Forward
0 new messages