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

17 lines
367 B
Go

package cmd
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestCloudFoundryCreateServiceKeyCommand(t *testing.T) {
testCmd := CloudFoundryCreateServiceKeyCommand()
// only high level testing performed - details are tested in step generation procudure
assert.Equal(t, "cloudFoundryCreateServiceKey", testCmd.Use, "command name incorrect")
}