github.com/graywolf-at-work-2/terraform-vendor@v1.4.5/internal/backend/local/local_test.go (about)

     1  package local
     2  
     3  import (
     4  	"flag"
     5  	"os"
     6  	"testing"
     7  
     8  	_ "github.com/hashicorp/terraform/internal/logging"
     9  )
    10  
    11  func TestMain(m *testing.M) {
    12  	flag.Parse()
    13  	os.Exit(m.Run())
    14  }