From 623a01e3e374c8360350aad4edf9f418fe5fb545 Mon Sep 17 00:00:00 2001 From: Loretta Date: Mon, 23 Feb 2026 16:10:28 +0100 Subject: [PATCH] Add StockTakings to FullProcessModel and new meta test Added List StockTakings to FullProcessModel. Introduced GetMetaInfos test in ToonTests to serialize and output FullProcessModel type metadata for inspection. --- FruitBankHybrid.Shared.Tests/ToonTests.cs | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/FruitBankHybrid.Shared.Tests/ToonTests.cs b/FruitBankHybrid.Shared.Tests/ToonTests.cs index d9933107..fa611e03 100644 --- a/FruitBankHybrid.Shared.Tests/ToonTests.cs +++ b/FruitBankHybrid.Shared.Tests/ToonTests.cs @@ -86,6 +86,7 @@ public class FullProcessModel { public List Shippings { get; set; } public List Orders { get; set; } + public List StockTakings { get; set; } } [TestClass] @@ -141,6 +142,15 @@ public sealed class ToonTests // Data from separate API calls typically don't share object instances. } + [TestMethod] + public void GetMetaInfos() + { + var a = new FullProcessModel(); + var toon = AcToonSerializer.SerializeTypeMetadata(FruitBankConstClient.DomainDescription); + Console.WriteLine(toon); + } + + [TestMethod] public void ReferenceHandling_WithSharedReferences_ShouldOutputRefMarkers() {