Example #1
0
 public void Can_exclude_a_certain_property_from_a_simple_comparison_using_a_lambda_representation()
 {
     Given.A_lambda_representation_of_a_property_we_wish_to_ignore();
     When.We_use_that_lambda_representation_when_we_compare_two_objects_that_differ_on_that_property();
     Then.Nothing();
 }
Example #2
0
 public void Can_ignore_a_specific_property_on_a_specific_object()
 {
     Given.A_lambda_representation_of_a_property_we_wish_to_ignore();
     When.We_tell_the_comparator_to_use_that_on_a_specific_object_when_comparing();
     Then.Nothing();
 }
Example #3
0
 public void Can_apply_ignore_functionality_to_all_instances_in_an_IEnumerable()
 {
     Given.A_lambda_representation_of_a_property_we_wish_to_ignore();
     When.We_tell_the_comparator_to_use_that_on_all_elements_in_an_IEnumerable_when_comparing();
     Then.Nothing();
 }