1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-12 10:55:20 +02:00
sap-jenkins-library/cmd/isChangeInDevelopment_generated_test.go
Roland Stengel 7612272992
checkChangeInDevelopment (#3115)
- refactor GO implementation
2021-10-04 13:08:34 +02:00

18 lines
360 B
Go

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