github.com/m4gshm/gollections@v0.0.13-0.20240331203319-a34a86e58a24/op/string_/test/string_test.go (about)

     1  package test
     2  
     3  import (
     4  	"testing"
     5  
     6  	"github.com/m4gshm/gollections/op/delay/string_"
     7  	"github.com/stretchr/testify/assert"
     8  )
     9  
    10  func TestConcat(t *testing.T) {
    11  
    12  	result := string_.Of("1", "2", "3")
    13  	assert.Equal(t, "123", result())
    14  }