mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
aa9dd3b199
* Create initial step * Add parameters for system creation * Creating a tmp manifest.yml * Add descriptions * regenerate * Create tests * fix codeclimate issue * Test * Test2 * Test3 * Replace os.getTempDir * Change to fileUtils * Remove FileUtil
17 lines
364 B
Go
17 lines
364 B
Go
package cmd
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestAbapEnvironmentCreateSystemCommand(t *testing.T) {
|
|
|
|
testCmd := AbapEnvironmentCreateSystemCommand()
|
|
|
|
// only high level testing performed - details are tested in step generation procedure
|
|
assert.Equal(t, "abapEnvironmentCreateSystem", testCmd.Use, "command name incorrect")
|
|
|
|
}
|