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

* Code Review Fixes

* CodeReview Changes

* CodeReview Fixes

* YAML fixes

* CodeReview Fix

* Code Review Fixes

* CodeReview Fixes

* Code Climate Fixes

* Code Review Fixes

* Code Review Fixes

Co-authored-by: Roland Stengel <r.stengel@sap.com>
Co-authored-by: Oliver Feldmann <oliver.feldmann@sap.com>
2021-12-28 09:31:50 +01:00

18 lines
339 B
Go

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