Provider ConfigValidators testing

Hello,
We wrote a provider with the new GitHub - hashicorp/terraform-plugin-framework: A next-generation framework for building Terraform providers.
We use some provider.ConfigValidators and they work fine
We would like to add tests for them. How to do that for a provider, if possible ?
We successfully wrote some for our datasource/resource but looks like the provider must work differently ?
Thank you

Hi @Khyme :wave: Welcome to HashiCorp Discuss and thank you for raising this topic. Great question.

If you are looking to create acceptance tests for provider configuration validation, the trick there is ensuring the Terraform configuration in the test contains at least one valid data source or resource for the provider. Terraform core may not call provider configuration validation and the provider’s Configure method unless it can determine that configuring the provider is actually necessary.

Here are some code examples from HashiCorp-owned providers:

Hope this helps!