public void TestExp() { var x = 16; var actual = mathFunc.Exp(x); var expected = System.Math.Exp(x); Assert.AreEqual(expected, actual, 0.01); }