1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-12 10:55:20 +02:00
sap-jenkins-library/cmd/mavenBuild_generated_test.go
2020-03-13 13:32:37 +01:00

17 lines
313 B
Go

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