github.com/opentofu/opentofu@v1.7.1/internal/backend/local/local_test.go (about)

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