/** Tests comparison of a pair to other pairs. The case of dominates or equals and that of being dominated. Checks that values can be recorded at an offset. */
@Test
public void TestCreateComparePairs3a()
{
// Using test data from testSplitSetOfPairsIntoRightAndWrong3, pairs A and B are right and C is wrong.
PairScore
pairA = new PairScore(tentativeGraph.findVertex("A1"), tentativeGraph.findVertex("A2"),1,-1),
pairB=new PairScore(tentativeGraph.findVertex("B1"), tentativeGraph.findVertex("B2"),1,0),
pairC=new PairScore(tentativeGraph.findVertex("A1"), tentativeGraph.findVertex("B2"),0,0);
List<PairScore> pairs = Arrays.asList(new PairScore[]{pairB,pairC});
testClassifier.buildSetsForComparatorsThatDoNotDependOnFiltering(pairs, tentativeGraph);
int [] buffer= new int[]{9,8,7,6};
testClassifier.comparePairWithOthers(pairA, pairs,buffer,1);