parent
12fd10316d
commit
97cbdd892c
|
|
@ -2,6 +2,7 @@ Dolphin Scheduler
|
|||
============
|
||||
[](https://www.apache.org/licenses/LICENSE-2.0.html)
|
||||
[](https://github.com/apache/Incubator-DolphinScheduler)
|
||||
[](https://codecov.io/gh/apache/incubator-dolphinscheduler)
|
||||
|
||||
> Dolphin Scheduler for Big Data
|
||||
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@ Dolphin Scheduler
|
|||
============
|
||||
[](https://www.apache.org/licenses/LICENSE-2.0.html)
|
||||
[](https://github.com/apache/Incubator-DolphinScheduler)
|
||||
[](https://codecov.io/gh/apache/incubator-dolphinscheduler)
|
||||
|
||||
> Dolphin Scheduler for Big Data
|
||||
|
||||
|
|
|
|||
|
|
@ -19,10 +19,7 @@ package org.apache.dolphinscheduler.common.utils;
|
|||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashSet;
|
||||
import java.util.List;
|
||||
import java.util.Set;
|
||||
import java.util.*;
|
||||
|
||||
|
||||
public class CollectionUtilsTest {
|
||||
|
|
@ -56,4 +53,10 @@ public class CollectionUtilsTest {
|
|||
b.add(4);
|
||||
Assert.assertArrayEquals(new Integer[]{1,3},CollectionUtils.subtract(a,b).toArray());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void stringToMap() {
|
||||
Map<String, String> a = CollectionUtils.stringToMap("a=b;c=d", ";", "");
|
||||
Assert.assertNotNull(a);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue