add tomb interval testcase

Signed-off-by: yeya24 <yb532204897@gmail.com>
This commit is contained in:
yeya24 2020-01-06 00:32:29 +00:00
parent 1637ad2717
commit 06fd7cf3ba

View file

@ -118,6 +118,11 @@ func TestAddingNewIntervals(t *testing.T) {
new: Interval{11, 14},
exp: Intervals{{5, 20}, {25, 30}},
},
{
exist: Intervals{{5, 10}, {12, 20}, {25, 30}},
new: Interval{1, 3},
exp: Intervals{{1, 3}, {5, 10}, {12, 20}, {25, 30}},
},
}
for _, c := range cases {