mirror of
https://github.com/SAP/jenkins-library.git
synced 2026-06-19 22:58:55 +02:00
17 lines
367 B
Go
17 lines
367 B
Go
package cmd
|
|||
|
|
|
||
|
|
import (
|
||
|
|
"testing"
|
||
|
|
|
||
|
|
"github.com/stretchr/testify/assert"
|
||
|
|
)
|
||
|
|
|
||
|
|
func TestAbapAddonAssemblyKitCheckCVsCommand(t *testing.T) {
|
||
|
|
|
||
|
|
testCmd := AbapAddonAssemblyKitCheckCVsCommand()
|
||
|
|
|
||
|
|
// only high level testing performed - details are tested in step generation procedure
|
||
|
|
assert.Equal(t, "abapAddonAssemblyKitCheckCVs", testCmd.Use, "command name incorrect")
|
||
|
|
|
||
|
|
}
|