Fix MySqlComplianceTest by adding EF Core 10.0 test base classes to IgnoredTestBases#113
Merged
renemadsen merged 2 commits intomasterfrom Nov 17, 2025
Merged
Conversation
Co-authored-by: renemadsen <76994+renemadsen@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Fix missing derived classes for MySql compliance tests
Fix MySqlComplianceTest by adding EF Core 10.0 test base classes to IgnoredTestBases
Nov 16, 2025
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
EF Core 10.0 introduced 88 new test base classes that MySqlComplianceTest expected to find implementations for, causing
All_test_bases_must_be_implementedto fail.Changes
Added all 88 missing test base classes to
IgnoredTestBasesinMySqlComplianceTest.cs:TypeTestBase<,>,RelationalTypeTestBase<,>ComplexCollectionTestBase,RelationalComplexCollectionTestBaseComplexTypesTrackingRelationalTestBase<>,LazyLoadProxyRelationalTestBase<>,PropertyValuesRelationalTestBase<>,ComplexCollectionJsonUpdateTestBase<>Added required namespace imports:
All entries marked with
// TODO: 10.0comments for future implementation tracking.Original prompt
This section details on the original issue you should resolve
<issue_title>fix Failed Pomelo.EntityFrameworkCore.MySql.FunctionalTests.MySqlComplianceTest.All_test_bases_must_be_implemented</issue_title>
<issue_description>```
Failed Pomelo.EntityFrameworkCore.MySql.FunctionalTests.MySqlComplianceTest.All_test_bases_must_be_implemented [132 ms]
Error Message:
-- Missing derived classes for --
Microsoft.EntityFrameworkCore.Types.TypeTestBase
2 Microsoft.EntityFrameworkCore.Query.Translations.ByteArrayTranslationsTestBase1Microsoft.EntityFrameworkCore.Query.Translations.EnumTranslationsTestBase
1 Microsoft.EntityFrameworkCore.Query.Translations.GuidTranslationsTestBase1Microsoft.EntityFrameworkCore.Query.Translations.MathTranslationsTestBase
1 Microsoft.EntityFrameworkCore.Query.Translations.MiscellaneousTranslationsTestBase1Microsoft.EntityFrameworkCore.Query.Translations.StringTranslationsTestBase
1 Microsoft.EntityFrameworkCore.Query.Translations.Temporal.DateOnlyTranslationsTestBase1Microsoft.EntityFrameworkCore.Query.Translations.Temporal.DateTimeOffsetTranslationsTestBase
1 Microsoft.EntityFrameworkCore.Query.Translations.Temporal.DateTimeTranslationsTestBase1Microsoft.EntityFrameworkCore.Query.Translations.Temporal.TimeOnlyTranslationsTestBase
1 Microsoft.EntityFrameworkCore.Query.Translations.Temporal.TimeSpanTranslationsTestBase1Microsoft.EntityFrameworkCore.Query.Translations.Operators.ArithmeticOperatorTranslationsTestBase
1 Microsoft.EntityFrameworkCore.Query.Translations.Operators.BitwiseOperatorTranslationsTestBase1Microsoft.EntityFrameworkCore.Query.Translations.Operators.ComparisonOperatorTranslationsTestBase
1 Microsoft.EntityFrameworkCore.Query.Translations.Operators.LogicalOperatorTranslationsTestBase1Microsoft.EntityFrameworkCore.Query.Translations.Operators.MiscellaneousOperatorTranslationsTestBase
1 Microsoft.EntityFrameworkCore.Query.Associations.AssociationsBulkUpdateTestBase1Microsoft.EntityFrameworkCore.Query.Associations.AssociationsCollectionTestBase
1 Microsoft.EntityFrameworkCore.Query.Associations.AssociationsMiscellaneousTestBase1Microsoft.EntityFrameworkCore.Query.Associations.AssociationsPrimitiveCollectionTestBase
1 Microsoft.EntityFrameworkCore.Query.Associations.AssociationsProjectionTestBase1Microsoft.EntityFrameworkCore.Query.Associations.AssociationsSetOperationsTestBase
1 Microsoft.EntityFrameworkCore.Query.Associations.AssociationsStructuralEqualityTestBase1Microsoft.EntityFrameworkCore.Query.Associations.OwnedNavigations.OwnedNavigationsCollectionTestBase
1 Microsoft.EntityFrameworkCore.Query.Associations.OwnedNavigations.OwnedNavigationsMiscellaneousTestBase1Microsoft.EntityFrameworkCore.Query.Associations.OwnedNavigations.OwnedNavigationsPrimitiveCollectionTestBase
1 Microsoft.EntityFrameworkCore.Query.Associations.OwnedNavigations.OwnedNavigationsProjectionTestBase1Microsoft.EntityFrameworkCore.Query.Associations.OwnedNavigations.OwnedNavigationsSetOperationsTestBase
1 Microsoft.EntityFrameworkCore.Query.Associations.OwnedNavigations.OwnedNavigationsStructuralEqualityTestBase1Microsoft.EntityFrameworkCore.Query.Associations.Navigations.NavigationsCollectionTestBase
1 Microsoft.EntityFrameworkCore.Query.Associations.Navigations.NavigationsIncludeTestBase1Microsoft.EntityFrameworkCore.Query.Associations.Navigations.NavigationsMiscellaneousTestBase
1 Microsoft.EntityFrameworkCore.Query.Associations.Navigations.NavigationsPrimitiveCollectionTestBase1Microsoft.EntityFrameworkCore.Query.Associations.Navigations.NavigationsProjectionTestBase
1 Microsoft.EntityFrameworkCore.Query.Associations.Navigations.NavigationsSetOperationsTestBase1Microsoft.EntityFrameworkCore.Query.Associations.Navigations.NavigationsStructuralEqualityTestBase
1 Microsoft.EntityFrameworkCore.Query.Associations.ComplexProperties.ComplexPropertiesBulkUpdateTestBase1Microsoft.EntityFrameworkCore.Query.Associations.ComplexProperties.ComplexPropertiesCollectionTestBase
1 Microsoft.EntityFrameworkCore.Query.Associations.ComplexProperties.ComplexPropertiesMiscellaneousTestBase1Microsoft.EntityFrameworkCore.Query.Associations.ComplexProperties.ComplexPropertiesPrimitiveCollectionTestBase
1 Microsoft.EntityFrameworkCore.Query.Associations.ComplexProperties.ComplexPropertiesProjectionTestBase1Microsoft.EntityFrameworkCore.Query.Associations.ComplexProperties.ComplexPropertiesSetOperationsTestBase
1 Microsoft.EntityFrameworkCore.Query.Associations.ComplexProperties.ComplexPropertiesStructuralEqualityTestBase1Microsoft.EntityFrameworkCore.ModelBuilding.ModelBuilderTest+ComplexCollectionTestBase
Microsoft.EntityFrameworkCore.ComplexTypesTrackingRelationalTestBase
1 Microsoft.EntityFrameworkCore.LazyLoadProxyRelationalTestBase1Microsoft.EntityFrameworkCore.PropertyValuesRelationalTestBase
1 Microsoft.EntityFrameworkCore.Update.ComplexCollectionJsonUpdateTestBase1Microsoft.EntityFrameworkCore.Types.RelationalTypeTestBase`2
Microsoft.EntityFrame...
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.