github.com/SAP/jenkins-library@v1.362.0/cmd/azureBlobUpload_generated_test.go (about)

     1  //go:build unit
     2  // +build unit
     3  
     4  package cmd
     5  
     6  import (
     7  	"testing"
     8  
     9  	"github.com/stretchr/testify/assert"
    10  )
    11  
    12  func TestAzureBlobUploadCommand(t *testing.T) {
    13  	t.Parallel()
    14  
    15  	testCmd := AzureBlobUploadCommand()
    16  
    17  	// only high level testing performed - details are tested in step generation procedure
    18  	assert.Equal(t, "azureBlobUpload", testCmd.Use, "command name incorrect")
    19  
    20  }