1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2025-01-22 05:33:10 +02:00

17 lines
307 B
Plaintext
Raw Normal View History

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