public void TestCos() { var x = 10; var actual = mathFunc.Cos(x); var exp = System.Math.Cos(x); Assert.AreEqual(exp, actual, 0.01); }