1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-12 10:55:20 +02:00
sap-jenkins-library/cmd/transportRequestUploadSOLMAN_generated_test.go
Marcus Holl 60feb3409f
solman upload go the step (#2522)
Upload content into a transport request via SOLMAN

Co-authored-by: Oliver Feldmann <oliver.feldmann@sap.com>
2021-02-19 13:07:18 +01:00

18 lines
381 B
Go

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