Added tests for long.MaxValue
This commit is contained in:
Родитель
f4d88bc580
Коммит
a80614502c
|
@ -53,6 +53,10 @@ namespace UnitTests
|
|||
new KeyValuePair<string, long> ("IntMaxValuePlusOne", ((long) int.MaxValue) + 1),
|
||||
new KeyValuePair<string, long> ("UIntMaxValue", uint.MaxValue),
|
||||
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")]
|
||||
|
|
Двоичные данные
UnitTests/TestData/PropertyLists/binary-integers.plist
Двоичные данные
UnitTests/TestData/PropertyLists/binary-integers.plist
Двоичный файл не отображается.
|
@ -30,5 +30,7 @@
|
|||
<integer>4294967295</integer>
|
||||
<key>UIntMaxValuePlusOne</key>
|
||||
<integer>4294967296</integer>
|
||||
<key>LongMaxValue</key>
|
||||
<integer>9223372036854775807</integer>
|
||||
</dict>
|
||||
</plist>
|
||||
|
|
Загрузка…
Ссылка в новой задаче