Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to assert that one object is "equal" to another object.

The objects are just instances of a class with a bunch of public properties. Is there an easy way to have NUnit assert equality based on the properties?

This is my current solution but I think there may be something better:

Assert.AreEqual(LeftObject.Property1, RightObject.Property1)
Assert.AreEqual(LeftObject.Property2, RightObject.Property2)
Assert.AreEqual(LeftObject.Property3, RightObject.Property3)
...
Assert.AreEqual(LeftObject.PropertyN, RightObject.PropertyN)

What I'm going for would be in the same spirit as the CollectionEquivalentConstraint wherein NUnit verifies that the contents of two collections are identical.

share|improve this question

9 Answers

up vote 18 down vote accepted

Override .Equals for your object and in the unit test you can then simply do this:

Assert.AreEqual(LeftObject, RightObject);

Of course, this might mean you just move all the individual comparisons to the .Equals method, but it would allow you to reuse that implementation for multiple tests, and probably makes sense to have if objects should be able to compare themselves with siblings anyway.

share|improve this answer
4  
Of course, you'd create tests for your Equals methods... – David Kemp Nov 25 '08 at 17:38
2  
Thanks, lassevk. This worked for me! I implemented .Equals according to the guidelines here: msdn.microsoft.com/en-us/library/336aedhh(VS.80).aspx – Michael Haren Nov 25 '08 at 17:50
8  
And GetHashCode(), obviously ;-p – Marc Gravell Aug 23 '09 at 13:28
Number 1 on the list on that page is to override GetHashCode, and he did say he followed those guidelines :) But yes, common mistake to ignore that. Typically not a mistake you'll notice most of the time, but when you do, it's like one of those times when you say "Oh, hey, why's this snake up my trousers and why is he biting my ass". – Lasse V. Karlsen Aug 23 '09 at 20:52
1  
So you write code to test your test code? – Dr. Zim Feb 25 '11 at 3:30
show 1 more comment

If you can't override Equals for any reason, you can build a helper method that iterates through public properties by reflection and assert each property. Something like this:

public static class AssertEx
{

        public static void PropertyValuesAreEquals(object actual, object expected)
    	{
    		PropertyInfo[] properties = expected.GetType().GetProperties();
    		foreach (PropertyInfo property in properties)
    		{
    			object expectedValue = property.GetValue(expected, null);
    			object actualValue = property.GetValue(actual, null);

    			if (actualValue is IList)
    				AssertListsAreEquals(property, (IList)actualValue, (IList)expectedValue);
    			else if (!Equals(expectedValue, actualValue))
    				Assert.Fail("Property {0}.{1} does not match. Expected: {2} but was: {3}", property.DeclaringType.Name, property.Name, expectedValue, actualValue);
    		}
    	}

        private static void AssertListsAreEquals(PropertyInfo property, IList actualList, IList expectedList)
        {
        	if (actualList.Count != expectedList.Count)
        		Assert.Fail("Property {0}.{1} does not match. Expected IList containing {2} elements but was IList containing {3} elements", property.PropertyType.Name, property.Name, expectedList.Count, actualList.Count);

        	for (int i = 0; i < actualList.Count; i++)
        		if (!Equals(actualList[i], expectedList[i]))
        			Assert.Fail("Property {0}.{1} does not match. Expected IList with element {1} equals to {2} but was IList with element {1} equals to {3}", property.PropertyType.Name, property.Name, expectedList[i], actualList[i]);
        }
}
share|improve this answer
@wesley: this is not true. Type.GetProperties Method: Returns all the public properties of the current Type. See msdn.microsoft.com/en-us/library/aky14axb.aspx – Sergii Volchkov Jun 7 '11 at 10:48
1  
thanks. however, I had to switch the order of the actual and expected params since converntion is that expected is a param before actual. – Valamas - AUS Sep 7 '11 at 5:49
this is a better approach IMHO, Equal & HashCode overrides shouldn't have to be based on comparing every field and plus that's very tedious to do across every object. Good job! – kibbled_bits Jul 13 '12 at 15:29
any idea why the code is not coloured by SO? – Louis Rhys Aug 29 '12 at 5:19

I prefer not to override Equals just to enable testing. Don't forget that if you do override Equals you really should override GetHashCode also or you may get unexpected results if you are using your objects in a dictionary for example.

I do like the reflection approach above as it caters for the addition of properties in the future.

For a quick and simple solution however its often easiest to either create a helper method that tests if the objects are equal, or implement IEqualityComparer on a class you keep private to your tests. When using IEqualityComparer solution you dont need to bother with the implementation of GetHashCode. For example:

// Sample class.  This would be in your main assembly.
class Person
{
    public string Name { get; set; }
    public int Age { get; set; }
}

