1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-12 10:55:20 +02:00
sap-jenkins-library/cmd/mavenExecute_generated_test.go
2020-02-28 13:09:46 +01:00

17 lines
319 B
Go

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