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

* formatting fix

* Code Review Fixex

* Code Review Fixes

* remove unused code

* Formating fixes

* formatting fixes

* formatting fix

Co-authored-by: Oliver Feldmann <oliver.feldmann@sap.com>
2021-08-02 16:27:16 +02:00

18 lines
378 B
Go

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