1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-12 10:55:20 +02:00
sap-jenkins-library/cmd/integrationArtifactTriggerIntegrationTest_generated_test.go
Thorsten Duda 7910df0e8c
new step integrationArtifactTriggerIntegrationTest (#2951)
* new step integrationArtifactTriggerIntegrationTest

* add new step into allow list

* add the new step to main command

* refer cpe

* remove unused unit tests

* Check methods and URLs of http request

* Add TriggerIntegration to mockingutils

* Format code

Co-authored-by: Oliver Feldmann <oliver.feldmann@sap.com>
Co-authored-by: Linda Siebert <linda.siebert@sap.com>
2021-06-29 14:50:19 +02:00

18 lines
420 B
Go

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