1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-14 11:03:09 +02:00
sap-jenkins-library/cmd/apiKeyValueMapDownload_generated_test.go
Mayur Belur Mohan d3b090e63e
ApiKeyValueMapDownload Command (#3245)
* ApiKeyValueMapDownload Command

* CodeReview Fixes
2021-11-15 13:48:14 +01:00

18 lines
363 B
Go

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