1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-12 10:55:20 +02:00
sap-jenkins-library/cmd/integrationArtifactGetServiceEndpoint_generated_test.go
Mayur Belur Mohan 538256774a
IntegrationArtifactGetServiceEndpoint Command (#2582)
* GetIntegrationArtifactServiceEndpoint Command

Co-authored-by: Marcus Holl <marcus.holl@sap.com>
2021-02-05 10:35:55 +01:00

18 lines
408 B
Go

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