mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
3ee4339af1
* ApiProxyDownload Command * Lint Fixes * Lint Fixes * codereview fixes * Code Review Fixes * CodeReview Fixes * CodeReview Fixes * Code Review Fixes * Code Review Changes * CodeReview Fixes * CodeReview Fixes * CodeReview Fix * CodeReview Fixes * CodeReviw Fixes * CodeReview Changes * CodeReview Fixes Co-authored-by: Oliver Feldmann <oliver.feldmann@sap.com>
18 lines
345 B
Go
18 lines
345 B
Go
package cmd
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestApiProxyDownloadCommand(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
testCmd := ApiProxyDownloadCommand()
|
|
|
|
// only high level testing performed - details are tested in step generation procedure
|
|
assert.Equal(t, "apiProxyDownload", testCmd.Use, "command name incorrect")
|
|
|
|
}
|