12345678910111213141516171819202122232425 |
- package provider
- import (
- "testing"
- "github.com/hashicorp/terraform-plugin-framework/providerserver"
- "github.com/hashicorp/terraform-plugin-go/tfprotov6"
- )
- var testAccProtoV6ProviderFactories = map[string]func() (tfprotov6.ProviderServer, error){
- "scaffolding": providerserver.NewProtocol6WithError(New("test")()),
- }
- func testAccPreCheck(t *testing.T) {
-
-
-
- }
|