1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-12 10:55:20 +02:00
sap-jenkins-library/cmd/pipelineCreateScanSummary_generated_test.go
Oliver Nocon b7754437b3
new step to create a scan summary report (#2559)
* new step to create a scan summary report

* add flag to collect only failed reports

* add stepName to report
2021-02-02 14:36:40 +01:00

18 lines
372 B
Go

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