def test_MathOperations_root(self): self.assertEqual(3, Root.sqr_root(9))
def Root(self, a): self.Result = Root.sqr_root(a) return self.Result