opentofu/internal/opentf/hook_stop_test.go

13 lines
178 B
Go
Raw Normal View History

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