mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
c38d231820
* gaugeExecuteTests converted to golang * rewrited gaugeExecuteTests to cross-platform implementation. Now gauge uses npm * regenerated * groovy file import fix Co-authored-by: Oliver Nocon <33484802+OliverNocon@users.noreply.github.com>
18 lines
348 B
Go
18 lines
348 B
Go
package cmd
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestGaugeExecuteTestsCommand(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
testCmd := GaugeExecuteTestsCommand()
|
|
|
|
// only high level testing performed - details are tested in step generation procedure
|
|
assert.Equal(t, "gaugeExecuteTests", testCmd.Use, "command name incorrect")
|
|
|
|
}
|