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

* CodeReview Fixes

* CodeReview Fixes

* CodeReview FIxes

* CodeReview Fixes

* CodeReview FIxes

* CodeReview Fixes

* fixing unit test

* doc fixes

* Update documentation/docs/steps/apiProxyList.md

Co-authored-by: Oliver Feldmann <oliver.feldmann@sap.com>

* CodeReview Fixes

* CodeReview Fixes

* CodeReview Fixes

* codereview fix

Co-authored-by: Oliver Feldmann <oliver.feldmann@sap.com>
2022-06-21 13:08:00 +02:00

18 lines
333 B
Go

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