1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-12 10:55:20 +02:00
sap-jenkins-library/cmd/malwareExecuteScan_generated_test.go
Marcus Holl b25079f862
Provide tooling for malware scanning (#1329)
Tooling for malwareScanning.

Co-authored-by: Stengel <r.stengel@sap.com>
2020-04-23 09:12:10 +02:00

17 lines
337 B
Go

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