Files
sap-jenkins-library/cmd/abapEnvironmentCheckoutBranch_generated_test.go

20 lines
401 B
Go

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