1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-14 11:03:09 +02:00
sap-jenkins-library/cmd/ascAppUpload_generated_test.go
Maurice Breit 4f4e667797
add ascAppUpload step (#4286)
* add ascAppUpload step

add step that uploads an app binary to Application Support Center (ASC)

* re-run go generate

* fix typo in CODEOWNERS

* Update CODEOWNERS
2023-04-18 08:56:32 +02:00

18 lines
333 B
Go

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