Exemplo n.º 1
0
 def testPlotDataReturnGraph(self):
     list = [1, 2, 3, 4, 5]
     stat = Statistics(list)
     stat.plotData()
Exemplo n.º 2
0
 def testPlotDataLargeDataSetReturnGraph(self):
     list = []
     for i in range(0, 99):
         list.append(random.randint(0, 99))
     stat = Statistics(list)
     stat.plotData()
Exemplo n.º 3
0
 def testPlotDataReturnEmptyGraph(self):
     emptyList = []
     stat = Statistics(emptyList)
     stat.plotData()