1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2025-01-04 04:07:16 +02:00
sap-jenkins-library/pkg/generator/helper/testdata/TestProcessMetaFiles/test_code_generated.golden

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")
}