/// <summary>
        /// See <see cref="IConvertRegistrations{TSource, TTarget, TConvertIntention}.DoRegistrations"/>.
        /// </summary>
        public void DoRegistrations(IConvertRegistration <SourceRoot, TargetRoot> registrations)
        {
            registrations.NotNull(nameof(registrations));

            registrations.RegisterCreateToManyFromGenericStrategyWithReverseRelation <SourceBaseLeaf, TargetBaseLeaf, IForTest>(
                x => x.Leafs,
                x => x.TargetLeafs,
                x => x.TargetRoot);
        }