Utils.AreFloatsEqualAbsoluteError

Cambiar al Manual
public static bool AreFloatsEqualAbsoluteError (float expected, float actual, float allowedAbsoluteError);

Parámetros

expectedThe expected value.
actualActual value to be compared with the expected value.
allowedAbsoluteErrorThe permissible tolerance.

Valor de retorno

bool Returns true if the actual value is equaivalent to the expected value under the given tolerance.

Descripción

Compares two float values for equality.

This method compares two floating point numbers for equality under the given absolute tolerance.

using UnityEngine.TestTools.Utils;

using NUnit.Framework;

[TestFixture]

class UtilsTest { [Test]

public void FloatsAreAbsoluteEqual() { float expected = 0f;

float actual = 10e-6f;

float error = 10e-5f;

Assert.That(Utils.AreFloatsEqualAbsoluteError(expected, actual, error), Is.True); } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961