1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-12 10:55:20 +02:00
sap-jenkins-library/cmd/mtaBuild_generated_test.go
Marcus Holl 190a4708a2
go: mta build (#1128)
move mtaBuild step from groovy to go.

Co-authored-by: Stephan Aßmus <stephan.assmus@sap.com>
2020-02-25 14:33:34 +01:00

17 lines
307 B
Go

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