4
코드MbUnit : 복식을 비교하는 가장 우아한 방법?
Assert.AreEqual (9.97320998018748d, observerPosition.CenterLongitude);
는
Expected Value & Actual Value : 9.97320998018748
Remark : Both values look the same when formatted but they
are distinct instances.
MbUnit에 3.0에서 평등을위한 두 개의 복식을 비교하는 가장 우아한 방법은 무엇입니까
을 생산? 나는 내가 그들 자신을 둥글게 할 수 있다는 것을 알고 있지만 이것을 위해 몇 가지 MbUnit 구조가 존재합니까?UPDATE : 내 현재의 "해결 방법"비 우아한이라고 생각 :
Assert.LessThan(
Math.Abs(9.97320998018748d - observerPosition.CenterLongitude),
0.0000001);
허와 비슷한 것 같다. 감사! –