def testBorda(self): 
     list1 = [5, 4, 3, 2, 1, 0]
     list2 = [5, 4, 3, 2, 1, 0]  
     
     outList = RankAggregator.borda(list1, list2)
     
     nptst.assert_array_equal(outList, numpy.array([5,4,3,2,1,0]))
     
     list2 = [4, 3, 2, 5, 1, 0]
     outList = RankAggregator.borda(list1, list2)
     nptst.assert_array_equal(outList, numpy.array([4,5,3,2,1,0]))