There is a string like "[[7], [2,2,3]]".
How can I convert this string to a List<List<Integer>> Object?
This is to implement a parameter converter in JUnit5.
@CsvSource({
"'[2,3,6,7]', 7, '[[7], [2, 2, 3]]'"
})
I want to convert the string "[[7], [2,2,3]]" to a List<List<Integer>> Object.