Home
last modified time | relevance | path

Searched refs:CollectionWrapper (Results 1 – 2 of 2) sorted by relevance

/external/kotlinx.serialization/formats/json-tests/commonTest/src/kotlinx/serialization/features/
DCollectionSerializerTest.kt14 data class CollectionWrapper( class in kotlinx.serialization.features.CollectionSerializerTest
22 val string = Json.encodeToString(CollectionWrapper(list)) in testListJson()
25 val wrapper = Json.decodeFromString<CollectionWrapper>(string) in testListJson()
33 val string = Json.encodeToString(CollectionWrapper(set)) in testSetJson()
36 val wrapper = Json.decodeFromString<CollectionWrapper>(string) in testSetJson()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/merge/
DCollectionMergeTest.java15 static class CollectionWrapper { class in CollectionMergeTest
62CollectionWrapper w = MAPPER.readValue(aposToQuotes("{'bag':['b']}"), CollectionWrapper.class); in testCollectionMerging()