mirror of
https://github.com/SAP/jenkins-library.git
synced 2025-02-07 13:42:23 +02:00
265105efa1
* new step abapAddonAssemblyKitCheck
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")
|
|
|
|
}
|