liuxiaolong
2020-07-21 5bc1834adc6d6fe1b49f6cf54e2383d69311b113
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)
}