add missing unit test for i128

This commit is contained in:
cxworks 2023-12-08 20:15:30 -05:00
parent 0d040f4664
commit cefacdbb27
1 changed files with 1 additions and 0 deletions

View File

@ -26,4 +26,5 @@ test! {
test_u128_0(0u128, "0")
test_u128_max(u128::max_value(), "340282366920938463463374607431768211455")
test_i128_min(i128::min_value(), "-170141183460469231731687303715884105728")
test_i128_max(i128::MAX, "170141183460469231731687303715884105727")
}