1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-12 10:55:20 +02:00
sap-jenkins-library/cmd/integrationArtifactUpload_generated_test.go
Mayur Belur Mohan 06afce3005
IntegrationArtifactUpload Command (#2610)
* IntegrationArtifactUpload Command
2021-02-17 09:59:56 +01:00

18 lines
372 B
Go

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