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

20 lines
383 B
Go

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