mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
e9a93ed384
* Adding new abap Assembly Confirm * Update abapEnvironmentAssembleConfirm.go * Add generated objects Co-authored-by: tiloKo <70266685+tiloKo@users.noreply.github.com>
18 lines
387 B
Go
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")
|
|
|
|
}
|