liuxiaolong
2020-06-28 e371ea3479d0f9c1a89ea04ac25fe49ee7154a50
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)
}