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

20 lines
380 B
Go

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