liuxiaolong
2020-06-11 aaef63e086f12d06cf5dae27007c81abf40ca3a2
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)
}