filebot/test/net/sourceforge/tuned/TestUtil.java

42 lines
826 B
Java
Raw Normal View History

2008-06-09 18:41:06 +00:00
package net.sourceforge.tuned;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
public class TestUtil {
public static List<Object[]> asParameters(Object... parameters) {
List<Object[]> list = new ArrayList<Object[]>();
2008-06-09 18:41:06 +00:00
for (Object parameter : parameters) {
list.add(new Object[] { parameter });
2008-06-09 18:41:06 +00:00
}
return list;
2008-06-09 18:41:06 +00:00
}
public static List<Object[]> asParameters(Collection<?> parameters) {
return asParameters(parameters.toArray());
}
public static <T> List<List<T>> rotations(Collection<T> source) {
List<List<T>> rotations = new ArrayList<List<T>>();
2008-06-09 18:41:06 +00: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 18:41:06 +00:00
}
return rotations;
2008-06-09 18:41:06 +00:00
}
2008-06-09 18:41:06 +00:00
}