You've already forked sap-jenkins-library
							
							
				mirror of
				https://github.com/SAP/jenkins-library.git
				synced 2025-10-30 23:57:50 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			378 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			378 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package cmd
 | |
| 
 | |
| import (
 | |
| 	"testing"
 | |
| 
 | |
| 	"github.com/stretchr/testify/assert"
 | |
| )
 | |
| 
 | |
| func TestIntegrationArtifactDownloadCommand(t *testing.T) {
 | |
| 	t.Parallel()
 | |
| 
 | |
| 	testCmd := IntegrationArtifactDownloadCommand()
 | |
| 
 | |
| 	// only high level testing performed - details are tested in step generation procedure
 | |
| 	assert.Equal(t, "integrationArtifactDownload", testCmd.Use, "command name incorrect")
 | |
| 
 | |
| }
 |