Searched refs:ObjectWithTypeVariables (Results 1 – 1 of 1) sorted by relevance
| /external/gson/gson/src/test/java/com/google/gson/functional/ |
| D | ParameterizedTypesTest.java | 184 Type typeOfSrc = new TypeToken<ObjectWithTypeVariables<Integer>>() {}.getType(); in testVariableTypeFieldsAndGenericArraysSerialization() 185 ObjectWithTypeVariables<Integer> objToSerialize = in testVariableTypeFieldsAndGenericArraysSerialization() 186 new ObjectWithTypeVariables<>(obj, array, list, arrayOfLists, list, arrayOfLists); in testVariableTypeFieldsAndGenericArraysSerialization() 201 Type typeOfSrc = new TypeToken<ObjectWithTypeVariables<Integer>>() {}.getType(); in testVariableTypeFieldsAndGenericArraysDeserialization() 202 ObjectWithTypeVariables<Integer> objToSerialize = in testVariableTypeFieldsAndGenericArraysDeserialization() 203 new ObjectWithTypeVariables<>(obj, array, list, arrayOfLists, list, arrayOfLists); in testVariableTypeFieldsAndGenericArraysDeserialization() 205 ObjectWithTypeVariables<Integer> objAfterDeserialization = gson.fromJson(json, typeOfSrc); in testVariableTypeFieldsAndGenericArraysDeserialization() 212 Type typeOfSrc = new TypeToken<ObjectWithTypeVariables<Integer>>() {}.getType(); in testVariableTypeDeserialization() 213 ObjectWithTypeVariables<Integer> objToSerialize = in testVariableTypeDeserialization() 214 new ObjectWithTypeVariables<>(0, null, null, null, null, null); in testVariableTypeDeserialization() [all …]
|