Searched refs:TestMinAndMaxIntegers (Results 1 – 1 of 1) sorted by relevance
/external/protobuf/python/google/protobuf/internal/ |
D | reflection_test.py | 649 def TestMinAndMaxIntegers(field_name, expected_min, expected_max): function 658 TestMinAndMaxIntegers('optional_int32', -(1 << 31), (1 << 31) - 1) 659 TestMinAndMaxIntegers('optional_uint32', 0, 0xffffffff) 660 TestMinAndMaxIntegers('optional_int64', -(1 << 63), (1 << 63) - 1) 661 TestMinAndMaxIntegers('optional_uint64', 0, 0xffffffffffffffff)
|