Esempio n. 1
0
 def test_9_4(self):
     "test getResult from recommend.py"
     c2 = []
     dataList = []
     result = getResult(dataList,c2)
     expectResult = []
     self.assertListEqual(result,expectResult,"getResult Error")
Esempio n. 2
0
 def test_9_2(self):
     "test getResult from recommend.py"
     c2 = [[['1'],['2'],['3'],['5']],[['1','3'],['3','2'],['2','5'],['3','5']],[['3','2','5']]]
     dataList = []
     result = getResult(dataList,c2)
     expectResult = []
     self.assertListEqual(result,expectResult,"getResult Error")