package pl.edu.mimuw.cloudatlas.model; public class TestUtil { public static boolean valueLower(Value a, Value b) { return ((ValueBoolean) a.isLowerThan(b)).getValue(); } public static int iterableSize(Iterable iterable) { int count = 0; for (T attribute : iterable) { count++; } return count; } }