You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
401 B

package ClientSet
import (
"fmt"
"testing"
)
/*
*
@author: sre
@date: 2022/8/10 0010
@desc: todo
*
*/
func TestListDeployment(t *testing.T) {
err := ListDeployment("sre")
if err != nil {
fmt.Println(err)
}
}
func TestListCms(t *testing.T) {
cms, err := ListCms("sre")
if err != nil {
fmt.Println(err)
}
fmt.Println(cms)
}
func TestGetClientSetRes(t *testing.T) {
ListPods("sre")
}