Legacy Documentation: Version 2018.2 (Go to current version)
LanguageEnglish
  • C#

Vector2ComparerWithEqualsOperator.Equals

Suggest a change

Success!

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.

Close

Submission failed

For 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.

Close

Cancel

public bool Equals(Vector2 expected, Vector2 actual);

Parameters

expectedExpected Vector2 object.
actualActual Vector2 object to be compared with expected.

Returns

bool Returns true if expected and actual objects are equal, else false.

Description

Compares the actual and expected Vector2 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 Vector2Test { [Test]

public void Vector2ObjectsAreEqual() { var actual = new Vector2(10e-7f, 10e-7f);

var expected = new Vector2(0f, 0f);

Assert.That(actual, Is.EqualTo(expected).Using(Vector2ComparerWithEqualsOperator.Instance)); } }

Did you find this page useful? Please give it a rating: