Searched refs:assertPrintFieldValue (Results 1 – 1 of 1) sorted by relevance
/external/protobuf/java/core/src/test/java/com/google/protobuf/ |
D | TextFormatTest.java | 814 assertPrintFieldValue("\"Hello\"", "Hello", "repeated_string"); in testPrintFieldValue() 815 assertPrintFieldValue("123.0", 123f, "repeated_float"); in testPrintFieldValue() 816 assertPrintFieldValue("123.0", 123d, "repeated_double"); in testPrintFieldValue() 817 assertPrintFieldValue("123", 123, "repeated_int32"); in testPrintFieldValue() 818 assertPrintFieldValue("123", 123L, "repeated_int64"); in testPrintFieldValue() 819 assertPrintFieldValue("true", true, "repeated_bool"); in testPrintFieldValue() 820 assertPrintFieldValue("4294967295", 0xFFFFFFFF, "repeated_uint32"); in testPrintFieldValue() 821 assertPrintFieldValue("18446744073709551615", 0xFFFFFFFFFFFFFFFFL, in testPrintFieldValue() 823 assertPrintFieldValue("\"\\001\\002\\003\"", in testPrintFieldValue() 827 private void assertPrintFieldValue(String expect, Object value, in assertPrintFieldValue() method in TextFormatTest
|