mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
17 lines
367 B
Go
17 lines
367 B
Go
package cmd
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestMavenExecuteStaticCodeChecksCommand(t *testing.T) {
|
|
|
|
testCmd := MavenExecuteStaticCodeChecksCommand()
|
|
|
|
// only high level testing performed - details are tested in step generation procudure
|
|
assert.Equal(t, "mavenExecuteStaticCodeChecks", testCmd.Use, "command name incorrect")
|
|
|
|
}
|