1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-12 10:55:20 +02:00
sap-jenkins-library/cmd/integrationArtifactGetMplStatus_generated_test.go
Mayur Belur Mohan 426c106765
IntegrationArtifactGetMplStatus Command (#2558)
* IntegrationArtifactGetMplStatus Command

Co-authored-by: Marcus Holl <marcus.holl@sap.com>
2021-02-04 10:50:15 +01:00

18 lines
390 B
Go

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