liuxiaolong
2020-06-30 4e6e04d8a8e3628a89ae889c43758f92223c456c
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)
}