using Manager.DTOs; using ManagerService.Data.SubSection; using ManagerService.DTOs; using System.Collections.Generic; namespace ManagerService.Tests.Infrastructure { /// /// Section concrète minimale pour les tests qui ne s'intéressent qu'aux champs de base. /// Section est abstraite depuis l'ajout de GetEmbeddableText / GetReferencedResourceIds. /// public static class TestSection { public static SectionArticle Article(string id, string instanceId, string label, string configurationId) => new SectionArticle { Id = id, InstanceId = instanceId, Label = label, ConfigurationId = configurationId, Type = SectionType.Article, Title = new List(), Description = new List(), ArticleContent = new List(), ArticleAudioIds = new List(), ArticleContents = new List() }; } }