def test_meanLabels(self): s = Statistics(data, { "Operator": ["A", "B", "C]"], "Part": ["O", "P", "Q", "R", "S"] }) s.calculate() self.assertTrue(True)
def test_summary(self): s = Statistics(data) s.calculate() s.summary() self.assertTrue(True)
def test_strAfterCalculated(self): s = Statistics(data) s.calculate() s.__str__() self.assertTrue(True)