This commit is contained in:
Jeffrey Stedfast 2022-06-28 16:30:43 -04:00
Родитель f4d88bc580
Коммит a80614502c
3 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -53,6 +53,10 @@ namespace UnitTests
new KeyValuePair<string, long> ("IntMaxValuePlusOne", ((long) int.MaxValue) + 1), new KeyValuePair<string, long> ("IntMaxValuePlusOne", ((long) int.MaxValue) + 1),
new KeyValuePair<string, long> ("UIntMaxValue", uint.MaxValue), new KeyValuePair<string, long> ("UIntMaxValue", uint.MaxValue),
new KeyValuePair<string, long> ("UIntMaxValuePlusOne", ((long) uint.MaxValue) + 1), new KeyValuePair<string, long> ("UIntMaxValuePlusOne", ((long) uint.MaxValue) + 1),
new KeyValuePair<string, long> ("LongMaxValue", long.MaxValue),
// FIXME: Apple supports up to ulong.MaxValue
// new KeyValuePair<string, long> ("ULongMaxValue", ulong.MaxValue),
}; };
[TestCase ("xml-integers.plist")] [TestCase ("xml-integers.plist")]

Двоичный файл не отображается.

Просмотреть файл

@ -30,5 +30,7 @@
<integer>4294967295</integer> <integer>4294967295</integer>
<key>UIntMaxValuePlusOne</key> <key>UIntMaxValuePlusOne</key>
<integer>4294967296</integer> <integer>4294967296</integer>
<key>LongMaxValue</key>
<integer>9223372036854775807</integer>
</dict> </dict>
</plist> </plist>