// Unit tests
[TestFixture]
public class PersonTests
{
    private class PersonComparer : IEqualityComparer<Person>
    {
        public bool Equals(Person x, Person y)
        {
            return (x.Name == y.Name) && (x.Age == y.Age);
        }

        public int GetHashCode(Person obj)
        {
            throw new NotImplementedException();
        }
    }

    [Test]
    public void Test_PersonComparer()
    {
        Person p1 = new Person { Name = "Tom", Age = 20 }; // Control data

        Person p2 = new Person { Name = "Tom", Age = 20 }; // Same as control
        Person p3 = new Person { Name = "Tom", Age = 30 }; // Different age
        Person p4 = new Person { Name = "Bob", Age = 20 }; // Different name.

        Assert.IsTrue(new PersonComparer().Equals(p1, p2), "People have same values");
        Assert.IsFalse(new PersonComparer().Equals(p1, p3), "People have different ages.");
        Assert.IsFalse(new PersonComparer().Equals(p1, p4), "People have different names.");
    }
}
share|improve this answer

Try FluentAssertions library:

dto.ShouldHave(). AllProperties().EqualTo(customer);

http://fluentassertions.codeplex.com/documentation

It can also be installed using NuGet.

share|improve this answer

I agree with ChrisYoxall -- implementing Equals in your main code purely for testing purposes is not good.

If you are implementing Equals because some application logic requires it, then that's fine, but keep pure testing-only code out of cluttering up stuff (also the semantics of checking the same for testing may be different than what your app requires).

In short, keep testing-only code out of your class.

Simple shallow comparison of properties using reflection should be enough for most classes, although you may need to recurse if your objects have complex properties. If following references, beware of circular references or similar.

Sly

share|improve this answer
Nice catch on circular references. Easy to overcome if you keep a dictionary of objects already in the comparison tree. – Lucas B Nov 13 '09 at 16:09
public static void AreEqualByJson(object expected, object actual)
{
    System.Web.Script.Serialization.JavaScriptSerializer oSerializer = new System.Web.Script.Serialization.JavaScriptSerializer();
    var expectedJson = oSerializer.Serialize(expected);
    var actualJson = oSerializer.Serialize(actual);
    Assert.AreEqual(expectedJson, actualJson);
}

Which seems to work out great. Easy to use and the test runner error info shows the json string comparison with the json (the object graph) included so you see directly whats wrong.

share|improve this answer
This is an excellent way to test, especially if you're anyways dealing with JSON (e.g. using a typed client to access a web service). This answer should be much higher. – Roopesh Shenoy Mar 22 at 22:35

I implemented a reusable class that compares two object graphs using reflection. The special thing about this implementation is the flexible configuration.

Here is a sample usage:

ObjectComparer comparer = new ObjectComparer();

// ignore MyClass.Id
comparer.Configure<MyClass>()
  .Property("Id", x => x.Compare(false));

// compare MyStruct not by properties, but by calling Equals
comparer.Configure<MyStruct>()
  .CompareMethod(CompareMethod.Equals));

comparer.Compare(object1, object2);

It's hard to show what it is capable to do in a somewhat declarative way.

I would like to publish this together with similar stuff as OSS, but need some more time to refine and the agreement of the company I'm working for.

share|improve this answer
did you every get this published? – Ian Ringrose Dec 4 '09 at 11:30
@Ian: not yet. I'm working on it, since I see that there is a strong demand for something like this. – Stefan Steinegger Dec 7 '09 at 21:29
Bump! :-) How's the progress? – Kos Feb 8 '12 at 13:56
@Kos: I refactored it to use lambda expressions instead of strings, which is great. It lacks a couple of features that might be useful or even essential for general use. I wonder if it could ever be as powerful and easy to use at the same time as I wish it to be. However, it is still not OSS and I need to ask my boss and put some time into it. The former would be done quite quickly, the latter is kind of a problem ... Your question encourages me to put some effort into it. – Stefan Steinegger Feb 10 '12 at 6:55
2  
If you've never been able to publish this after 3 years this answer really should be deleted since it's not helpful to anyone else. – Dan Neely Aug 21 '12 at 20:19

Deserialize both classes, and do a string compare.

EDIT: Works perfectly, this is the output I get from NUnit;

