1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2025-03-03 15:02:35 +02:00
sap-jenkins-library/cmd/githubCommentIssue_generated_test.go
Oliver Nocon cf7ca8f791
add step to create a GitHub comment (#2479)
* add step to create a GitHub comment

* add docs

* mandatory parameters

* add command

* Update githubCommentIssue.go

* add groovy library step

Co-authored-by: Sven Merk <33895725+nevskrem@users.noreply.github.com>
2020-12-21 16:21:07 +01:00

17 lines
337 B
Go

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