yao/helper/string_test.go

13 lines
263 B
Go

package helper
import (
"testing"
"github.com/stretchr/testify/assert"
"github.com/yaoapp/gou"
)
func TestProcessStrConcat(t *testing.T) {
res := gou.NewProcess("xiang.helper.StrConcat", "FOO", 20, "BAR").Run().(string)
assert.Equal(t, "FOO20BAR", res)
}