diff --git a/Tests/FluentAssertions.Equivalency.Specs/DataColumnSpecs.cs b/Tests/FluentAssertions.Equivalency.Specs/DataColumnSpecs.cs index 5465a0d039..ec25190ebc 100644 --- a/Tests/FluentAssertions.Equivalency.Specs/DataColumnSpecs.cs +++ b/Tests/FluentAssertions.Equivalency.Specs/DataColumnSpecs.cs @@ -705,7 +705,7 @@ public void When_ExtendedProperties_do_not_match_and_property_is_excluded_it_sho } [Fact] - public void When_object_of_type_unequal_to_DataColumn_is_asserted_with_a_DataColumn_it_fails() + public void Data_column_is_not_equivalent_to_another_type() { // Arrange var subject = new diff --git a/Tests/FluentAssertions.Equivalency.Specs/DataRelationSpecs.cs b/Tests/FluentAssertions.Equivalency.Specs/DataRelationSpecs.cs index 24eb1e2ac7..0ae1d875dc 100644 --- a/Tests/FluentAssertions.Equivalency.Specs/DataRelationSpecs.cs +++ b/Tests/FluentAssertions.Equivalency.Specs/DataRelationSpecs.cs @@ -288,7 +288,7 @@ public void When_object_of_type_unequal_to_DataRelation_is_asserted_with_a_DataR } [Fact] - public void When_data_relation_is_null_and_isnt_expected_to_be_equivalence_test_fails() + public void Null_is_not_equivalent_to_a_corrent_initialized_object() { // Arrange var dataSet = new DataSet(); diff --git a/Tests/FluentAssertions.Equivalency.Specs/DataRowSpecs.cs b/Tests/FluentAssertions.Equivalency.Specs/DataRowSpecs.cs index 151eb5e8ef..8d70a28d53 100644 --- a/Tests/FluentAssertions.Equivalency.Specs/DataRowSpecs.cs +++ b/Tests/FluentAssertions.Equivalency.Specs/DataRowSpecs.cs @@ -336,7 +336,7 @@ public void When_data_row_data_does_not_match_but_the_column_is_excluded_then_eq } [Fact] - public void When_object_of_type_unequal_to_DataRow_is_asserted_with_a_DataRow_it_fails() + public void Data_row_is_not_equivalent_to_another_type() { // Arrange var table = new DataTable(); @@ -375,7 +375,7 @@ public void When_subject_of_type_DataRowCollection_is_expected_and_is_not_it_fai act.Should().Throw() .WithMessage("Expected* to be of type DataRowCollection, but found*"); } - + [Fact] public void When_data_row_has_column_then_asserting_that_it_has_that_column_should_succeed() { diff --git a/Tests/FluentAssertions.Equivalency.Specs/DataSetSpecs.cs b/Tests/FluentAssertions.Equivalency.Specs/DataSetSpecs.cs index ecb6a46212..dd8c0ade56 100644 --- a/Tests/FluentAssertions.Equivalency.Specs/DataSetSpecs.cs +++ b/Tests/FluentAssertions.Equivalency.Specs/DataSetSpecs.cs @@ -616,7 +616,7 @@ public void When_data_set_tables_contain_different_data_equivalence_test_should_ } [Fact] - public void When_object_of_type_unequal_to_DataSet_is_asserted_with_a_DataSet_it_fails() + public void Data_set_is_not_equivalent_to_another_type() { // Arrange var subject = new diff --git a/Tests/FluentAssertions.Equivalency.Specs/DataTableSpecs.cs b/Tests/FluentAssertions.Equivalency.Specs/DataTableSpecs.cs index 75314f5cb9..89d5689125 100644 --- a/Tests/FluentAssertions.Equivalency.Specs/DataTableSpecs.cs +++ b/Tests/FluentAssertions.Equivalency.Specs/DataTableSpecs.cs @@ -722,7 +722,7 @@ public void When_data_table_data_matches_in_different_order_and_the_row_match_mo } [Fact] - public void When_object_of_type_unequal_to_DataTable_is_asserted_with_a_DataTable_it_fails() + public void Data_table_is_not_equivalent_to_another_type() { // Arrange var subject = new