liuxiaolong
2020-08-12 f8be6c223b1ca5c35cde51d2f874793f78e2daa9
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)
}