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