Why acceptance test is Creating Terraform AWS Provider (SDKv2-style)

I am working on adding oracle database features to AWS terraform provider

Although I am using
// @FrameworkResource
While executing acceptance test I am getting error

TF_ACC=1 go1.24.4 test ./internal/service/foo/... -v -count 1 -parallel 20 -run='TestAccFoo'  -timeout 360m -vet=off
2025/07/13 23:11:36 Creating Terraform AWS Provider (SDKv2-style)...
2025/07/13 23:11:36 Initializing Terraform AWS Provider (SDKv2-style)...
=== RUN   TestAccFoo
=== PAUSE TestAccFoo
=== CONT  TestAccFoo
   
        
        Error: Failed to load plugin schemas
        
        Error while loading schemas for plugin components: Failed to obtain provider
        schema: Could not load the schema for provider
--- FAIL: TestAccFoo (3.62s)

Why it is Creating Terraform AWS Provider (SDKv2-style) not terraform-plugin-framework

I did use the skaff tool to create the *resource.go file

Find the issue. Issue in the schema definition. can be closed