Device.Manadatory converted to property

This commit is contained in:
Matt Nadareski
2026-04-02 02:43:29 -04:00
parent 3ef7b5860d
commit 8356aed5b0
22 changed files with 45 additions and 36 deletions

View File

@@ -1864,8 +1864,10 @@ namespace SabreTools.Data.Extensions.Test
[Theory]
[InlineData(null, null)]
[InlineData("INVALID", null)]
[InlineData("1", true)]
[InlineData("yes", true)]
[InlineData("True", true)]
[InlineData("0", false)]
[InlineData("no", false)]
[InlineData("False", false)]
public void AsYesNoTest(string? field, bool? expected)