tank/code/test/main_test.go
2019-04-26 02:59:35 +08:00

16 lines
153 B
Go

package test
import (
"fmt"
"strings"
"testing"
)
func TestHello(t *testing.T) {
split := strings.Split("good", "/")
fmt.Printf("%v", split)
}