mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
cd2ae89229
* Adjust local changed objects with commit history * fix the righ history entry * fix for local packages commit history * Adapt unit tests and fix for retry after 500 * Rename gctsExecuteABAPUnitTests to gctsExecuteABAPQualityChecks * Add unit test file for gCTSExecuteABAPUnitTest * add a test step * gcts Test change files * Add unit test for gCTS test * adapt gctsTEST * deletegcts * command * maintain old step * Adapt changes to documentation * fix for go generate
18 lines
381 B
Go
18 lines
381 B
Go
package cmd
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestGctsExecuteABAPQualityChecksCommand(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
testCmd := GctsExecuteABAPQualityChecksCommand()
|
|
|
|
// only high level testing performed - details are tested in step generation procedure
|
|
assert.Equal(t, "gctsExecuteABAPQualityChecks", testCmd.Use, "command name incorrect")
|
|
|
|
}
|