mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-26 08:51:02 -06:00
10 lines
129 B
Go
10 lines
129 B
Go
package terraform
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestNullGraphWalker_impl(t *testing.T) {
|
|
var _ GraphWalker = NullGraphWalker{}
|
|
}
|