Add the first test case.

This commit is contained in:
zicla
2019-04-25 19:52:38 +08:00
parent ff91e2aa38
commit dc3e570067
5 changed files with 508 additions and 505 deletions

15
rest/test/main_test.go Normal file
View File

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