mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-12 09:01:58 -06:00
18 lines
260 B
Go
18 lines
260 B
Go
package moduletest
|
|
|
|
import (
|
|
"github.com/hashicorp/terraform/internal/configs"
|
|
"github.com/hashicorp/terraform/internal/tfdiags"
|
|
)
|
|
|
|
type File struct {
|
|
Config *configs.TestFile
|
|
|
|
Name string
|
|
Status Status
|
|
|
|
Runs []*Run
|
|
|
|
Diagnostics tfdiags.Diagnostics
|
|
}
|