Test 'Telecom.SDP.SBO.App.Customer.Translator.UnitTests.TranslateEaiCustomerToDomain_Tests.TranslateNew_GivenEaiCustomer_ShouldTranslateToDomainCustomer_Test("ApprovedRatingInDb")' failed:
  Expected string length 2841 but was 5034. Strings differ at index 443.
  Expected: "...taClasses" />\r\n  <ContactMedia />\r\n  <Party i:nil="true" /..."
  But was:  "...taClasses" />\r\n  <ContactMedia>\r\n    <ContactMedium z:Id="..."
  ----------------------------------------------^
 TranslateEaiCustomerToDomain_Tests.cs(201,0): at Telecom.SDP.SBO.App.Customer.Translator.UnitTests.TranslateEaiCustomerToDomain_Tests.Assert_CustomersAreEqual(Customer expectedCustomer, Customer actualCustomer)
 TranslateEaiCustomerToDomain_Tests.cs(114,0): at Telecom.SDP.SBO.App.Customer.Translator.UnitTests.TranslateEaiCustomerToDomain_Tests.TranslateNew_GivenEaiCustomer_ShouldTranslateToDomainCustomer_Test(String custRatingScenario)

EDIT TWO: The two objects can be identical, but the order that properties are serialized in are not the same. Therefore the XML is different. DOH!

EDIT THREE: This does work. I am using it in my tests. But you must add items to collection properties in the order the code under test adds them.

share|improve this answer
serialize? Interesting idea. I'm not sure how it would hold up in terms of performance, though – Michael Haren Nov 10 '10 at 14:31

Another option is to write a custom constraint by implementing the NUnit abstract Constraint class. With a helper class to provide a little syntactic sugar, the resulting test code is pleasantly terse and readable e.g.

Assert.That( LeftObject, PortfolioState.Matches( RightObject ) ); 

For an extreme example, consider class which has 'read-only' members, is not IEquatable, and you could not change the class under test even if you wanted to:

public class Portfolio // Somewhat daft class for pedagogic purposes...
{
    // Cannot be instanitated externally, instead has two 'factory' methods
    private Portfolio(){ }

    // Immutable properties
    public string Property1 { get; private set; }
    public string Property2 { get; private set; }  // Cannot be accessed externally
    public string Property3 { get; private set; }  // Cannot be accessed externally

    // 'Factory' method 1
    public static Portfolio GetPortfolio(string p1, string p2, string p3)
    {
        return new Portfolio() 
        { 
            Property1 = p1, 
            Property2 = p2, 
            Property3 = p3 
        };
    }

    // 'Factory' method 2
    public static Portfolio GetDefault()
    {
        return new Portfolio() 
        { 
            Property1 = "{{NONE}}", 
            Property2 = "{{NONE}}", 
            Property3 = "{{NONE}}" 
        };
    }
}

The contract for the Constraint class requires one to override Matches and WriteDescriptionTo (in the case of a mismatch, a narrative for the expected value) but also overriding WriteActualValueTo (narrative for actual value) makes sense:

public class PortfolioEqualityConstraint : Constraint
{
    Portfolio expected;
    string expectedMessage = "";
    string actualMessage = "";

    public PortfolioEqualityConstraint(Portfolio expected)
    {
        this.expected = expected;
    }

    public override bool Matches(object actual)
    {
        if ( actual == null && expected == null ) return true;
        if ( !(actual is Portfolio) )
        { 
            expectedMessage = "<Portfolio>";
            actualMessage = "null";
            return false;
        }
        return Matches((Portfolio)actual);
    }

    private bool Matches(Portfolio actual)
    {
        if ( expected == null && actual != null )
        {
            expectedMessage = "null";
            expectedMessage = "non-null";
            return false;
        }
        if ( ReferenceEquals(expected, actual) ) return true;

        if ( !( expected.Property1.Equals(actual.Property1)
                 && expected.Property2.Equals(actual.Property2) 
                 && expected.Property3.Equals(actual.Property3) ) )
        {
            expectedMessage = expected.ToStringForTest();
            actualMessage = actual.ToStringForTest();
            return false;
        }
        return true;
    }

    public override void WriteDescriptionTo(MessageWriter writer)
    {
        writer.WriteExpectedValue(expectedMessage);
    }
    public override void WriteActualValueTo(MessageWriter writer)
    {
        writer.WriteExpectedValue(actualMessage);
    }
}

Plus the helper class:

public static class PortfolioState
{
    public static PortfolioEqualityConstraint Matches(Portfolio expected)
    {
        return new PortfolioEqualityConstraint(expected);
    }

    public static string ToStringForTest(this Portfolio source)
    {
        return String.Format("Property1 = {0}, Property2 = {1}, Property3 = {2}.", 
            source.Property1, source.Property2, source.Property3 );
    }
}

Example usage:

[TestFixture]
class PortfolioTests
{
    [Test]
    public void TestPortfolioEquality()
    {
        Portfolio LeftObject 
            = Portfolio.GetDefault();
        Portfolio RightObject 
            = Portfolio.GetPortfolio("{{GNOME}}", "{{NONE}}", "{{NONE}}");

        Assert.That( LeftObject, PortfolioState.Matches( RightObject ) );
    }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.