github.com/terramate-io/tf@v0.0.0-20230830114523-fce866b4dfcd/backend/local/local_test.go (about)

     1  // Copyright (c) HashiCorp, Inc.
     2  // SPDX-License-Identifier: MPL-2.0
     3  
     4  package local
     5  
     6  import (
     7  	"flag"
     8  	"os"
     9  	"testing"
    10  
    11  	_ "github.com/terramate-io/tf/logging"
    12  )
    13  
    14  func TestMain(m *testing.M) {
    15  	flag.Parse()
    16  	os.Exit(m.Run())
    17  }