public static void TestMinOverride(int?first, int?second, int expected) { OpenApiSchema schemaProperty = new OpenApiSchema(); schemaProperty.SetNewMin(p => p.MinLength, first); schemaProperty.SetNewMin(p => p.MinLength, second); schemaProperty.MinLength.Should().Be(expected); }