liuxiaolong
2020-06-30 79013b02a83fbb397ca8e21f94a34f367525d070
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)
}