1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-12 10:55:20 +02:00
sap-jenkins-library/cmd/abapEnvironmentAssembleConfirm_generated_test.go
Christian Luttenberger e9a93ed384
Adding new step for abap Enviroment Assembly Confirm (#2586)
* Adding new abap Assembly Confirm

* Update abapEnvironmentAssembleConfirm.go

* Add generated objects

Co-authored-by: tiloKo <70266685+tiloKo@users.noreply.github.com>
2021-02-10 11:33:10 +01:00

18 lines
387 B
Go

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