mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
b25079f862
Tooling for malwareScanning. Co-authored-by: Stengel <r.stengel@sap.com>
17 lines
337 B
Go
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")
|
|
|
|
}
|