1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-12 10:55:20 +02:00
sap-jenkins-library/cmd/transportRequestUploadCTS_generated_test.go
Marcus Holl c8c1315d0c
transport request upload cts / the step (#2416)
fiori cts upload piper-go step
2021-01-13 16:14:56 +01:00

18 lines
372 B
Go

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