I have this test method failed even if debugger show correct value. Why this test is not passing then?
[TestMethod]
public void Should_60Deegrees_ForArcCosOfHalf()
{
var deegrees = (Math.Acos(0.5) * 180 / Math.PI);
Assert.AreEqual(60, deegrees);
}