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