1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-12 10:55:20 +02:00
sap-jenkins-library/cmd/checkChangeInDevelopment_generated_test.go
Marcus Holl e90548d41d
Introduce checkChangeInDevelopment (#2504)
* Introduce checkChangeInDevelopment
2021-02-12 08:50:38 +01:00

18 lines
369 B
Go

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