2828import static io .microsphere .collection .SetUtils .ofSet ;
2929import static io .microsphere .lang .function .Streams .filter ;
3030import static io .microsphere .lang .function .Streams .filterAll ;
31+ import static io .microsphere .lang .function .Streams .filterAllList ;
32+ import static io .microsphere .lang .function .Streams .filterAllSet ;
3133import static io .microsphere .lang .function .Streams .filterAny ;
34+ import static io .microsphere .lang .function .Streams .filterAnyList ;
35+ import static io .microsphere .lang .function .Streams .filterAnySet ;
3236import static io .microsphere .lang .function .Streams .filterFirst ;
3337import static io .microsphere .lang .function .Streams .filterList ;
3438import static io .microsphere .lang .function .Streams .filterSet ;
@@ -125,13 +129,13 @@ public void testFilterAll() {
125129
126130 @ Test
127131 public void testFilterAllList () {
128- List <Integer > list = Streams . filterAllList (INTEGERS , EVEN_PREDICATE );
132+ List <Integer > list = filterAllList (INTEGERS , EVEN_PREDICATE );
129133 assertEquals (EVEN_LIST , list );
130134 }
131135
132136 @ Test
133137 public void testFilterAllSet () {
134- Set <Integer > set = Streams . filterAllSet (INTEGERS , EVEN_PREDICATE );
138+ Set <Integer > set = filterAllSet (INTEGERS , EVEN_PREDICATE );
135139 assertEquals (EVEN_SET , set );
136140 }
137141
@@ -146,13 +150,13 @@ public void testFilterAny() {
146150
147151 @ Test
148152 public void testFilterAnyList () {
149- List <Integer > list = Streams . filterAnyList (INTEGERS , EVEN_PREDICATE );
153+ List <Integer > list = filterAnyList (INTEGERS , EVEN_PREDICATE );
150154 assertEquals (EVEN_LIST , list );
151155 }
152156
153157 @ Test
154158 public void testFilterAnySet () {
155- Set <Integer > set = Streams . filterAnySet (INTEGERS , EVEN_PREDICATE );
159+ Set <Integer > set = filterAnySet (INTEGERS , EVEN_PREDICATE );
156160 assertEquals (EVEN_SET , set );
157161 }
158162
0 commit comments