Пример #1
0
 def test_meanLabels(self):
     s = Statistics(data, {
         "Operator": ["A", "B", "C]"],
         "Part": ["O", "P", "Q", "R", "S"]
     })
     s.calculate()
     self.assertTrue(True)
Пример #2
0
 def test_summary(self):
     s = Statistics(data)
     s.calculate()
     s.summary()
     self.assertTrue(True)
Пример #3
0
 def test_strAfterCalculated(self):
     s = Statistics(data)
     s.calculate()
     s.__str__()
     self.assertTrue(True)