github.com/argoproj/argo-events@v1.9.1/common/string_test.go (about)

     1  package common
     2  
     3  import (
     4  	"testing"
     5  
     6  	"github.com/stretchr/testify/assert"
     7  )
     8  
     9  func TestRandomString(t *testing.T) {
    10  	str := RandomString(20)
    11  	assert.Equal(t, 20, len(str))
    12  }