From f1322810f620d22e4fdb6fd7de68cf8b3ed6f366 Mon Sep 17 00:00:00 2001 From: Tig Date: Sun, 21 Apr 2024 12:04:00 -0600 Subject: [PATCH] Support items wider than containerSize --- UnitTests/Drawing/JustifierTests.cs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/UnitTests/Drawing/JustifierTests.cs b/UnitTests/Drawing/JustifierTests.cs index f9f477a87..3f0a08188 100644 --- a/UnitTests/Drawing/JustifierTests.cs +++ b/UnitTests/Drawing/JustifierTests.cs @@ -24,13 +24,13 @@ public class JustifierTests (ITestOutputHelper output) Assert.Equal (new int [] { }, positions); } - [Theory] - [MemberData (nameof (JustificationEnumValues))] - public void Items_Width_Cannot_Exceed_TotalSize (Justification justification) - { - int [] sizes = { 1000, 2000, 3000 }; - Assert.Throws (() => new Justifier ().Justify (sizes, justification, 100)); - } + //[Theory] + //[MemberData (nameof (JustificationEnumValues))] + //public void Items_Width_Cannot_Exceed_TotalSize (Justification justification) + //{ + // int [] sizes = { 1000, 2000, 3000 }; + // Assert.Throws (() => new Justifier ().Justify (sizes, justification, 100)); + //} [Theory] [MemberData (nameof (JustificationEnumValues))]