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