Class FloatEqualityComparer
Use this class to compare two float values for equality with NUnit constraints. Use FloatEqualityComparer.Instance comparer to have the default error value set to 0.0001f. For any other error, use the one argument constructor to create a comparer.
상속된 멤버
네임스페이스: UnityEngine.TestTools.Utils
어셈블리: solution.dll
구문
public class FloatEqualityComparer : IEqualityComparer<float>
생성자
이름 | 설명 |
---|---|
FloatEqualityComparer(float) | Initializes an instance of a FloatEqualityComparer with a custom error value instead of the default 0.0001f. |
프로퍼티
이름 | 설명 |
---|---|
Instance | A singleton instance of the comparer with a default error value set to 0.0001f. |
메서드
이름 | 설명 |
---|---|
Equals(float, float) | Compares the actual and expected float values for equality using AreFloatsEqual(float, float, float). |
GetHashCode(float) | Serves as the default hash function. |