1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-12 10:55:20 +02:00
sap-jenkins-library/cmd/integrationArtifactDownload_generated_test.go
Mayur Belur Mohan f030bc9861
IntegrationArtifactDownload Command (#2587)
* IntegrationArtifactDownload Command

Co-authored-by: Marcus Holl <marcus.holl@sap.com>
2021-02-10 17:08:23 +01:00

18 lines
378 B
Go

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