Files
sap-jenkins-library/cmd/terraformExecute_generated_test.go
T

20 lines
362 B
Go

//go:build unit
package cmd
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestTerraformExecuteCommand(t *testing.T) {
t.Parallel()
testCmd := TerraformExecuteCommand()
// only high level testing performed - details are tested in step generation procedure
assert.Equal(t, "terraformExecute", testCmd.Use, "command name incorrect")
}