You've already forked sap-jenkins-library
mirror of
https://github.com/SAP/jenkins-library.git
synced 2025-07-03 00:57:26 +02:00
21 lines
404 B
Go
21 lines
404 B
Go
//go:build unit
|
|
// +build unit
|
|
|
|
package cmd
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestAbapAddonAssemblyKitCheckCommand(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
testCmd := AbapAddonAssemblyKitCheckCommand()
|
|
|
|
// only high level testing performed - details are tested in step generation procedure
|
|
assert.Equal(t, "abapAddonAssemblyKitCheck", testCmd.Use, "command name incorrect")
|
|
|
|
}
|