1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-12 10:55:20 +02:00
sap-jenkins-library/cmd/gctsCreateRepository_generated_test.go
Chris Bo fb4cfd84ec
Introducing new step: "gctsCreateRepository" (#1424)
With the step gctsCreateRepository it is possible to create a local gCTS repository on an ABAP server

Co-authored-by: Marcus Holl <marcus.holl@sap.com>
2020-04-24 15:31:41 +02:00

17 lines
343 B
Go

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