1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-12 10:55:20 +02:00
sap-jenkins-library/cmd/protecodeExecuteScan_generated_test.go
redehnroV 2ebf2010b7
Protecode as GoLang (#1119)
* Protecode as go implementation

Co-authored-by: Sven Merk <33895725+nevskrem@users.noreply.github.com>
Co-authored-by: Oliver Nocon <33484802+OliverNocon@users.noreply.github.com>
2020-02-06 16:16:34 +01:00

17 lines
343 B
Go

package cmd
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestProtecodeExecuteScanCommand(t *testing.T) {
testCmd := ProtecodeExecuteScanCommand()
// only high level testing performed - details are tested in step generation procudure
assert.Equal(t, "protecodeExecuteScan", testCmd.Use, "command name incorrect")
}