mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
b7754437b3
* new step to create a scan summary report * add flag to collect only failed reports * add stepName to report
18 lines
372 B
Go
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")
|
|
|
|
}
|