opentofu/internal/tofu/hook_stop_test.go

13 lines
176 B
Go
Raw Normal View History

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
2023-09-20 07:16:53 -05:00
package tofu
2014-07-02 18:16:38 -05:00
import (
"testing"
)
func TestStopHook_impl(t *testing.T) {
var _ Hook = new(stopHook)
}