package phase3; import static org.junit.Assert.*; import java.util.Arrays; import org.junit.Before; import org.junit.Test; import phase1.Request; import phase1.LstRequest; public class SharingGraphTest { public static boolean equalsArrayOfPairs(Pair[] a1, Pair[]a2) { if (a1==null && a2!=null) return false; if (a1!=null && a2==null) return false; if (a1.length!=a2.length) return false; for (int i=0; i