mirror of
https://github.com/alibaba/testable-mock.git
synced 2026-08-19 09:43:29 +08:00
feat: add util method for quick create set
This commit is contained in:
@@ -58,6 +58,13 @@ public class CollectionUtil {
|
||||
return Arrays.asList(items);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a set
|
||||
*/
|
||||
public static <T> Set<T> setOf(T... items) {
|
||||
return new HashSet<T>(Arrays.asList(items));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a map
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user