This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[TestFixture] | |
public class When_testing_equivalence_or_matching_for_partially_supplied_properties | |
{ | |
private const string ExpectedName = "Expected Name"; | |
private Customer _actual; | |
private ExpectedObject _expected; | |
[Test] | |
public void Should_flag_extra_properties_on_actual_object_as_unequal() | |
{ |
NewerOlder