liuxiaolong
2020-07-15 0c34ad3d8087052c27d1b8d09f54e6d3276b3a82
1
2
3
4
5
6
7
8
9
10
11
package service
 
import (
    "fmt"
    "testing"
)
 
func TestGetSdkList(t *testing.T) {
    list := GetSdkList("")
    fmt.Println("sdks:", list)
}