1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-12 10:55:20 +02:00
sap-jenkins-library/cmd/transportRequestDocIDFromGit_generated_test.go
Roland Stengel 02dd60c0c8
Split git commit message scan from solman upload (#2773)
* Split git commit message scan from solman upload
2021-05-21 08:54:43 +02:00

18 lines
381 B
Go

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