public void TestCSC() { var x = 10; var actual = mathFunc.Csc(x); var exp = 1 / System.Math.Sin(x); Assert.AreEqual(exp, actual, 0.01); }