blob: 6cb5a64a83b6beaacf86e6abdaeab310d94fb9b2 [file] [log] [blame]
package edu.uci.ics.asterix.test.common;
import java.util.List;
public final class TestHelper {
public static boolean isInPrefixList(List<String> prefixList, String s) {
for (String s2 : prefixList) {
if (s.startsWith(s2)) {
return true;
}
}
return false;
}
}