Searched refs:TestMinAndMaxIntegers (Results 1 - 1 of 1) sorted by relevance

/external/protobuf/python/google/protobuf/internal/
H A Dreflection_test.py635 def TestMinAndMaxIntegers(field_name, expected_min, expected_max): function in function:ReflectionTest.testSingleScalarBoundsChecking
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)

Completed in 32 milliseconds