2008-06-09 14:41:06 -04:00
|
|
|
|
|
|
|
package net.sourceforge.tuned;
|
|
|
|
|
|
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.Collection;
|
|
|
|
import java.util.Collections;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
|
|
public class TestUtil {
|
|
|
|
|
2008-12-27 06:37:23 -05:00
|
|
|
public static List<Object[]> asParameters(Object... parameters) {
|
2008-06-29 13:38:57 -04:00
|
|
|
List<Object[]> list = new ArrayList<Object[]>();
|
2008-06-09 14:41:06 -04:00
|
|
|
|
2008-12-27 06:37:23 -05:00
|
|
|
for (Object parameter : parameters) {
|
2008-06-29 13:38:57 -04:00
|
|
|
list.add(new Object[] { parameter });
|
2008-06-09 14:41:06 -04:00
|
|
|
}
|
|
|
|
|
2008-06-29 13:38:57 -04:00
|
|
|
return list;
|
2008-06-09 14:41:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-12-27 06:37:23 -05:00
|
|
|
public static List<Object[]> asParameters(Collection<?> parameters) {
|
|
|
|
return asParameters(parameters.toArray());
|
2008-06-21 19:31:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-06-29 13:38:57 -04:00
|
|
|
public static <T> List<List<T>> rotations(Collection<T> source) {
|
|
|
|
List<List<T>> rotations = new ArrayList<List<T>>();
|
2008-06-09 14:41:06 -04:00
|
|
|
|
2008-06-29 13:38:57 -04:00
|
|
|
for (int i = 0; i < source.size(); i++) {
|
|
|
|
List<T> copy = new ArrayList<T>(source);
|
|
|
|
Collections.rotate(copy, i);
|
|
|
|
rotations.add(copy);
|
2008-06-09 14:41:06 -04:00
|
|
|
}
|
|
|
|
|
2008-06-29 13:38:57 -04:00
|
|
|
return rotations;
|
2008-06-09 14:41:06 -04:00
|
|
|
}
|
2008-06-29 13:38:57 -04:00
|
|
|
|
2008-06-09 14:41:06 -04:00
|
|
|
}
|