예제 #1
0
 def test_MathOperations_root(self):
     self.assertEqual(4, Root.root(16, 2))
예제 #2
0
 def standardDeviation(data):
     return Root.root(Variance.variance(data), 2)
예제 #3
0
 def test_MathOperations_root(self):
     self.assertEqual(3, Root.sqr_root(9))
예제 #4
0
 def Root(self, a, b):
     self.Result = Root.root(a, b)
     return self.Result
 def test_MathOperations_Root(self):
     self.assertEqual(3, Root.root(9, 2))
예제 #6
0
 def Root(self, a):
     self.Result = Root.root(a)
     return self.Result
 def test_calculator_root(self):
     self.assertEqual(13, Root.root(169,2))
예제 #8
0
 def test_MathOperations_root(self):
     self.assertEqual(8.54400374531753, Root.root(8, 3))