Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
CloseFor some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.
Closeexpected | Expected Quaternion object. |
actual | Actual Quaternion object to be compared with expected. |
bool
Returns true
if expected and actual objects are equal, else false
.
Compares the actual and expected Quaternion objects for equality.
As shown in the example, this method will be called by NUnit
when we use it with constraints.
using NUnit.Framework;
using UnityEngine;
using UnityEngine.TestTools.Utils;
[TestFixture]
public class QuaternionTest { [Test]
public void QuaternionsAreEqual() { var actual = new Quaternion(10f, 0f, 0f, 0f);
var expected = new Quaternion(1f, 10f, 0f, 0f);
var comparer = new QuaternionEqualityComparer(10e-6f);
Assert.That(actual, Is.EqualTo(expected).Using(comparer));
//Using default error 0.00001f
actual = new Quaternion(10f, 0f, 0.1f, 0f);
expected = new Quaternion(1f, 10f, 0.1f, 0f);
Assert.That(actual, Is.EqualTo(expected).Using(QuaternionEqualityComparer.Instance)); } }