123456789101112131415161718192021222324252627282930313233343536373839 |
- package provider
- import (
- "testing"
- "github.com/hashicorp/terraform-plugin-framework/providerserver"
- "github.com/hashicorp/terraform-plugin-go/tfprotov6"
- )
- const (
-
-
-
-
-
-
- providerConfig = `
- provider "hashicups" {
- username = "education"
- password = "test123"
- host = "http://localhost:19090"
- }
- `
- )
- var testAccProtoV6ProviderFactories = map[string]func() (tfprotov6.ProviderServer, error){
- "hashicups": providerserver.NewProtocol6WithError(New("test")()),
- }
- func testAccPreCheck(t *testing.T) {
-
-
-
- return
- }
|